blob: 1d39e89f17bda44fa8741f8cb210508ce4187b33 [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"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000016#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000017#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86ISelLowering.h"
19#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000020#include "X86TargetObjectFile.h"
David Greene583b68f2011-02-17 19:18:59 +000021#include "Utils/X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000022#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000023#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000024#include "llvm/DerivedTypes.h"
Chris Lattnerb903bed2009-06-26 21:20:29 +000025#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000026#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/Function.h"
Chris Lattnerb8105652009-07-20 17:51:36 +000028#include "llvm/Instructions.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000029#include "llvm/Intrinsics.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000030#include "llvm/LLVMContext.h"
Evan Cheng55d42002011-01-08 01:24:27 +000031#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000032#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000033#include "llvm/CodeGen/MachineFunction.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000035#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000036#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000037#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000039#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000040#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000041#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000043#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000044#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000045#include "llvm/ADT/StringExtras.h"
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000046#include "llvm/ADT/VariadicFunction.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000047#include "llvm/ADT/VectorExtras.h"
Evan Cheng485fafc2011-03-21 01:19:09 +000048#include "llvm/Support/CallSite.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000049#include "llvm/Support/Debug.h"
Bill Wendlingec041eb2010-03-12 19:20:40 +000050#include "llvm/Support/Dwarf.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000051#include "llvm/Support/ErrorHandling.h"
52#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000053#include "llvm/Support/raw_ostream.h"
Rafael Espindola151ab3e2011-08-30 19:47:04 +000054#include "llvm/Target/TargetOptions.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000055using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000056using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000057
Evan Chengb1712452010-01-27 06:25:16 +000058STATISTIC(NumTailCalls, "Number of tail calls");
59
Evan Cheng10e86422008-04-25 19:11:04 +000060// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000061static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000062 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000063
David Greenea5f26012011-02-07 19:36:54 +000064static SDValue Insert128BitVector(SDValue Result,
65 SDValue Vec,
66 SDValue Idx,
67 SelectionDAG &DAG,
68 DebugLoc dl);
David Greenef125a292011-02-08 19:04:41 +000069
David Greenea5f26012011-02-07 19:36:54 +000070static SDValue Extract128BitVector(SDValue Vec,
71 SDValue Idx,
72 SelectionDAG &DAG,
73 DebugLoc dl);
74
75/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
76/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000077/// simple subregister reference. Idx is an index in the 128 bits we
78/// want. It need not be aligned to a 128-bit bounday. That makes
79/// lowering EXTRACT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +000080static SDValue Extract128BitVector(SDValue Vec,
81 SDValue Idx,
82 SelectionDAG &DAG,
83 DebugLoc dl) {
84 EVT VT = Vec.getValueType();
85 assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
David Greenea5f26012011-02-07 19:36:54 +000086 EVT ElVT = VT.getVectorElementType();
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000087 int Factor = VT.getSizeInBits()/128;
88 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
89 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000090
91 // Extract from UNDEF is UNDEF.
92 if (Vec.getOpcode() == ISD::UNDEF)
93 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
94
95 if (isa<ConstantSDNode>(Idx)) {
96 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
97
98 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
99 // we can match to VEXTRACTF128.
100 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
101
102 // This is the index of the first element of the 128-bit chunk
103 // we want.
104 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
105 * ElemsPerChunk);
106
107 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000108 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
109 VecIdx);
110
111 return Result;
112 }
113
114 return SDValue();
115}
116
117/// Generate a DAG to put 128-bits into a vector > 128 bits. This
118/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +0000119/// simple superregister reference. Idx is an index in the 128 bits
120/// we want. It need not be aligned to a 128-bit bounday. That makes
121/// lowering INSERT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +0000122static SDValue Insert128BitVector(SDValue Result,
123 SDValue Vec,
124 SDValue Idx,
125 SelectionDAG &DAG,
126 DebugLoc dl) {
127 if (isa<ConstantSDNode>(Idx)) {
128 EVT VT = Vec.getValueType();
129 assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
130
131 EVT ElVT = VT.getVectorElementType();
David Greenea5f26012011-02-07 19:36:54 +0000132 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greenea5f26012011-02-07 19:36:54 +0000133 EVT ResultVT = Result.getValueType();
134
135 // Insert the relevant 128 bits.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000136 unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +0000137
138 // This is the index of the first element of the 128-bit chunk
139 // we want.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000140 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
David Greenea5f26012011-02-07 19:36:54 +0000141 * ElemsPerChunk);
142
143 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000144 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
145 VecIdx);
146 return Result;
147 }
148
149 return SDValue();
150}
151
Chris Lattnerf0144122009-07-28 03:13:23 +0000152static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000153 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
154 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000155
Evan Cheng2bffee22011-02-01 01:14:13 +0000156 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000157 if (is64Bit)
158 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000159 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000160 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000161
Evan Cheng203576a2011-07-20 19:50:42 +0000162 if (Subtarget->isTargetELF())
163 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000164 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000165 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000166 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000167}
168
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000169X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000170 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000171 Subtarget = &TM.getSubtarget<X86Subtarget>();
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000172 X86ScalarSSEf64 = Subtarget->hasXMMInt();
173 X86ScalarSSEf32 = Subtarget->hasXMM();
Evan Cheng25ab6902006-09-08 06:48:29 +0000174 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000175
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000176 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000177 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000178
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000179 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000180 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000181
182 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000183 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +0000184 // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
185 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000186
Eric Christopherde5e1012011-03-11 01:05:58 +0000187 // For 64-bit since we have so many registers use the ILP scheduler, for
188 // 32-bit code use the register pressure specific scheduling.
189 if (Subtarget->is64Bit())
190 setSchedulingPreference(Sched::ILP);
191 else
192 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +0000193 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000194
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000195 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000196 // Setup Windows compiler runtime calls.
197 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000198 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000199 setLibcallName(RTLIB::SREM_I64, "_allrem");
200 setLibcallName(RTLIB::UREM_I64, "_aullrem");
201 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000202 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000203 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000204 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000205 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000206 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
207 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
208 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000209 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
210 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000211 }
212
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000213 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000214 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000215 setUseUnderscoreSetJmp(false);
216 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000217 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000218 // MS runtime is weird: it exports _setjmp, but longjmp!
219 setUseUnderscoreSetJmp(true);
220 setUseUnderscoreLongJmp(false);
221 } else {
222 setUseUnderscoreSetJmp(true);
223 setUseUnderscoreLongJmp(true);
224 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000225
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000226 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000227 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000228 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000229 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000230 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000231 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000232
Owen Anderson825b72b2009-08-11 20:47:22 +0000233 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000234
Scott Michelfdc40a02009-02-17 22:15:04 +0000235 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000236 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000237 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000238 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000239 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000240 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
241 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000242
243 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000244 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
245 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
246 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
247 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
248 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
249 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000250
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000251 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
252 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000253 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
254 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
255 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000256
Evan Cheng25ab6902006-09-08 06:48:29 +0000257 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000258 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
259 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000260 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000261 // We have an algorithm for SSE2->double, and we turn this into a
262 // 64-bit FILD followed by conditional FADD for other targets.
263 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000264 // We have an algorithm for SSE2, and we turn this into a 64-bit
265 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000266 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000267 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000268
269 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
270 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
272 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000273
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000274 if (!TM.Options.UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000275 // SSE has no i16 to fp conversion, only i32
276 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000277 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000278 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000279 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000280 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000281 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
282 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000283 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000284 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000285 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
286 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000287 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000288
Dale Johannesen73328d12007-09-19 23:55:34 +0000289 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
290 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000291 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
292 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000293
Evan Cheng02568ff2006-01-30 22:13:22 +0000294 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
295 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
297 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000298
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000299 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000300 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000301 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000302 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000303 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000304 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
305 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000306 }
307
308 // Handle FP_TO_UINT by promoting the destination to a larger signed
309 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000310 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
311 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
312 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000313
Evan Cheng25ab6902006-09-08 06:48:29 +0000314 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000315 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
316 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000317 } else if (!TM.Options.UseSoftFloat) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000318 // Since AVX is a superset of SSE3, only check for SSE here.
319 if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000320 // Expand FP_TO_UINT into a select.
321 // FIXME: We would like to use a Custom expander here eventually to do
322 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000325 // With SSE3 we can use fisttpll to convert to a signed i64; without
326 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000327 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000328 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000329
Chris Lattner399610a2006-12-05 18:22:22 +0000330 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000331 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000332 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
333 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000334 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000335 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000336 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000337 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000338 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000339 }
Chris Lattner21f66852005-12-23 05:15:23 +0000340
Dan Gohmanb00ee212008-02-18 19:34:53 +0000341 // Scalar integer divide and remainder are lowered to use operations that
342 // produce two results, to match the available instructions. This exposes
343 // the two-result form to trivial CSE, which is able to combine x/y and x%y
344 // into a single instruction.
345 //
346 // Scalar integer multiply-high is also lowered to use two-result
347 // operations, to match the available instructions. However, plain multiply
348 // (low) operations are left as Legal, as there are single-result
349 // instructions for this in x86. Using the two-result multiply instructions
350 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000351 for (unsigned i = 0, e = 4; i != e; ++i) {
352 MVT VT = IntVTs[i];
353 setOperationAction(ISD::MULHS, VT, Expand);
354 setOperationAction(ISD::MULHU, VT, Expand);
355 setOperationAction(ISD::SDIV, VT, Expand);
356 setOperationAction(ISD::UDIV, VT, Expand);
357 setOperationAction(ISD::SREM, VT, Expand);
358 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000359
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000360 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000361 setOperationAction(ISD::ADDC, VT, Custom);
362 setOperationAction(ISD::ADDE, VT, Custom);
363 setOperationAction(ISD::SUBC, VT, Custom);
364 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000365 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000366
Owen Anderson825b72b2009-08-11 20:47:22 +0000367 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
368 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
369 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
370 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000371 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000372 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
373 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
374 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
375 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
376 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
377 setOperationAction(ISD::FREM , MVT::f32 , Expand);
378 setOperationAction(ISD::FREM , MVT::f64 , Expand);
379 setOperationAction(ISD::FREM , MVT::f80 , Expand);
380 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000381
Chandler Carruth63974b22011-12-13 01:56:10 +0000382 setOperationAction(ISD::CTTZ_ZERO_UNDEF , MVT::i8 , Expand);
Craig Topper909652f2011-10-14 03:21:46 +0000383 if (Subtarget->hasBMI()) {
384 setOperationAction(ISD::CTTZ , MVT::i8 , Promote);
385 } else {
386 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
387 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
388 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
389 if (Subtarget->is64Bit())
390 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
391 }
Craig Topper37f21672011-10-11 06:44:02 +0000392
Chandler Carruth63974b22011-12-13 01:56:10 +0000393 setOperationAction(ISD::CTLZ_ZERO_UNDEF , MVT::i8 , Expand);
Craig Topper37f21672011-10-11 06:44:02 +0000394 if (Subtarget->hasLZCNT()) {
395 setOperationAction(ISD::CTLZ , MVT::i8 , Promote);
396 } else {
397 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
398 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
399 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
400 if (Subtarget->is64Bit())
401 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000402 }
403
Benjamin Kramer1292c222010-12-04 20:32:23 +0000404 if (Subtarget->hasPOPCNT()) {
405 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
406 } else {
407 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
408 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
409 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
410 if (Subtarget->is64Bit())
411 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
412 }
413
Owen Anderson825b72b2009-08-11 20:47:22 +0000414 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
415 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000416
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000417 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000418 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000419 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000420 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000421 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000422 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
423 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
424 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
425 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
426 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000427 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
429 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
430 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
431 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000432 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000434 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000435 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000436 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000437
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000438 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000439 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
440 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
441 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
442 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000443 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
445 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000446 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000447 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000448 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
449 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
450 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
451 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000452 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000453 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000454 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000455 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
456 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
457 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000458 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000459 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
460 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
461 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000462 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000463
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000464 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000465 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000466
Eric Christopher9a9d2752010-07-22 02:48:34 +0000467 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000468 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000469
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000470 // On X86 and X86-64, atomic operations are lowered to locked instructions.
471 // Locked instructions, in turn, have implicit fence semantics (all memory
472 // operations are flushed before issuing the locked instruction, and they
473 // are not buffered), so we can fold away the common pattern of
474 // fence-atomic-fence.
475 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000476
Mon P Wang63307c32008-05-05 19:05:59 +0000477 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000478 for (unsigned i = 0, e = 4; i != e; ++i) {
479 MVT VT = IntVTs[i];
480 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
481 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000482 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000483 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000484
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000485 if (!Subtarget->is64Bit()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000486 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000487 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
488 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
489 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
490 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
491 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
492 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
493 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000494 }
495
Eli Friedman43f51ae2011-08-26 21:21:21 +0000496 if (Subtarget->hasCmpxchg16b()) {
497 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
498 }
499
Evan Cheng3c992d22006-03-07 02:02:57 +0000500 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000501 if (!Subtarget->isTargetDarwin() &&
502 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000503 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000504 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000505 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000506
Owen Anderson825b72b2009-08-11 20:47:22 +0000507 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
508 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
509 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
510 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000511 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000512 setExceptionPointerRegister(X86::RAX);
513 setExceptionSelectorRegister(X86::RDX);
514 } else {
515 setExceptionPointerRegister(X86::EAX);
516 setExceptionSelectorRegister(X86::EDX);
517 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000518 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
519 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000520
Duncan Sands4a544a72011-09-06 13:37:06 +0000521 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
522 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000523
Owen Anderson825b72b2009-08-11 20:47:22 +0000524 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000525
Nate Begemanacc398c2006-01-25 18:21:52 +0000526 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000527 setOperationAction(ISD::VASTART , MVT::Other, Custom);
528 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000529 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000530 setOperationAction(ISD::VAARG , MVT::Other, Custom);
531 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000532 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000533 setOperationAction(ISD::VAARG , MVT::Other, Expand);
534 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000535 }
Evan Chengae642192007-03-02 23:16:35 +0000536
Owen Anderson825b72b2009-08-11 20:47:22 +0000537 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
538 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Eric Christopherc967ad82011-08-31 04:17:21 +0000539
540 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
541 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
542 MVT::i64 : MVT::i32, Custom);
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000543 else if (TM.Options.EnableSegmentedStacks)
Eric Christopherc967ad82011-08-31 04:17:21 +0000544 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
545 MVT::i64 : MVT::i32, Custom);
546 else
547 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
548 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000549
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000550 if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000551 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000552 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000553 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
554 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000555
Evan Cheng223547a2006-01-31 22:28:30 +0000556 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000557 setOperationAction(ISD::FABS , MVT::f64, Custom);
558 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000559
560 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000561 setOperationAction(ISD::FNEG , MVT::f64, Custom);
562 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000563
Evan Cheng68c47cb2007-01-05 07:55:56 +0000564 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000565 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
566 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000567
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000568 // Lower this to FGETSIGNx86 plus an AND.
569 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
570 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
571
Evan Chengd25e9e82006-02-02 00:28:23 +0000572 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000573 setOperationAction(ISD::FSIN , MVT::f64, Expand);
574 setOperationAction(ISD::FCOS , MVT::f64, Expand);
575 setOperationAction(ISD::FSIN , MVT::f32, Expand);
576 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000577
Chris Lattnera54aa942006-01-29 06:26:08 +0000578 // Expand FP immediates into loads from the stack, except for the special
579 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000580 addLegalFPImmediate(APFloat(+0.0)); // xorpd
581 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000582 } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000583 // Use SSE for f32, x87 for f64.
584 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000585 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
586 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000587
588 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000589 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000590
591 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000592 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000593
Owen Anderson825b72b2009-08-11 20:47:22 +0000594 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000595
596 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000597 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
598 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000599
600 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000601 setOperationAction(ISD::FSIN , MVT::f32, Expand);
602 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000603
Nate Begemane1795842008-02-14 08:57:00 +0000604 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000605 addLegalFPImmediate(APFloat(+0.0f)); // xorps
606 addLegalFPImmediate(APFloat(+0.0)); // FLD0
607 addLegalFPImmediate(APFloat(+1.0)); // FLD1
608 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
609 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
610
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000611 if (!TM.Options.UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000612 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
613 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000614 }
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000615 } else if (!TM.Options.UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000616 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000617 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000618 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
619 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000620
Owen Anderson825b72b2009-08-11 20:47:22 +0000621 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
622 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
623 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
624 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000625
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000626 if (!TM.Options.UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000627 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
628 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000629 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000630 addLegalFPImmediate(APFloat(+0.0)); // FLD0
631 addLegalFPImmediate(APFloat(+1.0)); // FLD1
632 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
633 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000634 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
635 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
636 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
637 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000638 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000639
Cameron Zwarich33390842011-07-08 21:39:21 +0000640 // We don't support FMA.
641 setOperationAction(ISD::FMA, MVT::f64, Expand);
642 setOperationAction(ISD::FMA, MVT::f32, Expand);
643
Dale Johannesen59a58732007-08-05 18:49:15 +0000644 // Long double always uses X87.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000645 if (!TM.Options.UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000646 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
647 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
648 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000649 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000650 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000651 addLegalFPImmediate(TmpFlt); // FLD0
652 TmpFlt.changeSign();
653 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000654
655 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000656 APFloat TmpFlt2(+1.0);
657 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
658 &ignored);
659 addLegalFPImmediate(TmpFlt2); // FLD1
660 TmpFlt2.changeSign();
661 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
662 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000663
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000664 if (!TM.Options.UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000665 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
666 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000667 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000668
Owen Anderson4a4fdf32011-12-08 19:32:14 +0000669 setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
670 setOperationAction(ISD::FCEIL, MVT::f80, Expand);
671 setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
672 setOperationAction(ISD::FRINT, MVT::f80, Expand);
673 setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
Cameron Zwarich33390842011-07-08 21:39:21 +0000674 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000675 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000676
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000677 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000678 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
679 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
680 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000681
Owen Anderson825b72b2009-08-11 20:47:22 +0000682 setOperationAction(ISD::FLOG, MVT::f80, Expand);
683 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
684 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
685 setOperationAction(ISD::FEXP, MVT::f80, Expand);
686 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000687
Mon P Wangf007a8b2008-11-06 05:31:54 +0000688 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000689 // (for widening) or expand (for scalarization). Then we will selectively
690 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000691 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
692 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
693 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000708 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000709 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
710 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000711 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
715 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
716 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
717 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
718 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
719 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
720 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
721 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
722 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
723 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
724 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000725 setOperationAction(ISD::CTTZ_ZERO_UNDEF, (MVT::SimpleValueType)VT, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000726 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
Chandler Carruth63974b22011-12-13 01:56:10 +0000727 setOperationAction(ISD::CTLZ_ZERO_UNDEF, (MVT::SimpleValueType)VT, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000728 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
729 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
730 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
731 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
732 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
733 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
Duncan Sands28b77e92011-09-06 19:07:46 +0000734 setOperationAction(ISD::SETCC, (MVT::SimpleValueType)VT, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000735 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
736 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
737 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
738 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
739 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
740 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
741 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
742 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
743 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000744 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000745 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
746 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
747 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
748 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
Nadav Rotemaec58612011-09-13 19:17:42 +0000749 setOperationAction(ISD::VSELECT, (MVT::SimpleValueType)VT, Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000750 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
751 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
752 setTruncStoreAction((MVT::SimpleValueType)VT,
753 (MVT::SimpleValueType)InnerVT, Expand);
754 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
755 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
756 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000757 }
758
Evan Chengc7ce29b2009-02-13 22:36:38 +0000759 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
760 // with -msoft-float, disable use of MMX as well.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000761 if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000762 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000763 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000764 }
765
Dale Johannesen0488fb62010-09-30 23:57:10 +0000766 // MMX-sized vectors (other than x86mmx) are expected to be expanded
767 // into smaller operations.
768 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
769 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
770 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
771 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
772 setOperationAction(ISD::AND, MVT::v8i8, Expand);
773 setOperationAction(ISD::AND, MVT::v4i16, Expand);
774 setOperationAction(ISD::AND, MVT::v2i32, Expand);
775 setOperationAction(ISD::AND, MVT::v1i64, Expand);
776 setOperationAction(ISD::OR, MVT::v8i8, Expand);
777 setOperationAction(ISD::OR, MVT::v4i16, Expand);
778 setOperationAction(ISD::OR, MVT::v2i32, Expand);
779 setOperationAction(ISD::OR, MVT::v1i64, Expand);
780 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
781 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
782 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
783 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
784 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
785 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
786 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
787 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
788 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
789 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
790 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
791 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
792 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000793 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
794 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
795 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
796 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000797
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000798 if (!TM.Options.UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000799 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000800
Owen Anderson825b72b2009-08-11 20:47:22 +0000801 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
802 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
803 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
804 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
805 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
806 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
807 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
808 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
809 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
810 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
811 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000812 setOperationAction(ISD::SETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000813 }
814
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000815 if (!TM.Options.UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000816 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000817
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000818 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
819 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000820 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
821 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
822 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
823 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000824
Owen Anderson825b72b2009-08-11 20:47:22 +0000825 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
826 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
827 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
828 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
829 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
830 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
831 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
832 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
833 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
834 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
835 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
836 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
837 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
838 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
839 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
840 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000841
Nadav Rotem354efd82011-09-18 14:57:03 +0000842 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000843 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
844 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
845 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000846
Owen Anderson825b72b2009-08-11 20:47:22 +0000847 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
848 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
849 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
850 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
851 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000852
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000853 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
854 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
855 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
856 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
857 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
858
Evan Cheng2c3ae372006-04-12 21:21:57 +0000859 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000860 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
861 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000862 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000863 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000864 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000865 // Do not attempt to custom lower non-128-bit vectors
866 if (!VT.is128BitVector())
867 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000868 setOperationAction(ISD::BUILD_VECTOR,
869 VT.getSimpleVT().SimpleTy, Custom);
870 setOperationAction(ISD::VECTOR_SHUFFLE,
871 VT.getSimpleVT().SimpleTy, Custom);
872 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
873 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000874 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000875
Owen Anderson825b72b2009-08-11 20:47:22 +0000876 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
877 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
878 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
879 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
880 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
881 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000882
Nate Begemancdd1eec2008-02-12 22:51:28 +0000883 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000884 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
885 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000886 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000887
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000888 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000889 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
890 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000891 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000892
893 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000894 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000895 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000896
Owen Andersond6662ad2009-08-10 20:46:15 +0000897 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000898 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000899 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000900 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000901 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000902 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000903 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000904 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000905 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000906 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000907 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000908
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000910
Evan Cheng2c3ae372006-04-12 21:21:57 +0000911 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000912 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
913 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
914 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
915 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000916
Owen Anderson825b72b2009-08-11 20:47:22 +0000917 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
918 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000919 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000920
Craig Topperc0d82852011-11-22 00:44:41 +0000921 if (Subtarget->hasSSE41orAVX()) {
Benjamin Kramerb6533972011-12-09 15:44:03 +0000922 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
923 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
924 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
925 setOperationAction(ISD::FRINT, MVT::f32, Legal);
926 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
927 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
928 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
929 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
930 setOperationAction(ISD::FRINT, MVT::f64, Legal);
931 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
932
Nate Begeman14d12ca2008-02-11 04:19:36 +0000933 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000934 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000935
Nadav Rotemfbad25e2011-09-11 15:02:23 +0000936 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
937 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
938 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
939 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
940 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +0000941
Nate Begeman14d12ca2008-02-11 04:19:36 +0000942 // i8 and i16 vectors are custom , because the source register and source
943 // source memory operand types are not the same width. f32 vectors are
944 // custom since the immediate controlling the insert encodes additional
945 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
947 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
948 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
949 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000950
Owen Anderson825b72b2009-08-11 20:47:22 +0000951 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
952 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
953 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
954 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000955
Pete Coopera77214a2011-11-14 19:38:42 +0000956 // FIXME: these should be Legal but thats only for the case where
Chad Rosier30450e82011-12-22 22:35:21 +0000957 // the index is constant. For now custom expand to deal with that.
Nate Begeman14d12ca2008-02-11 04:19:36 +0000958 if (Subtarget->is64Bit()) {
Pete Coopera77214a2011-11-14 19:38:42 +0000959 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
960 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000961 }
962 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000963
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000964 if (Subtarget->hasXMMInt()) {
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000965 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +0000966 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000967
Nadav Rotem43012222011-05-11 08:12:09 +0000968 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +0000969 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000970
Nadav Rotem43012222011-05-11 08:12:09 +0000971 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
Eli Friedmanf6aa6b12011-11-01 21:18:39 +0000972 setOperationAction(ISD::SRA, MVT::v16i8, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +0000973
974 if (Subtarget->hasAVX2()) {
975 setOperationAction(ISD::SRL, MVT::v2i64, Legal);
976 setOperationAction(ISD::SRL, MVT::v4i32, Legal);
977
978 setOperationAction(ISD::SHL, MVT::v2i64, Legal);
979 setOperationAction(ISD::SHL, MVT::v4i32, Legal);
980
981 setOperationAction(ISD::SRA, MVT::v4i32, Legal);
982 } else {
983 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
984 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
985
986 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
987 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
988
989 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
990 }
Nadav Rotem43012222011-05-11 08:12:09 +0000991 }
992
Craig Topperc0d82852011-11-22 00:44:41 +0000993 if (Subtarget->hasSSE42orAVX())
Duncan Sands28b77e92011-09-06 19:07:46 +0000994 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000995
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000996 if (!TM.Options.UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000997 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
998 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
999 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
1000 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
1001 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
1002 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +00001003
Owen Anderson825b72b2009-08-11 20:47:22 +00001004 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +00001005 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
1006 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +00001007
Owen Anderson825b72b2009-08-11 20:47:22 +00001008 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
1009 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
1010 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
1011 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
1012 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
1013 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001014
Owen Anderson825b72b2009-08-11 20:47:22 +00001015 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
1016 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
1017 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
1018 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
1019 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
1020 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001021
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001022 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
1023 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +00001024 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +00001025
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00001026 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
1027 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
1028 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
1029 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
1030 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
1031 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
1032
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001033 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1034 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1035
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001036 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1037 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1038
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001039 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001040 setOperationAction(ISD::SRA, MVT::v32i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001041
Duncan Sands28b77e92011-09-06 19:07:46 +00001042 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1043 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1044 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1045 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001046
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001047 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1048 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1049 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1050
Craig Topperaaa643c2011-11-09 07:28:55 +00001051 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1052 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1053 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1054 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001055
Craig Topperaaa643c2011-11-09 07:28:55 +00001056 if (Subtarget->hasAVX2()) {
1057 setOperationAction(ISD::ADD, MVT::v4i64, Legal);
1058 setOperationAction(ISD::ADD, MVT::v8i32, Legal);
1059 setOperationAction(ISD::ADD, MVT::v16i16, Legal);
1060 setOperationAction(ISD::ADD, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001061
Craig Topperaaa643c2011-11-09 07:28:55 +00001062 setOperationAction(ISD::SUB, MVT::v4i64, Legal);
1063 setOperationAction(ISD::SUB, MVT::v8i32, Legal);
1064 setOperationAction(ISD::SUB, MVT::v16i16, Legal);
1065 setOperationAction(ISD::SUB, MVT::v32i8, Legal);
Craig Topper13894fa2011-08-24 06:14:18 +00001066
Craig Topperaaa643c2011-11-09 07:28:55 +00001067 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1068 setOperationAction(ISD::MUL, MVT::v8i32, Legal);
1069 setOperationAction(ISD::MUL, MVT::v16i16, Legal);
Craig Topper46154eb2011-11-11 07:39:23 +00001070 // Don't lower v32i8 because there is no 128-bit byte mul
Nadav Rotembb539bf2011-11-09 13:21:28 +00001071
1072 setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
Craig Topper7be5dfd2011-11-12 09:58:49 +00001073
1074 setOperationAction(ISD::SRL, MVT::v4i64, Legal);
1075 setOperationAction(ISD::SRL, MVT::v8i32, Legal);
1076
1077 setOperationAction(ISD::SHL, MVT::v4i64, Legal);
1078 setOperationAction(ISD::SHL, MVT::v8i32, Legal);
1079
1080 setOperationAction(ISD::SRA, MVT::v8i32, Legal);
Craig Topperaaa643c2011-11-09 07:28:55 +00001081 } else {
1082 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1083 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1084 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1085 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1086
1087 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1088 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1089 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1090 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1091
1092 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1093 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1094 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1095 // Don't lower v32i8 because there is no 128-bit byte mul
Craig Topper7be5dfd2011-11-12 09:58:49 +00001096
1097 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1098 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1099
1100 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1101 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1102
1103 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
Craig Topperaaa643c2011-11-09 07:28:55 +00001104 }
Craig Topper13894fa2011-08-24 06:14:18 +00001105
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001106 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001107 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001108 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1109 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1110 EVT VT = SVT;
1111
1112 // Extract subvector is special because the value type
1113 // (result) is 128-bit but the source is 256-bit wide.
1114 if (VT.is128BitVector())
1115 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1116
1117 // Do not attempt to custom lower other non-256-bit vectors
1118 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001119 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001120
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001121 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1122 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1123 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1124 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001125 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001126 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001127 }
1128
David Greene54d8eba2011-01-27 22:38:56 +00001129 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001130 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1131 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1132 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001133
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001134 // Do not attempt to promote non-256-bit vectors
1135 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001136 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001137
1138 setOperationAction(ISD::AND, SVT, Promote);
1139 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1140 setOperationAction(ISD::OR, SVT, Promote);
1141 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1142 setOperationAction(ISD::XOR, SVT, Promote);
1143 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1144 setOperationAction(ISD::LOAD, SVT, Promote);
1145 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1146 setOperationAction(ISD::SELECT, SVT, Promote);
1147 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001148 }
David Greene9b9838d2009-06-29 16:47:10 +00001149 }
1150
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001151 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1152 // of this type with custom code.
1153 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1154 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
Chad Rosier30450e82011-12-22 22:35:21 +00001155 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1156 Custom);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001157 }
1158
Evan Cheng6be2c582006-04-05 23:38:46 +00001159 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001160 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001161
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001162
Eli Friedman962f5492010-06-02 19:35:46 +00001163 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1164 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001165 //
Eli Friedman962f5492010-06-02 19:35:46 +00001166 // FIXME: We really should do custom legalization for addition and
1167 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1168 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001169 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1170 // Add/Sub/Mul with overflow operations are custom lowered.
1171 MVT VT = IntVTs[i];
1172 setOperationAction(ISD::SADDO, VT, Custom);
1173 setOperationAction(ISD::UADDO, VT, Custom);
1174 setOperationAction(ISD::SSUBO, VT, Custom);
1175 setOperationAction(ISD::USUBO, VT, Custom);
1176 setOperationAction(ISD::SMULO, VT, Custom);
1177 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001178 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001179
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001180 // There are no 8-bit 3-address imul/mul instructions
1181 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1182 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001183
Evan Chengd54f2d52009-03-31 19:38:51 +00001184 if (!Subtarget->is64Bit()) {
1185 // These libcalls are not available in 32-bit.
1186 setLibcallName(RTLIB::SHL_I128, 0);
1187 setLibcallName(RTLIB::SRL_I128, 0);
1188 setLibcallName(RTLIB::SRA_I128, 0);
1189 }
1190
Evan Cheng206ee9d2006-07-07 08:33:52 +00001191 // We have target-specific dag combine patterns for the following nodes:
1192 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001193 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001194 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001195 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001196 setTargetDAGCombine(ISD::SHL);
1197 setTargetDAGCombine(ISD::SRA);
1198 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001199 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001200 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001201 setTargetDAGCombine(ISD::ADD);
Duncan Sands17470be2011-09-22 20:15:48 +00001202 setTargetDAGCombine(ISD::FADD);
1203 setTargetDAGCombine(ISD::FSUB);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001204 setTargetDAGCombine(ISD::SUB);
Nadav Rotem91e43fd2011-09-18 10:39:32 +00001205 setTargetDAGCombine(ISD::LOAD);
Chris Lattner149a4e52008-02-22 02:09:43 +00001206 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001207 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001208 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001209 if (Subtarget->is64Bit())
1210 setTargetDAGCombine(ISD::MUL);
Craig Topperb4c94572011-10-21 06:55:01 +00001211 if (Subtarget->hasBMI())
1212 setTargetDAGCombine(ISD::XOR);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001213
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001214 computeRegisterProperties();
1215
Evan Cheng05219282011-01-06 06:52:41 +00001216 // On Darwin, -Os means optimize for size without hurting performance,
1217 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001218 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001219 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001220 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001221 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1222 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1223 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001224 setPrefLoopAlignment(4); // 2^4 bytes.
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001225 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001226
Jakob Stoklund Olesen8c741b82011-12-06 01:26:19 +00001227 setPrefFunctionAlignment(4); // 2^4 bytes.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001228}
1229
Scott Michel5b8f82e2008-03-10 15:42:14 +00001230
Duncan Sands28b77e92011-09-06 19:07:46 +00001231EVT X86TargetLowering::getSetCCResultType(EVT VT) const {
1232 if (!VT.isVector()) return MVT::i8;
1233 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001234}
1235
1236
Evan Cheng29286502008-01-23 23:17:41 +00001237/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1238/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001239static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001240 if (MaxAlign == 16)
1241 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001242 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001243 if (VTy->getBitWidth() == 128)
1244 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001245 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001246 unsigned EltAlign = 0;
1247 getMaxByValAlign(ATy->getElementType(), EltAlign);
1248 if (EltAlign > MaxAlign)
1249 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001250 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001251 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1252 unsigned EltAlign = 0;
1253 getMaxByValAlign(STy->getElementType(i), EltAlign);
1254 if (EltAlign > MaxAlign)
1255 MaxAlign = EltAlign;
1256 if (MaxAlign == 16)
1257 break;
1258 }
1259 }
1260 return;
1261}
1262
1263/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1264/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001265/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1266/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001267unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001268 if (Subtarget->is64Bit()) {
1269 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001270 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001271 if (TyAlign > 8)
1272 return TyAlign;
1273 return 8;
1274 }
1275
Evan Cheng29286502008-01-23 23:17:41 +00001276 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001277 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001278 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001279 return Align;
1280}
Chris Lattner2b02a442007-02-25 08:29:00 +00001281
Evan Chengf0df0312008-05-15 08:39:06 +00001282/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001283/// and store operations as a result of memset, memcpy, and memmove
1284/// lowering. If DstAlign is zero that means it's safe to destination
1285/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1286/// means there isn't a need to check it against alignment requirement,
1287/// probably because the source does not need to be loaded. If
Lang Hames15701f82011-10-26 23:50:43 +00001288/// 'IsZeroVal' is true, that means it's safe to return a
Evan Chengc3b0c342010-04-08 07:37:57 +00001289/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1290/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1291/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001292/// It returns EVT::Other if the type should be determined using generic
1293/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001294EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001295X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1296 unsigned DstAlign, unsigned SrcAlign,
Lang Hames15701f82011-10-26 23:50:43 +00001297 bool IsZeroVal,
Evan Chengc3b0c342010-04-08 07:37:57 +00001298 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001299 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001300 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1301 // linux. This is because the stack realignment code can't handle certain
1302 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001303 const Function *F = MF.getFunction();
Lang Hames15701f82011-10-26 23:50:43 +00001304 if (IsZeroVal &&
Evan Chenga5e13622011-01-07 19:35:30 +00001305 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001306 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001307 (Subtarget->isUnalignedMemAccessFast() ||
1308 ((DstAlign == 0 || DstAlign >= 16) &&
1309 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001310 Subtarget->getStackAlignment() >= 16) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00001311 if (Subtarget->hasAVX() &&
1312 Subtarget->getStackAlignment() >= 32)
1313 return MVT::v8f32;
1314 if (Subtarget->hasXMMInt())
Evan Cheng255f20f2010-04-01 06:04:33 +00001315 return MVT::v4i32;
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00001316 if (Subtarget->hasXMM())
Evan Cheng255f20f2010-04-01 06:04:33 +00001317 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001318 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001319 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001320 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001321 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001322 // Do not use f64 to lower memcpy if source is string constant. It's
1323 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001324 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001325 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001326 }
Evan Chengf0df0312008-05-15 08:39:06 +00001327 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001328 return MVT::i64;
1329 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001330}
1331
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001332/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1333/// current function. The returned value is a member of the
1334/// MachineJumpTableInfo::JTEntryKind enum.
1335unsigned X86TargetLowering::getJumpTableEncoding() const {
1336 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1337 // symbol.
1338 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1339 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001340 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001341
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001342 // Otherwise, use the normal jump table encoding heuristics.
1343 return TargetLowering::getJumpTableEncoding();
1344}
1345
Chris Lattnerc64daab2010-01-26 05:02:42 +00001346const MCExpr *
1347X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1348 const MachineBasicBlock *MBB,
1349 unsigned uid,MCContext &Ctx) const{
1350 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1351 Subtarget->isPICStyleGOT());
1352 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1353 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001354 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1355 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001356}
1357
Evan Chengcc415862007-11-09 01:32:10 +00001358/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1359/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001360SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001361 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001362 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001363 // This doesn't have DebugLoc associated with it, but is not really the
1364 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001365 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001366 return Table;
1367}
1368
Chris Lattner589c6f62010-01-26 06:28:43 +00001369/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1370/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1371/// MCExpr.
1372const MCExpr *X86TargetLowering::
1373getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1374 MCContext &Ctx) const {
1375 // X86-64 uses RIP relative addressing based on the jump table label.
1376 if (Subtarget->isPICStyleRIPRel())
1377 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1378
1379 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001380 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001381}
1382
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001383// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001384std::pair<const TargetRegisterClass*, uint8_t>
1385X86TargetLowering::findRepresentativeClass(EVT VT) const{
1386 const TargetRegisterClass *RRC = 0;
1387 uint8_t Cost = 1;
1388 switch (VT.getSimpleVT().SimpleTy) {
1389 default:
1390 return TargetLowering::findRepresentativeClass(VT);
1391 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1392 RRC = (Subtarget->is64Bit()
1393 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1394 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001395 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001396 RRC = X86::VR64RegisterClass;
1397 break;
1398 case MVT::f32: case MVT::f64:
1399 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1400 case MVT::v4f32: case MVT::v2f64:
1401 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1402 case MVT::v4f64:
1403 RRC = X86::VR128RegisterClass;
1404 break;
1405 }
1406 return std::make_pair(RRC, Cost);
1407}
1408
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001409bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1410 unsigned &Offset) const {
1411 if (!Subtarget->isTargetLinux())
1412 return false;
1413
1414 if (Subtarget->is64Bit()) {
1415 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1416 Offset = 0x28;
1417 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1418 AddressSpace = 256;
1419 else
1420 AddressSpace = 257;
1421 } else {
1422 // %gs:0x14 on i386
1423 Offset = 0x14;
1424 AddressSpace = 256;
1425 }
1426 return true;
1427}
1428
1429
Chris Lattner2b02a442007-02-25 08:29:00 +00001430//===----------------------------------------------------------------------===//
1431// Return Value Calling Convention Implementation
1432//===----------------------------------------------------------------------===//
1433
Chris Lattner59ed56b2007-02-28 04:55:35 +00001434#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001435
Michael J. Spencerec38de22010-10-10 22:04:20 +00001436bool
Eric Christopher471e4222011-06-08 23:55:35 +00001437X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1438 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001439 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001440 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001441 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001442 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001443 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001444 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001445}
1446
Dan Gohman98ca4f22009-08-05 01:29:28 +00001447SDValue
1448X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001449 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001450 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001451 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001452 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001453 MachineFunction &MF = DAG.getMachineFunction();
1454 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001455
Chris Lattner9774c912007-02-27 05:28:59 +00001456 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001457 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001458 RVLocs, *DAG.getContext());
1459 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001460
Evan Chengdcea1632010-02-04 02:40:39 +00001461 // Add the regs to the liveout set for the function.
1462 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1463 for (unsigned i = 0; i != RVLocs.size(); ++i)
1464 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1465 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001466
Dan Gohman475871a2008-07-27 21:46:04 +00001467 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001468
Dan Gohman475871a2008-07-27 21:46:04 +00001469 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001470 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1471 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001472 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1473 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001474
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001475 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001476 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1477 CCValAssign &VA = RVLocs[i];
1478 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001479 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001480 EVT ValVT = ValToCopy.getValueType();
1481
Dale Johannesenc4510512010-09-24 19:05:48 +00001482 // If this is x86-64, and we disabled SSE, we can't return FP values,
1483 // or SSE or MMX vectors.
1484 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1485 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001486 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001487 report_fatal_error("SSE register return with SSE disabled");
1488 }
1489 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1490 // llvm-gcc has never done it right and no one has noticed, so this
1491 // should be OK for now.
1492 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001493 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001494 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001495
Chris Lattner447ff682008-03-11 03:23:40 +00001496 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1497 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001498 if (VA.getLocReg() == X86::ST0 ||
1499 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001500 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1501 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001502 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001503 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001504 RetOps.push_back(ValToCopy);
1505 // Don't emit a copytoreg.
1506 continue;
1507 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001508
Evan Cheng242b38b2009-02-23 09:03:22 +00001509 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1510 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001511 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001512 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001513 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001514 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001515 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1516 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001517 // If we don't have SSE2 available, convert to v4f32 so the generated
1518 // register is legal.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00001519 if (!Subtarget->hasXMMInt())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001520 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001521 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001522 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001523 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001524
Dale Johannesendd64c412009-02-04 00:33:20 +00001525 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001526 Flag = Chain.getValue(1);
1527 }
Dan Gohman61a92132008-04-21 23:59:07 +00001528
1529 // The x86-64 ABI for returning structs by value requires that we copy
1530 // the sret argument into %rax for the return. We saved the argument into
1531 // a virtual register in the entry block, so now we copy the value out
1532 // and into %rax.
1533 if (Subtarget->is64Bit() &&
1534 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1535 MachineFunction &MF = DAG.getMachineFunction();
1536 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1537 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001538 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001539 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001540 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001541
Dale Johannesendd64c412009-02-04 00:33:20 +00001542 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001543 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001544
1545 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001546 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001547 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001548
Chris Lattner447ff682008-03-11 03:23:40 +00001549 RetOps[0] = Chain; // Update chain.
1550
1551 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001552 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001553 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001554
1555 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001556 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001557}
1558
Evan Cheng3d2125c2010-11-30 23:55:39 +00001559bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1560 if (N->getNumValues() != 1)
1561 return false;
1562 if (!N->hasNUsesOfValue(1, 0))
1563 return false;
1564
1565 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001566 if (Copy->getOpcode() != ISD::CopyToReg &&
1567 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001568 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001569
1570 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001571 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001572 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001573 if (UI->getOpcode() != X86ISD::RET_FLAG)
1574 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001575 HasRet = true;
1576 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001577
Evan Cheng1bf891a2010-12-01 22:59:46 +00001578 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001579}
1580
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001581EVT
1582X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001583 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001584 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001585 // TODO: Is this also valid on 32-bit?
1586 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001587 ReturnMVT = MVT::i8;
1588 else
1589 ReturnMVT = MVT::i32;
1590
1591 EVT MinVT = getRegisterType(Context, ReturnMVT);
1592 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001593}
1594
Dan Gohman98ca4f22009-08-05 01:29:28 +00001595/// LowerCallResult - Lower the result values of a call into the
1596/// appropriate copies out of appropriate physical registers.
1597///
1598SDValue
1599X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001600 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001601 const SmallVectorImpl<ISD::InputArg> &Ins,
1602 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001603 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001604
Chris Lattnere32bbf62007-02-28 07:09:55 +00001605 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001606 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001607 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001608 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1609 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001610 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001611
Chris Lattner3085e152007-02-25 08:59:22 +00001612 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001613 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001614 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001615 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001616
Torok Edwin3f142c32009-02-01 18:15:56 +00001617 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001618 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001619 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001620 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001621 }
1622
Evan Cheng79fb3b42009-02-20 20:43:02 +00001623 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001624
1625 // If this is a call to a function that returns an fp value on the floating
1626 // point stack, we must guarantee the the value is popped from the stack, so
1627 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001628 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001629 // instead.
1630 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1631 // If we prefer to use the value in xmm registers, copy it out as f80 and
1632 // use a truncate to move it from fp stack reg to xmm reg.
1633 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001634 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001635 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1636 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001637 Val = Chain.getValue(0);
1638
1639 // Round the f80 to the right size, which also moves it to the appropriate
1640 // xmm register.
1641 if (CopyVT != VA.getValVT())
1642 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1643 // This truncation won't change the value.
1644 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001645 } else {
1646 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1647 CopyVT, InFlag).getValue(1);
1648 Val = Chain.getValue(0);
1649 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001650 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001651 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001652 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001653
Dan Gohman98ca4f22009-08-05 01:29:28 +00001654 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001655}
1656
1657
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001658//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001659// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001660//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001661// StdCall calling convention seems to be standard for many Windows' API
1662// routines and around. It differs from C calling convention just a little:
1663// callee should clean up the stack, not caller. Symbols should be also
1664// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001665// For info on fast calling convention see Fast Calling Convention (tail call)
1666// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001667
Dan Gohman98ca4f22009-08-05 01:29:28 +00001668/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001669/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001670static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1671 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001672 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001673
Dan Gohman98ca4f22009-08-05 01:29:28 +00001674 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001675}
1676
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001677/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001678/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001679static bool
1680ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1681 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001682 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001683
Dan Gohman98ca4f22009-08-05 01:29:28 +00001684 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001685}
1686
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001687/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1688/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001689/// the specific parameter attribute. The copy will be passed as a byval
1690/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001691static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001692CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001693 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1694 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001695 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001696
Dale Johannesendd64c412009-02-04 00:33:20 +00001697 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001698 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001699 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001700}
1701
Chris Lattner29689432010-03-11 00:22:57 +00001702/// IsTailCallConvention - Return true if the calling convention is one that
1703/// supports tail call optimization.
1704static bool IsTailCallConvention(CallingConv::ID CC) {
1705 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1706}
1707
Evan Cheng485fafc2011-03-21 01:19:09 +00001708bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1709 if (!CI->isTailCall())
1710 return false;
1711
1712 CallSite CS(CI);
1713 CallingConv::ID CalleeCC = CS.getCallingConv();
1714 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1715 return false;
1716
1717 return true;
1718}
1719
Evan Cheng0c439eb2010-01-27 00:07:07 +00001720/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1721/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001722static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
1723 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00001724 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001725}
1726
Dan Gohman98ca4f22009-08-05 01:29:28 +00001727SDValue
1728X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001729 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001730 const SmallVectorImpl<ISD::InputArg> &Ins,
1731 DebugLoc dl, SelectionDAG &DAG,
1732 const CCValAssign &VA,
1733 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001734 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001735 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001736 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001737 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
1738 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001739 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001740 EVT ValVT;
1741
1742 // If value is passed by pointer we have address passed instead of the value
1743 // itself.
1744 if (VA.getLocInfo() == CCValAssign::Indirect)
1745 ValVT = VA.getLocVT();
1746 else
1747 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001748
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001749 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001750 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001751 // In case of tail call optimization mark all arguments mutable. Since they
1752 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001753 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001754 unsigned Bytes = Flags.getByValSize();
1755 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1756 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001757 return DAG.getFrameIndex(FI, getPointerTy());
1758 } else {
1759 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001760 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001761 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1762 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001763 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00001764 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001765 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001766}
1767
Dan Gohman475871a2008-07-27 21:46:04 +00001768SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001769X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001770 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001771 bool isVarArg,
1772 const SmallVectorImpl<ISD::InputArg> &Ins,
1773 DebugLoc dl,
1774 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001775 SmallVectorImpl<SDValue> &InVals)
1776 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001777 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001778 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001779
Gordon Henriksen86737662008-01-05 16:56:59 +00001780 const Function* Fn = MF.getFunction();
1781 if (Fn->hasExternalLinkage() &&
1782 Subtarget->isTargetCygMing() &&
1783 Fn->getName() == "main")
1784 FuncInfo->setForceFramePointer(true);
1785
Evan Cheng1bc78042006-04-26 01:20:17 +00001786 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001787 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001788 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001789
Chris Lattner29689432010-03-11 00:22:57 +00001790 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1791 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001792
Chris Lattner638402b2007-02-28 07:00:42 +00001793 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001794 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001795 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001796 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001797
1798 // Allocate shadow area for Win64
1799 if (IsWin64) {
1800 CCInfo.AllocateStack(32, 8);
1801 }
1802
Duncan Sands45907662010-10-31 13:21:44 +00001803 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001804
Chris Lattnerf39f7712007-02-28 05:46:49 +00001805 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001806 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001807 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1808 CCValAssign &VA = ArgLocs[i];
1809 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1810 // places.
1811 assert(VA.getValNo() != LastVal &&
1812 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00001813 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001814 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001815
Chris Lattnerf39f7712007-02-28 05:46:49 +00001816 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001817 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001818 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001819 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001820 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001821 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001822 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001823 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001824 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001825 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001826 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001827 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1828 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001829 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001830 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001831 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001832 RC = X86::VR64RegisterClass;
1833 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001834 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001835
Devang Patel68e6bee2011-02-21 23:21:26 +00001836 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001837 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001838
Chris Lattnerf39f7712007-02-28 05:46:49 +00001839 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1840 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1841 // right size.
1842 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001843 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001844 DAG.getValueType(VA.getValVT()));
1845 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001846 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001847 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001848 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001849 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001850
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001851 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001852 // Handle MMX values passed in XMM regs.
1853 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001854 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1855 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001856 } else
1857 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001858 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001859 } else {
1860 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001861 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001862 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001863
1864 // If value is passed via pointer - do a load.
1865 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001866 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00001867 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001868
Dan Gohman98ca4f22009-08-05 01:29:28 +00001869 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001870 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001871
Dan Gohman61a92132008-04-21 23:59:07 +00001872 // The x86-64 ABI for returning structs by value requires that we copy
1873 // the sret argument into %rax for the return. Save the argument into
1874 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001875 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001876 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1877 unsigned Reg = FuncInfo->getSRetReturnReg();
1878 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001879 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001880 FuncInfo->setSRetReturnReg(Reg);
1881 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001882 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001883 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001884 }
1885
Chris Lattnerf39f7712007-02-28 05:46:49 +00001886 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001887 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001888 if (FuncIsMadeTailCallSafe(CallConv,
1889 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001890 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001891
Evan Cheng1bc78042006-04-26 01:20:17 +00001892 // If the function takes variable number of arguments, make a frame index for
1893 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001894 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001895 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1896 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001897 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001898 }
1899 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001900 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1901
1902 // FIXME: We should really autogenerate these arrays
1903 static const unsigned GPR64ArgRegsWin64[] = {
1904 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001905 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001906 static const unsigned GPR64ArgRegs64Bit[] = {
1907 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1908 };
1909 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001910 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1911 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1912 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001913 const unsigned *GPR64ArgRegs;
1914 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001915
1916 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001917 // The XMM registers which might contain var arg parameters are shadowed
1918 // in their paired GPR. So we only need to save the GPR to their home
1919 // slots.
1920 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001921 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001922 } else {
1923 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1924 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001925
Chad Rosier30450e82011-12-22 22:35:21 +00001926 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
1927 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001928 }
1929 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1930 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001931
Devang Patel578efa92009-06-05 21:57:13 +00001932 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001933 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001934 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001935 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
1936 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001937 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00001938 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
1939 !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001940 // Kernel mode asks for SSE to be disabled, so don't push them
1941 // on the stack.
1942 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001943
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001944 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001945 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001946 // Get to the caller-allocated home save location. Add 8 to account
1947 // for the return address.
1948 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001949 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001950 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001951 // Fixup to set vararg frame on shadow area (4 x i64).
1952 if (NumIntRegs < 4)
1953 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001954 } else {
1955 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00001956 // registers, then we must store them to their spots on the stack so
1957 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001958 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1959 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1960 FuncInfo->setRegSaveFrameIndex(
1961 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001962 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001963 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001964
Gordon Henriksen86737662008-01-05 16:56:59 +00001965 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001966 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001967 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1968 getPointerTy());
1969 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001970 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001971 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1972 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001973 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001974 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001975 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001976 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001977 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001978 MachinePointerInfo::getFixedStack(
1979 FuncInfo->getRegSaveFrameIndex(), Offset),
1980 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001981 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001982 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001983 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001984
Dan Gohmanface41a2009-08-16 21:24:25 +00001985 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1986 // Now store the XMM (fp + vector) parameter registers.
1987 SmallVector<SDValue, 11> SaveXMMOps;
1988 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001989
Devang Patel68e6bee2011-02-21 23:21:26 +00001990 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001991 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1992 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001993
Dan Gohman1e93df62010-04-17 14:41:14 +00001994 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1995 FuncInfo->getRegSaveFrameIndex()));
1996 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1997 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001998
Dan Gohmanface41a2009-08-16 21:24:25 +00001999 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002000 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00002001 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002002 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2003 SaveXMMOps.push_back(Val);
2004 }
2005 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2006 MVT::Other,
2007 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002008 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002009
2010 if (!MemOps.empty())
2011 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2012 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002013 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002014 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002015
Gordon Henriksen86737662008-01-05 16:56:59 +00002016 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002017 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2018 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002019 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002020 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002021 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002022 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00002023 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00002024 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002025 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002026
Gordon Henriksen86737662008-01-05 16:56:59 +00002027 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002028 // RegSaveFrameIndex is X86-64 only.
2029 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002030 if (CallConv == CallingConv::X86_FastCall ||
2031 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002032 // fastcc functions can't have varargs.
2033 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002034 }
Evan Cheng25caf632006-05-23 21:06:34 +00002035
Rafael Espindola76927d752011-08-30 19:39:58 +00002036 FuncInfo->setArgumentStackSize(StackSize);
2037
Dan Gohman98ca4f22009-08-05 01:29:28 +00002038 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002039}
2040
Dan Gohman475871a2008-07-27 21:46:04 +00002041SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002042X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2043 SDValue StackPtr, SDValue Arg,
2044 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002045 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002046 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002047 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002048 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002049 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002050 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002051 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002052
2053 return DAG.getStore(Chain, dl, Arg, PtrOff,
2054 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002055 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002056}
2057
Bill Wendling64e87322009-01-16 19:25:27 +00002058/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002059/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002060SDValue
2061X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002062 SDValue &OutRetAddr, SDValue Chain,
2063 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00002064 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002065 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002066 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002067 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002068
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002069 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002070 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002071 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002072 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002073}
2074
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002075/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002076/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002077static SDValue
2078EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00002079 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00002080 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002081 // Store the return address to the appropriate stack slot.
2082 if (!FPDiff) return Chain;
2083 // Calculate the new stack slot for the return address.
2084 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00002085 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00002086 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00002087 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002088 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002089 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002090 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002091 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002092 return Chain;
2093}
2094
Dan Gohman98ca4f22009-08-05 01:29:28 +00002095SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00002096X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002097 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00002098 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002099 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002100 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002101 const SmallVectorImpl<ISD::InputArg> &Ins,
2102 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002103 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002104 MachineFunction &MF = DAG.getMachineFunction();
2105 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002106 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002107 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002108 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002109
Evan Cheng5f941932010-02-05 02:21:12 +00002110 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002111 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002112 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2113 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00002114 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002115
2116 // Sibcalls are automatically detected tailcalls which do not require
2117 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002118 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002119 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002120
2121 if (isTailCall)
2122 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002123 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002124
Chris Lattner29689432010-03-11 00:22:57 +00002125 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2126 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002127
Chris Lattner638402b2007-02-28 07:00:42 +00002128 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002129 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002130 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002131 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002132
2133 // Allocate shadow area for Win64
2134 if (IsWin64) {
2135 CCInfo.AllocateStack(32, 8);
2136 }
2137
Duncan Sands45907662010-10-31 13:21:44 +00002138 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002139
Chris Lattner423c5f42007-02-28 05:31:48 +00002140 // Get a count of how many bytes are to be pushed on the stack.
2141 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002142 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002143 // This is a sibcall. The memory operands are available in caller's
2144 // own caller's stack.
2145 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002146 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2147 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002148 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002149
Gordon Henriksen86737662008-01-05 16:56:59 +00002150 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002151 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002152 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002153 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002154 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2155 FPDiff = NumBytesCallerPushed - NumBytes;
2156
2157 // Set the delta of movement of the returnaddr stackslot.
2158 // But only set if delta is greater than previous delta.
2159 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2160 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2161 }
2162
Evan Chengf22f9b32010-02-06 03:28:46 +00002163 if (!IsSibcall)
2164 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002165
Dan Gohman475871a2008-07-27 21:46:04 +00002166 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002167 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002168 if (isTailCall && FPDiff)
2169 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2170 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002171
Dan Gohman475871a2008-07-27 21:46:04 +00002172 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2173 SmallVector<SDValue, 8> MemOpChains;
2174 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002175
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002176 // Walk the register/memloc assignments, inserting copies/loads. In the case
2177 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002178 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2179 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002180 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002181 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002182 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002183 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002184
Chris Lattner423c5f42007-02-28 05:31:48 +00002185 // Promote the value if needed.
2186 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002187 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002188 case CCValAssign::Full: break;
2189 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002190 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002191 break;
2192 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002193 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002194 break;
2195 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002196 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2197 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002198 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002199 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2200 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002201 } else
2202 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2203 break;
2204 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002205 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002206 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002207 case CCValAssign::Indirect: {
2208 // Store the argument.
2209 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002210 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002211 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002212 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002213 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002214 Arg = SpillSlot;
2215 break;
2216 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002217 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002218
Chris Lattner423c5f42007-02-28 05:31:48 +00002219 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002220 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2221 if (isVarArg && IsWin64) {
2222 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2223 // shadow reg if callee is a varargs function.
2224 unsigned ShadowReg = 0;
2225 switch (VA.getLocReg()) {
2226 case X86::XMM0: ShadowReg = X86::RCX; break;
2227 case X86::XMM1: ShadowReg = X86::RDX; break;
2228 case X86::XMM2: ShadowReg = X86::R8; break;
2229 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002230 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002231 if (ShadowReg)
2232 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002233 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002234 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002235 assert(VA.isMemLoc());
2236 if (StackPtr.getNode() == 0)
2237 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2238 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2239 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002240 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002241 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002242
Evan Cheng32fe1032006-05-25 00:59:30 +00002243 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002244 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002245 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002246
Evan Cheng347d5f72006-04-28 21:29:37 +00002247 // Build a sequence of copy-to-reg nodes chained together with token chain
2248 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002249 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002250 // Tail call byval lowering might overwrite argument registers so in case of
2251 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002252 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002253 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002254 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002255 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002256 InFlag = Chain.getValue(1);
2257 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002258
Chris Lattner88e1fd52009-07-09 04:24:46 +00002259 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002260 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2261 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002262 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002263 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2264 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002265 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002266 InFlag);
2267 InFlag = Chain.getValue(1);
2268 } else {
2269 // If we are tail calling and generating PIC/GOT style code load the
2270 // address of the callee into ECX. The value in ecx is used as target of
2271 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2272 // for tail calls on PIC/GOT architectures. Normally we would just put the
2273 // address of GOT into ebx and then call target@PLT. But for tail calls
2274 // ebx would be restored (since ebx is callee saved) before jumping to the
2275 // target@PLT.
2276
2277 // Note: The actual moving to ECX is done further down.
2278 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2279 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2280 !G->getGlobal()->hasProtectedVisibility())
2281 Callee = LowerGlobalAddress(Callee, DAG);
2282 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002283 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002284 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002285 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002286
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002287 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002288 // From AMD64 ABI document:
2289 // For calls that may call functions that use varargs or stdargs
2290 // (prototype-less calls or calls to functions containing ellipsis (...) in
2291 // the declaration) %al is used as hidden argument to specify the number
2292 // of SSE registers used. The contents of %al do not need to match exactly
2293 // the number of registers, but must be an ubound on the number of SSE
2294 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002295
Gordon Henriksen86737662008-01-05 16:56:59 +00002296 // Count the number of XMM registers allocated.
2297 static const unsigned XMMArgRegs[] = {
2298 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2299 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2300 };
2301 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002302 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002303 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002304
Dale Johannesendd64c412009-02-04 00:33:20 +00002305 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002306 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002307 InFlag = Chain.getValue(1);
2308 }
2309
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002310
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002311 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002312 if (isTailCall) {
2313 // Force all the incoming stack arguments to be loaded from the stack
2314 // before any new outgoing arguments are stored to the stack, because the
2315 // outgoing stack slots may alias the incoming argument stack slots, and
2316 // the alias isn't otherwise explicit. This is slightly more conservative
2317 // than necessary, because it means that each store effectively depends
2318 // on every argument instead of just those arguments it would clobber.
2319 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2320
Dan Gohman475871a2008-07-27 21:46:04 +00002321 SmallVector<SDValue, 8> MemOpChains2;
2322 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002323 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002324 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002325 InFlag = SDValue();
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002326 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002327 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2328 CCValAssign &VA = ArgLocs[i];
2329 if (VA.isRegLoc())
2330 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002331 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002332 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002333 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002334 // Create frame index.
2335 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002336 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002337 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002338 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002339
Duncan Sands276dcbd2008-03-21 09:14:45 +00002340 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002341 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002342 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002343 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002344 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002345 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002346 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002347
Dan Gohman98ca4f22009-08-05 01:29:28 +00002348 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2349 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002350 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002351 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002352 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002353 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002354 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002355 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002356 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002357 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002358 }
2359 }
2360
2361 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002362 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002363 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002364
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002365 // Copy arguments to their registers.
2366 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002367 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002368 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002369 InFlag = Chain.getValue(1);
2370 }
Dan Gohman475871a2008-07-27 21:46:04 +00002371 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002372
Gordon Henriksen86737662008-01-05 16:56:59 +00002373 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002374 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002375 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002376 }
2377
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002378 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2379 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2380 // In the 64-bit large code model, we have to make all calls
2381 // through a register, since the call instruction's 32-bit
2382 // pc-relative offset may not be large enough to hold the whole
2383 // address.
2384 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002385 // If the callee is a GlobalAddress node (quite common, every direct call
2386 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2387 // it.
2388
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002389 // We should use extra load for direct calls to dllimported functions in
2390 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002391 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002392 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002393 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002394 bool ExtraLoad = false;
2395 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002396
Chris Lattner48a7d022009-07-09 05:02:21 +00002397 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2398 // external symbols most go through the PLT in PIC mode. If the symbol
2399 // has hidden or protected visibility, or if it is static or local, then
2400 // we don't need to use the PLT - we can directly call it.
2401 if (Subtarget->isTargetELF() &&
2402 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002403 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002404 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002405 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002406 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002407 (!Subtarget->getTargetTriple().isMacOSX() ||
2408 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002409 // PC-relative references to external symbols should go through $stub,
2410 // unless we're building with the leopard linker or later, which
2411 // automatically synthesizes these stubs.
2412 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002413 } else if (Subtarget->isPICStyleRIPRel() &&
2414 isa<Function>(GV) &&
2415 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2416 // If the function is marked as non-lazy, generate an indirect call
2417 // which loads from the GOT directly. This avoids runtime overhead
2418 // at the cost of eager binding (and one extra byte of encoding).
2419 OpFlags = X86II::MO_GOTPCREL;
2420 WrapperKind = X86ISD::WrapperRIP;
2421 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002422 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002423
Devang Patel0d881da2010-07-06 22:08:15 +00002424 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002425 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002426
2427 // Add a wrapper if needed.
2428 if (WrapperKind != ISD::DELETED_NODE)
2429 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2430 // Add extra indirection if needed.
2431 if (ExtraLoad)
2432 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2433 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002434 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002435 }
Bill Wendling056292f2008-09-16 21:48:12 +00002436 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002437 unsigned char OpFlags = 0;
2438
Evan Cheng1bf891a2010-12-01 22:59:46 +00002439 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2440 // external symbols should go through the PLT.
2441 if (Subtarget->isTargetELF() &&
2442 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2443 OpFlags = X86II::MO_PLT;
2444 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002445 (!Subtarget->getTargetTriple().isMacOSX() ||
2446 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002447 // PC-relative references to external symbols should go through $stub,
2448 // unless we're building with the leopard linker or later, which
2449 // automatically synthesizes these stubs.
2450 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002451 }
Eric Christopherfd179292009-08-27 18:07:15 +00002452
Chris Lattner48a7d022009-07-09 05:02:21 +00002453 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2454 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002455 }
2456
Chris Lattnerd96d0722007-02-25 06:40:16 +00002457 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002458 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002459 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002460
Evan Chengf22f9b32010-02-06 03:28:46 +00002461 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002462 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2463 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002464 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002465 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002466
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002467 Ops.push_back(Chain);
2468 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002469
Dan Gohman98ca4f22009-08-05 01:29:28 +00002470 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002471 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002472
Gordon Henriksen86737662008-01-05 16:56:59 +00002473 // Add argument registers to the end of the list so that they are known live
2474 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002475 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2476 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2477 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002478
Evan Cheng586ccac2008-03-18 23:36:35 +00002479 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002480 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002481 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2482
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002483 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002484 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002485 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002486
Gabor Greifba36cb52008-08-28 21:40:38 +00002487 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002488 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002489
Dan Gohman98ca4f22009-08-05 01:29:28 +00002490 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002491 // We used to do:
2492 //// If this is the first return lowered for this function, add the regs
2493 //// to the liveout set for the function.
2494 // This isn't right, although it's probably harmless on x86; liveouts
2495 // should be computed from returns not tail calls. Consider a void
2496 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002497 return DAG.getNode(X86ISD::TC_RETURN, dl,
2498 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002499 }
2500
Dale Johannesenace16102009-02-03 19:33:06 +00002501 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002502 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002503
Chris Lattner2d297092006-05-23 18:50:38 +00002504 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002505 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002506 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2507 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002508 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002509 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002510 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002511 // pops the hidden struct pointer, so we have to push it back.
2512 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002513 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002514 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002515 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002516
Gordon Henriksenae636f82008-01-03 16:47:34 +00002517 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002518 if (!IsSibcall) {
2519 Chain = DAG.getCALLSEQ_END(Chain,
2520 DAG.getIntPtrConstant(NumBytes, true),
2521 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2522 true),
2523 InFlag);
2524 InFlag = Chain.getValue(1);
2525 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002526
Chris Lattner3085e152007-02-25 08:59:22 +00002527 // Handle result values, copying them out of physregs into vregs that we
2528 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002529 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2530 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002531}
2532
Evan Cheng25ab6902006-09-08 06:48:29 +00002533
2534//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002535// Fast Calling Convention (tail call) implementation
2536//===----------------------------------------------------------------------===//
2537
2538// Like std call, callee cleans arguments, convention except that ECX is
2539// reserved for storing the tail called function address. Only 2 registers are
2540// free for argument passing (inreg). Tail call optimization is performed
2541// provided:
2542// * tailcallopt is enabled
2543// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002544// On X86_64 architecture with GOT-style position independent code only local
2545// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002546// To keep the stack aligned according to platform abi the function
2547// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2548// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002549// If a tail called function callee has more arguments than the caller the
2550// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002551// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002552// original REtADDR, but before the saved framepointer or the spilled registers
2553// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2554// stack layout:
2555// arg1
2556// arg2
2557// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002558// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002559// move area ]
2560// (possible EBP)
2561// ESI
2562// EDI
2563// local1 ..
2564
2565/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2566/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002567unsigned
2568X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2569 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002570 MachineFunction &MF = DAG.getMachineFunction();
2571 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002572 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002573 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002574 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002575 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002576 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002577 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2578 // Number smaller than 12 so just add the difference.
2579 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2580 } else {
2581 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002582 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002583 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002584 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002585 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002586}
2587
Evan Cheng5f941932010-02-05 02:21:12 +00002588/// MatchingStackOffset - Return true if the given stack call argument is
2589/// already available in the same position (relatively) of the caller's
2590/// incoming argument stack.
2591static
2592bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2593 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2594 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002595 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2596 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002597 if (Arg.getOpcode() == ISD::CopyFromReg) {
2598 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002599 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002600 return false;
2601 MachineInstr *Def = MRI->getVRegDef(VR);
2602 if (!Def)
2603 return false;
2604 if (!Flags.isByVal()) {
2605 if (!TII->isLoadFromStackSlot(Def, FI))
2606 return false;
2607 } else {
2608 unsigned Opcode = Def->getOpcode();
2609 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2610 Def->getOperand(1).isFI()) {
2611 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002612 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002613 } else
2614 return false;
2615 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002616 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2617 if (Flags.isByVal())
2618 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002619 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002620 // define @foo(%struct.X* %A) {
2621 // tail call @bar(%struct.X* byval %A)
2622 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002623 return false;
2624 SDValue Ptr = Ld->getBasePtr();
2625 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2626 if (!FINode)
2627 return false;
2628 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002629 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002630 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002631 FI = FINode->getIndex();
2632 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002633 } else
2634 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002635
Evan Cheng4cae1332010-03-05 08:38:04 +00002636 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002637 if (!MFI->isFixedObjectIndex(FI))
2638 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002639 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002640}
2641
Dan Gohman98ca4f22009-08-05 01:29:28 +00002642/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2643/// for tail call optimization. Targets which want to do tail call
2644/// optimization should implement this function.
2645bool
2646X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002647 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002648 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002649 bool isCalleeStructRet,
2650 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002651 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002652 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002653 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002654 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002655 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002656 CalleeCC != CallingConv::C)
2657 return false;
2658
Evan Cheng7096ae42010-01-29 06:45:59 +00002659 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002660 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002661 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002662 CallingConv::ID CallerCC = CallerF->getCallingConv();
2663 bool CCMatch = CallerCC == CalleeCC;
2664
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002665 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002666 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002667 return true;
2668 return false;
2669 }
2670
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002671 // Look for obvious safe cases to perform tail call optimization that do not
2672 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002673
Evan Cheng2c12cb42010-03-26 16:26:03 +00002674 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2675 // emit a special epilogue.
2676 if (RegInfo->needsStackRealignment(MF))
2677 return false;
2678
Evan Chenga375d472010-03-15 18:54:48 +00002679 // Also avoid sibcall optimization if either caller or callee uses struct
2680 // return semantics.
2681 if (isCalleeStructRet || isCallerStructRet)
2682 return false;
2683
Chad Rosier2416da32011-06-24 21:15:36 +00002684 // An stdcall caller is expected to clean up its arguments; the callee
2685 // isn't going to do that.
2686 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2687 return false;
2688
Chad Rosier871f6642011-05-18 19:59:50 +00002689 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002690 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002691 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002692
2693 // Optimizing for varargs on Win64 is unlikely to be safe without
2694 // additional testing.
2695 if (Subtarget->isTargetWin64())
2696 return false;
2697
Chad Rosier871f6642011-05-18 19:59:50 +00002698 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002699 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2700 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002701
Chad Rosier871f6642011-05-18 19:59:50 +00002702 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2703 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2704 if (!ArgLocs[i].isRegLoc())
2705 return false;
2706 }
2707
Chad Rosier30450e82011-12-22 22:35:21 +00002708 // If the call result is in ST0 / ST1, it needs to be popped off the x87
2709 // stack. Therefore, if it's not used by the call it is not safe to optimize
2710 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002711 bool Unused = false;
2712 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2713 if (!Ins[i].Used) {
2714 Unused = true;
2715 break;
2716 }
2717 }
2718 if (Unused) {
2719 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002720 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2721 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002722 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002723 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002724 CCValAssign &VA = RVLocs[i];
2725 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2726 return false;
2727 }
2728 }
2729
Evan Cheng13617962010-04-30 01:12:32 +00002730 // If the calling conventions do not match, then we'd better make sure the
2731 // results are returned in the same way as what the caller expects.
2732 if (!CCMatch) {
2733 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002734 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2735 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002736 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2737
2738 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002739 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2740 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002741 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2742
2743 if (RVLocs1.size() != RVLocs2.size())
2744 return false;
2745 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2746 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2747 return false;
2748 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2749 return false;
2750 if (RVLocs1[i].isRegLoc()) {
2751 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2752 return false;
2753 } else {
2754 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2755 return false;
2756 }
2757 }
2758 }
2759
Evan Chenga6bff982010-01-30 01:22:00 +00002760 // If the callee takes no arguments then go on to check the results of the
2761 // call.
2762 if (!Outs.empty()) {
2763 // Check if stack adjustment is needed. For now, do not do this if any
2764 // argument is passed on the stack.
2765 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002766 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2767 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002768
2769 // Allocate shadow area for Win64
2770 if (Subtarget->isTargetWin64()) {
2771 CCInfo.AllocateStack(32, 8);
2772 }
2773
Duncan Sands45907662010-10-31 13:21:44 +00002774 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002775 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002776 MachineFunction &MF = DAG.getMachineFunction();
2777 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2778 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002779
2780 // Check if the arguments are already laid out in the right way as
2781 // the caller's fixed stack objects.
2782 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002783 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2784 const X86InstrInfo *TII =
2785 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002786 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2787 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002788 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002789 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002790 if (VA.getLocInfo() == CCValAssign::Indirect)
2791 return false;
2792 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002793 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2794 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002795 return false;
2796 }
2797 }
2798 }
Evan Cheng9c044672010-05-29 01:35:22 +00002799
2800 // If the tailcall address may be in a register, then make sure it's
2801 // possible to register allocate for it. In 32-bit, the call address can
2802 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002803 // callee-saved registers are restored. These happen to be the same
2804 // registers used to pass 'inreg' arguments so watch out for those.
2805 if (!Subtarget->is64Bit() &&
2806 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002807 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002808 unsigned NumInRegs = 0;
2809 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2810 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002811 if (!VA.isRegLoc())
2812 continue;
2813 unsigned Reg = VA.getLocReg();
2814 switch (Reg) {
2815 default: break;
2816 case X86::EAX: case X86::EDX: case X86::ECX:
2817 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002818 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002819 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002820 }
2821 }
2822 }
Evan Chenga6bff982010-01-30 01:22:00 +00002823 }
Evan Chengb1712452010-01-27 06:25:16 +00002824
Evan Cheng86809cc2010-02-03 03:28:02 +00002825 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002826}
2827
Dan Gohman3df24e62008-09-03 23:12:08 +00002828FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002829X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2830 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002831}
2832
2833
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002834//===----------------------------------------------------------------------===//
2835// Other Lowering Hooks
2836//===----------------------------------------------------------------------===//
2837
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002838static bool MayFoldLoad(SDValue Op) {
2839 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2840}
2841
2842static bool MayFoldIntoStore(SDValue Op) {
2843 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2844}
2845
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002846static bool isTargetShuffle(unsigned Opcode) {
2847 switch(Opcode) {
2848 default: return false;
2849 case X86ISD::PSHUFD:
2850 case X86ISD::PSHUFHW:
2851 case X86ISD::PSHUFLW:
2852 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002853 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002854 case X86ISD::SHUFPS:
2855 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002856 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002857 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002858 case X86ISD::MOVLPS:
2859 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002860 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002861 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002862 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002863 case X86ISD::MOVSS:
2864 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00002865 case X86ISD::UNPCKL:
2866 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00002867 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00002868 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002869 return true;
2870 }
2871 return false;
2872}
2873
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002874static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002875 SDValue V1, SelectionDAG &DAG) {
2876 switch(Opc) {
2877 default: llvm_unreachable("Unknown x86 shuffle node");
2878 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002879 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002880 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002881 return DAG.getNode(Opc, dl, VT, V1);
2882 }
2883
2884 return SDValue();
2885}
2886
2887static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002888 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002889 switch(Opc) {
2890 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002891 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002892 case X86ISD::PSHUFHW:
2893 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00002894 case X86ISD::VPERMILP:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002895 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2896 }
2897
2898 return SDValue();
2899}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002900
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002901static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2902 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2903 switch(Opc) {
2904 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002905 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002906 case X86ISD::SHUFPD:
2907 case X86ISD::SHUFPS:
Craig Topperec24e612011-11-30 07:47:51 +00002908 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002909 return DAG.getNode(Opc, dl, VT, V1, V2,
2910 DAG.getConstant(TargetMask, MVT::i8));
2911 }
2912 return SDValue();
2913}
2914
2915static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2916 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2917 switch(Opc) {
2918 default: llvm_unreachable("Unknown x86 shuffle node");
2919 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002920 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002921 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002922 case X86ISD::MOVLPS:
2923 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002924 case X86ISD::MOVSS:
2925 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00002926 case X86ISD::UNPCKL:
2927 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002928 return DAG.getNode(Opc, dl, VT, V1, V2);
2929 }
2930 return SDValue();
2931}
2932
Dan Gohmand858e902010-04-17 15:26:15 +00002933SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002934 MachineFunction &MF = DAG.getMachineFunction();
2935 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2936 int ReturnAddrIndex = FuncInfo->getRAIndex();
2937
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002938 if (ReturnAddrIndex == 0) {
2939 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002940 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002941 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002942 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002943 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002944 }
2945
Evan Cheng25ab6902006-09-08 06:48:29 +00002946 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002947}
2948
2949
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002950bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2951 bool hasSymbolicDisplacement) {
2952 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002953 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002954 return false;
2955
2956 // If we don't have a symbolic displacement - we don't have any extra
2957 // restrictions.
2958 if (!hasSymbolicDisplacement)
2959 return true;
2960
2961 // FIXME: Some tweaks might be needed for medium code model.
2962 if (M != CodeModel::Small && M != CodeModel::Kernel)
2963 return false;
2964
2965 // For small code model we assume that latest object is 16MB before end of 31
2966 // bits boundary. We may also accept pretty large negative constants knowing
2967 // that all objects are in the positive half of address space.
2968 if (M == CodeModel::Small && Offset < 16*1024*1024)
2969 return true;
2970
2971 // For kernel code model we know that all object resist in the negative half
2972 // of 32bits address space. We may not accept negative offsets, since they may
2973 // be just off and we may accept pretty large positive ones.
2974 if (M == CodeModel::Kernel && Offset > 0)
2975 return true;
2976
2977 return false;
2978}
2979
Evan Chengef41ff62011-06-23 17:54:54 +00002980/// isCalleePop - Determines whether the callee is required to pop its
2981/// own arguments. Callee pop is necessary to support tail calls.
2982bool X86::isCalleePop(CallingConv::ID CallingConv,
2983 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2984 if (IsVarArg)
2985 return false;
2986
2987 switch (CallingConv) {
2988 default:
2989 return false;
2990 case CallingConv::X86_StdCall:
2991 return !is64Bit;
2992 case CallingConv::X86_FastCall:
2993 return !is64Bit;
2994 case CallingConv::X86_ThisCall:
2995 return !is64Bit;
2996 case CallingConv::Fast:
2997 return TailCallOpt;
2998 case CallingConv::GHC:
2999 return TailCallOpt;
3000 }
3001}
3002
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003003/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3004/// specific condition code, returning the condition code and the LHS/RHS of the
3005/// comparison to make.
3006static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3007 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003008 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003009 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3010 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3011 // X > -1 -> X == 0, jump !sign.
3012 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003013 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003014 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3015 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003016 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00003017 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003018 // X < 1 -> X <= 0
3019 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003020 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003021 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003022 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003023
Evan Chengd9558e02006-01-06 00:43:03 +00003024 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003025 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003026 case ISD::SETEQ: return X86::COND_E;
3027 case ISD::SETGT: return X86::COND_G;
3028 case ISD::SETGE: return X86::COND_GE;
3029 case ISD::SETLT: return X86::COND_L;
3030 case ISD::SETLE: return X86::COND_LE;
3031 case ISD::SETNE: return X86::COND_NE;
3032 case ISD::SETULT: return X86::COND_B;
3033 case ISD::SETUGT: return X86::COND_A;
3034 case ISD::SETULE: return X86::COND_BE;
3035 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003036 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003037 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003038
Chris Lattner4c78e022008-12-23 23:42:27 +00003039 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003040
Chris Lattner4c78e022008-12-23 23:42:27 +00003041 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003042 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3043 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003044 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3045 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003046 }
3047
Chris Lattner4c78e022008-12-23 23:42:27 +00003048 switch (SetCCOpcode) {
3049 default: break;
3050 case ISD::SETOLT:
3051 case ISD::SETOLE:
3052 case ISD::SETUGT:
3053 case ISD::SETUGE:
3054 std::swap(LHS, RHS);
3055 break;
3056 }
3057
3058 // On a floating point condition, the flags are set as follows:
3059 // ZF PF CF op
3060 // 0 | 0 | 0 | X > Y
3061 // 0 | 0 | 1 | X < Y
3062 // 1 | 0 | 0 | X == Y
3063 // 1 | 1 | 1 | unordered
3064 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003065 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003066 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003067 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003068 case ISD::SETOLT: // flipped
3069 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003070 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003071 case ISD::SETOLE: // flipped
3072 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003073 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003074 case ISD::SETUGT: // flipped
3075 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003076 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003077 case ISD::SETUGE: // flipped
3078 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003079 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003080 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003081 case ISD::SETNE: return X86::COND_NE;
3082 case ISD::SETUO: return X86::COND_P;
3083 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003084 case ISD::SETOEQ:
3085 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003086 }
Evan Chengd9558e02006-01-06 00:43:03 +00003087}
3088
Evan Cheng4a460802006-01-11 00:33:36 +00003089/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3090/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003091/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003092static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003093 switch (X86CC) {
3094 default:
3095 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003096 case X86::COND_B:
3097 case X86::COND_BE:
3098 case X86::COND_E:
3099 case X86::COND_P:
3100 case X86::COND_A:
3101 case X86::COND_AE:
3102 case X86::COND_NE:
3103 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003104 return true;
3105 }
3106}
3107
Evan Chengeb2f9692009-10-27 19:56:55 +00003108/// isFPImmLegal - Returns true if the target can instruction select the
3109/// specified FP immediate natively. If false, the legalizer will
3110/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003111bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003112 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3113 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3114 return true;
3115 }
3116 return false;
3117}
3118
Nate Begeman9008ca62009-04-27 18:41:29 +00003119/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3120/// the specified range (L, H].
3121static bool isUndefOrInRange(int Val, int Low, int Hi) {
3122 return (Val < 0) || (Val >= Low && Val < Hi);
3123}
3124
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00003125/// isUndefOrInRange - Return true if every element in Mask, begining
3126/// from position Pos and ending in Pos+Size, falls within the specified
3127/// range (L, L+Pos]. or is undef.
3128static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3129 int Pos, int Size, int Low, int Hi) {
3130 for (int i = Pos, e = Pos+Size; i != e; ++i)
3131 if (!isUndefOrInRange(Mask[i], Low, Hi))
3132 return false;
3133 return true;
3134}
3135
Nate Begeman9008ca62009-04-27 18:41:29 +00003136/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3137/// specified value.
3138static bool isUndefOrEqual(int Val, int CmpVal) {
3139 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003140 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003141 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003142}
3143
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003144/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3145/// from position Pos and ending in Pos+Size, falls within the specified
3146/// sequential range (L, L+Pos]. or is undef.
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003147static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3148 int Pos, int Size, int Low) {
3149 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3150 if (!isUndefOrEqual(Mask[i], Low))
3151 return false;
3152 return true;
3153}
3154
Nate Begeman9008ca62009-04-27 18:41:29 +00003155/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3156/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3157/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003158static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003159 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003160 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003161 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003162 return (Mask[0] < 2 && Mask[1] < 2);
3163 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003164}
3165
Nate Begeman9008ca62009-04-27 18:41:29 +00003166bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003167 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003168 N->getMask(M);
3169 return ::isPSHUFDMask(M, N->getValueType(0));
3170}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003171
Nate Begeman9008ca62009-04-27 18:41:29 +00003172/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3173/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003174static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003175 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003176 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003177
Nate Begeman9008ca62009-04-27 18:41:29 +00003178 // Lower quadword copied in order or undef.
3179 for (int i = 0; i != 4; ++i)
3180 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003181 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003182
Evan Cheng506d3df2006-03-29 23:07:14 +00003183 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003184 for (int i = 4; i != 8; ++i)
3185 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003186 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003187
Evan Cheng506d3df2006-03-29 23:07:14 +00003188 return true;
3189}
3190
Nate Begeman9008ca62009-04-27 18:41:29 +00003191bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003192 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003193 N->getMask(M);
3194 return ::isPSHUFHWMask(M, N->getValueType(0));
3195}
Evan Cheng506d3df2006-03-29 23:07:14 +00003196
Nate Begeman9008ca62009-04-27 18:41:29 +00003197/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3198/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003199static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003200 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003201 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003202
Rafael Espindola15684b22009-04-24 12:40:33 +00003203 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003204 for (int i = 4; i != 8; ++i)
3205 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003206 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003207
Rafael Espindola15684b22009-04-24 12:40:33 +00003208 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003209 for (int i = 0; i != 4; ++i)
3210 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003211 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003212
Rafael Espindola15684b22009-04-24 12:40:33 +00003213 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003214}
3215
Nate Begeman9008ca62009-04-27 18:41:29 +00003216bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003217 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003218 N->getMask(M);
3219 return ::isPSHUFLWMask(M, N->getValueType(0));
3220}
3221
Nate Begemana09008b2009-10-19 02:17:23 +00003222/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3223/// is suitable for input to PALIGNR.
3224static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00003225 bool hasSSSE3OrAVX) {
Nate Begemana09008b2009-10-19 02:17:23 +00003226 int i, e = VT.getVectorNumElements();
Craig Topper1dc0fbc2011-12-05 07:27:14 +00003227 if (VT.getSizeInBits() != 128)
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003228 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003229
Nate Begemana09008b2009-10-19 02:17:23 +00003230 // Do not handle v2i64 / v2f64 shuffles with palignr.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00003231 if (e < 4 || !hasSSSE3OrAVX)
Nate Begemana09008b2009-10-19 02:17:23 +00003232 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003233
Nate Begemana09008b2009-10-19 02:17:23 +00003234 for (i = 0; i != e; ++i)
3235 if (Mask[i] >= 0)
3236 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003237
Nate Begemana09008b2009-10-19 02:17:23 +00003238 // All undef, not a palignr.
3239 if (i == e)
3240 return false;
3241
Eli Friedman63f8dde2011-07-25 21:36:45 +00003242 // Make sure we're shifting in the right direction.
3243 if (Mask[i] <= i)
3244 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003245
3246 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003247
Nate Begemana09008b2009-10-19 02:17:23 +00003248 // Check the rest of the elements to see if they are consecutive.
3249 for (++i; i != e; ++i) {
3250 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003251 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003252 return false;
3253 }
3254 return true;
3255}
3256
Craig Topper9d7025b2011-11-27 21:41:12 +00003257/// isVSHUFPYMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003258/// specifies a shuffle of elements that is suitable for input to 256-bit
3259/// VSHUFPSY.
Craig Topper9d7025b2011-11-27 21:41:12 +00003260static bool isVSHUFPYMask(const SmallVectorImpl<int> &Mask, EVT VT,
Craig Topper1ff73d72011-12-06 04:59:07 +00003261 bool HasAVX, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003262 int NumElems = VT.getVectorNumElements();
3263
Craig Topper71c4c122011-11-28 01:14:24 +00003264 if (!HasAVX || VT.getSizeInBits() != 256)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003265 return false;
3266
Craig Topper9d7025b2011-11-27 21:41:12 +00003267 if (NumElems != 4 && NumElems != 8)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003268 return false;
3269
3270 // VSHUFPSY divides the resulting vector into 4 chunks.
3271 // The sources are also splitted into 4 chunks, and each destination
3272 // chunk must come from a different source chunk.
3273 //
3274 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3275 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3276 //
3277 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3278 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3279 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003280 // VSHUFPDY divides the resulting vector into 4 chunks.
3281 // The sources are also splitted into 4 chunks, and each destination
3282 // chunk must come from a different source chunk.
3283 //
3284 // SRC1 => X3 X2 X1 X0
3285 // SRC2 => Y3 Y2 Y1 Y0
3286 //
3287 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3288 //
Craig Topper1ff73d72011-12-06 04:59:07 +00003289 unsigned QuarterSize = NumElems/4;
3290 unsigned HalfSize = QuarterSize*2;
3291 for (unsigned l = 0; l != 2; ++l) {
3292 unsigned LaneStart = l*HalfSize;
3293 for (unsigned s = 0; s != 2; ++s) {
3294 unsigned QuarterStart = s*QuarterSize;
3295 unsigned Src = (Commuted) ? (1-s) : s;
3296 unsigned SrcStart = Src*NumElems + LaneStart;
3297 for (unsigned i = 0; i != QuarterSize; ++i) {
3298 int Idx = Mask[i+QuarterStart+LaneStart];
3299 if (!isUndefOrInRange(Idx, SrcStart, SrcStart+HalfSize))
3300 return false;
Chad Rosier30450e82011-12-22 22:35:21 +00003301 // For VSHUFPSY, the mask of the second half must be the same as the
3302 // first but with the appropriate offsets. This works in the same way as
Craig Topper1ff73d72011-12-06 04:59:07 +00003303 // VPERMILPS works with masks.
3304 if (NumElems == 4 || l == 0 || Mask[i+QuarterStart] < 0)
3305 continue;
3306 if (!isUndefOrEqual(Idx, Mask[i+QuarterStart]+HalfSize))
3307 return false;
3308 }
3309 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003310 }
3311
3312 return true;
3313}
3314
Craig Topper9d7025b2011-11-27 21:41:12 +00003315/// getShuffleVSHUFPYImmediate - Return the appropriate immediate to shuffle
3316/// the specified VECTOR_MASK mask with VSHUFPSY/VSHUFPDY instructions.
3317static unsigned getShuffleVSHUFPYImmediate(SDNode *N) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003318 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3319 EVT VT = SVOp->getValueType(0);
3320 int NumElems = VT.getVectorNumElements();
3321
Craig Topper9d7025b2011-11-27 21:41:12 +00003322 assert(VT.getSizeInBits() == 256 && "Only supports 256-bit types");
3323 assert((NumElems == 4 || NumElems == 8) && "Only supports v4 and v8 types");
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003324
3325 int HalfSize = NumElems/2;
Craig Topper9d7025b2011-11-27 21:41:12 +00003326 unsigned Mul = (NumElems == 8) ? 2 : 1;
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003327 unsigned Mask = 0;
Craig Topper71c4c122011-11-28 01:14:24 +00003328 for (int i = 0; i != NumElems; ++i) {
Craig Topper9d7025b2011-11-27 21:41:12 +00003329 int Elt = SVOp->getMaskElt(i);
3330 if (Elt < 0)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003331 continue;
Craig Topper9d7025b2011-11-27 21:41:12 +00003332 Elt %= HalfSize;
3333 unsigned Shamt = i;
3334 // For VSHUFPSY, the mask of the first half must be equal to the second one.
3335 if (NumElems == 8) Shamt %= HalfSize;
3336 Mask |= Elt << (Shamt*Mul);
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003337 }
3338
3339 return Mask;
3340}
3341
Elena Demikhovsky52a35a82011-11-23 10:23:16 +00003342/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3343/// the two vector operands have swapped position.
Craig Topperbeabc6c2011-12-05 06:56:46 +00003344static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3345 unsigned NumElems) {
Elena Demikhovsky52a35a82011-11-23 10:23:16 +00003346 for (unsigned i = 0; i != NumElems; ++i) {
3347 int idx = Mask[i];
3348 if (idx < 0)
3349 continue;
3350 else if (idx < (int)NumElems)
3351 Mask[i] = idx + NumElems;
3352 else
3353 Mask[i] = idx - NumElems;
3354 }
3355}
3356
Evan Cheng14aed5e2006-03-24 01:18:28 +00003357/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003358/// specifies a shuffle of elements that is suitable for input to 128-bit
Craig Topper1ff73d72011-12-06 04:59:07 +00003359/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3360/// reverse of what x86 shuffles want.
3361static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT,
3362 bool Commuted = false) {
3363 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003364
3365 if (VT.getSizeInBits() != 128)
3366 return false;
3367
Nate Begeman9008ca62009-04-27 18:41:29 +00003368 if (NumElems != 2 && NumElems != 4)
3369 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003370
Craig Topper1ff73d72011-12-06 04:59:07 +00003371 unsigned Half = NumElems / 2;
3372 unsigned SrcStart = Commuted ? NumElems : 0;
3373 for (unsigned i = 0; i != Half; ++i)
3374 if (!isUndefOrInRange(Mask[i], SrcStart, SrcStart+NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003375 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003376 SrcStart = Commuted ? 0 : NumElems;
3377 for (unsigned i = Half; i != NumElems; ++i)
3378 if (!isUndefOrInRange(Mask[i], SrcStart, SrcStart+NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003379 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003380
Evan Cheng14aed5e2006-03-24 01:18:28 +00003381 return true;
3382}
3383
Nate Begeman9008ca62009-04-27 18:41:29 +00003384bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3385 SmallVector<int, 8> M;
3386 N->getMask(M);
3387 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003388}
3389
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003390/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3391/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003392bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003393 EVT VT = N->getValueType(0);
3394 unsigned NumElems = VT.getVectorNumElements();
3395
3396 if (VT.getSizeInBits() != 128)
3397 return false;
3398
3399 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003400 return false;
3401
Evan Cheng2064a2b2006-03-28 06:50:32 +00003402 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003403 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3404 isUndefOrEqual(N->getMaskElt(1), 7) &&
3405 isUndefOrEqual(N->getMaskElt(2), 2) &&
3406 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003407}
3408
Nate Begeman0b10b912009-11-07 23:17:15 +00003409/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3410/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3411/// <2, 3, 2, 3>
3412bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003413 EVT VT = N->getValueType(0);
3414 unsigned NumElems = VT.getVectorNumElements();
3415
3416 if (VT.getSizeInBits() != 128)
3417 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003418
Nate Begeman0b10b912009-11-07 23:17:15 +00003419 if (NumElems != 4)
3420 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003421
Nate Begeman0b10b912009-11-07 23:17:15 +00003422 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003423 isUndefOrEqual(N->getMaskElt(1), 3) &&
3424 isUndefOrEqual(N->getMaskElt(2), 2) &&
3425 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003426}
3427
Evan Cheng5ced1d82006-04-06 23:23:56 +00003428/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3429/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003430bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3431 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003432
Evan Cheng5ced1d82006-04-06 23:23:56 +00003433 if (NumElems != 2 && NumElems != 4)
3434 return false;
3435
Evan Chengc5cdff22006-04-07 21:53:05 +00003436 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003437 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003438 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003439
Evan Chengc5cdff22006-04-07 21:53:05 +00003440 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003441 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003442 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003443
3444 return true;
3445}
3446
Nate Begeman0b10b912009-11-07 23:17:15 +00003447/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3448/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3449bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003450 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003451
David Greenea20244d2011-03-02 17:23:43 +00003452 if ((NumElems != 2 && NumElems != 4)
3453 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003454 return false;
3455
Evan Chengc5cdff22006-04-07 21:53:05 +00003456 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003457 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003458 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003459
Nate Begeman9008ca62009-04-27 18:41:29 +00003460 for (unsigned i = 0; i < NumElems/2; ++i)
3461 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003462 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003463
3464 return true;
3465}
3466
Evan Cheng0038e592006-03-28 00:39:58 +00003467/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3468/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003469static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Craig Topper6347e862011-11-21 06:57:39 +00003470 bool HasAVX2, bool V2IsSplat = false) {
Craig Topper94438ba2011-12-16 08:06:31 +00003471 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003472
3473 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3474 "Unsupported vector type for unpckh");
3475
Craig Topper6347e862011-11-21 06:57:39 +00003476 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
Craig Topper6fa583d2011-11-21 08:26:50 +00003477 (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003478 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003479
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003480 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3481 // independently on 128-bit lanes.
3482 unsigned NumLanes = VT.getSizeInBits()/128;
3483 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003484
Craig Topper94438ba2011-12-16 08:06:31 +00003485 for (unsigned l = 0; l != NumLanes; ++l) {
3486 for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3487 i != (l+1)*NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003488 i += 2, ++j) {
3489 int BitI = Mask[i];
3490 int BitI1 = Mask[i+1];
3491 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003492 return false;
David Greenea20244d2011-03-02 17:23:43 +00003493 if (V2IsSplat) {
3494 if (!isUndefOrEqual(BitI1, NumElts))
3495 return false;
3496 } else {
3497 if (!isUndefOrEqual(BitI1, j + NumElts))
3498 return false;
3499 }
Evan Cheng39623da2006-04-20 08:58:49 +00003500 }
Evan Cheng0038e592006-03-28 00:39:58 +00003501 }
David Greenea20244d2011-03-02 17:23:43 +00003502
Evan Cheng0038e592006-03-28 00:39:58 +00003503 return true;
3504}
3505
Craig Topper6347e862011-11-21 06:57:39 +00003506bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool HasAVX2, bool V2IsSplat) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003507 SmallVector<int, 8> M;
3508 N->getMask(M);
Craig Topper6347e862011-11-21 06:57:39 +00003509 return ::isUNPCKLMask(M, N->getValueType(0), HasAVX2, V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003510}
3511
Evan Cheng4fcb9222006-03-28 02:43:26 +00003512/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3513/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003514static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Craig Topper6347e862011-11-21 06:57:39 +00003515 bool HasAVX2, bool V2IsSplat = false) {
Craig Topper94438ba2011-12-16 08:06:31 +00003516 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003517
3518 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3519 "Unsupported vector type for unpckh");
3520
Craig Topper6347e862011-11-21 06:57:39 +00003521 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
Craig Topper6fa583d2011-11-21 08:26:50 +00003522 (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003523 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003524
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003525 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3526 // independently on 128-bit lanes.
3527 unsigned NumLanes = VT.getSizeInBits()/128;
3528 unsigned NumLaneElts = NumElts/NumLanes;
3529
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003530 for (unsigned l = 0; l != NumLanes; ++l) {
Craig Topper94438ba2011-12-16 08:06:31 +00003531 for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3532 i != (l+1)*NumLaneElts; i += 2, ++j) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003533 int BitI = Mask[i];
3534 int BitI1 = Mask[i+1];
3535 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003536 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003537 if (V2IsSplat) {
3538 if (isUndefOrEqual(BitI1, NumElts))
3539 return false;
3540 } else {
3541 if (!isUndefOrEqual(BitI1, j+NumElts))
3542 return false;
3543 }
Evan Cheng39623da2006-04-20 08:58:49 +00003544 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003545 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003546 return true;
3547}
3548
Craig Topper6347e862011-11-21 06:57:39 +00003549bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool HasAVX2, bool V2IsSplat) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003550 SmallVector<int, 8> M;
3551 N->getMask(M);
Craig Topper6347e862011-11-21 06:57:39 +00003552 return ::isUNPCKHMask(M, N->getValueType(0), HasAVX2, V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003553}
3554
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003555/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3556/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3557/// <0, 0, 1, 1>
Craig Topper94438ba2011-12-16 08:06:31 +00003558static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3559 bool HasAVX2) {
3560 unsigned NumElts = VT.getVectorNumElements();
3561
3562 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3563 "Unsupported vector type for unpckh");
3564
3565 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3566 (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003567 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003568
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003569 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3570 // FIXME: Need a better way to get rid of this, there's no latency difference
3571 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3572 // the former later. We should also remove the "_undef" special mask.
Craig Topper94438ba2011-12-16 08:06:31 +00003573 if (NumElts == 4 && VT.getSizeInBits() == 256)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003574 return false;
3575
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003576 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3577 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00003578 unsigned NumLanes = VT.getSizeInBits()/128;
3579 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003580
Craig Topper94438ba2011-12-16 08:06:31 +00003581 for (unsigned l = 0; l != NumLanes; ++l) {
3582 for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3583 i != (l+1)*NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003584 i += 2, ++j) {
3585 int BitI = Mask[i];
3586 int BitI1 = Mask[i+1];
3587
3588 if (!isUndefOrEqual(BitI, j))
3589 return false;
3590 if (!isUndefOrEqual(BitI1, j))
3591 return false;
3592 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003593 }
David Greenea20244d2011-03-02 17:23:43 +00003594
Rafael Espindola15684b22009-04-24 12:40:33 +00003595 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003596}
3597
Craig Topper94438ba2011-12-16 08:06:31 +00003598bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N, bool HasAVX2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003599 SmallVector<int, 8> M;
3600 N->getMask(M);
Craig Topper94438ba2011-12-16 08:06:31 +00003601 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0), HasAVX2);
Nate Begeman9008ca62009-04-27 18:41:29 +00003602}
3603
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003604/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3605/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3606/// <2, 2, 3, 3>
Craig Topper94438ba2011-12-16 08:06:31 +00003607static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3608 bool HasAVX2) {
3609 unsigned NumElts = VT.getVectorNumElements();
3610
3611 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3612 "Unsupported vector type for unpckh");
3613
3614 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3615 (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003616 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003617
Craig Topper94438ba2011-12-16 08:06:31 +00003618 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3619 // independently on 128-bit lanes.
3620 unsigned NumLanes = VT.getSizeInBits()/128;
3621 unsigned NumLaneElts = NumElts/NumLanes;
3622
3623 for (unsigned l = 0; l != NumLanes; ++l) {
3624 for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3625 i != (l+1)*NumLaneElts; i += 2, ++j) {
3626 int BitI = Mask[i];
3627 int BitI1 = Mask[i+1];
3628 if (!isUndefOrEqual(BitI, j))
3629 return false;
3630 if (!isUndefOrEqual(BitI1, j))
3631 return false;
3632 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003633 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003634 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003635}
3636
Craig Topper94438ba2011-12-16 08:06:31 +00003637bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N, bool HasAVX2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003638 SmallVector<int, 8> M;
3639 N->getMask(M);
Craig Topper94438ba2011-12-16 08:06:31 +00003640 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0), HasAVX2);
Nate Begeman9008ca62009-04-27 18:41:29 +00003641}
3642
Evan Cheng017dcc62006-04-21 01:05:10 +00003643/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3644/// specifies a shuffle of elements that is suitable for input to MOVSS,
3645/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003646static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003647 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003648 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003649
3650 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003651
Nate Begeman9008ca62009-04-27 18:41:29 +00003652 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003653 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003654
Nate Begeman9008ca62009-04-27 18:41:29 +00003655 for (int i = 1; i < NumElts; ++i)
3656 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003657 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003658
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003659 return true;
3660}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003661
Nate Begeman9008ca62009-04-27 18:41:29 +00003662bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3663 SmallVector<int, 8> M;
3664 N->getMask(M);
3665 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003666}
3667
Craig Topper70b883b2011-11-28 10:14:51 +00003668/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003669/// as permutations between 128-bit chunks or halves. As an example: this
3670/// shuffle bellow:
3671/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3672/// The first half comes from the second half of V1 and the second half from the
3673/// the second half of V2.
Craig Topper70b883b2011-11-28 10:14:51 +00003674static bool isVPERM2X128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3675 bool HasAVX) {
3676 if (!HasAVX || VT.getSizeInBits() != 256)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003677 return false;
3678
3679 // The shuffle result is divided into half A and half B. In total the two
3680 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3681 // B must come from C, D, E or F.
3682 int HalfSize = VT.getVectorNumElements()/2;
3683 bool MatchA = false, MatchB = false;
3684
3685 // Check if A comes from one of C, D, E, F.
3686 for (int Half = 0; Half < 4; ++Half) {
3687 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3688 MatchA = true;
3689 break;
3690 }
3691 }
3692
3693 // Check if B comes from one of C, D, E, F.
3694 for (int Half = 0; Half < 4; ++Half) {
3695 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3696 MatchB = true;
3697 break;
3698 }
3699 }
3700
3701 return MatchA && MatchB;
3702}
3703
Craig Topper70b883b2011-11-28 10:14:51 +00003704/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
3705/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00003706static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003707 EVT VT = SVOp->getValueType(0);
3708
3709 int HalfSize = VT.getVectorNumElements()/2;
3710
3711 int FstHalf = 0, SndHalf = 0;
3712 for (int i = 0; i < HalfSize; ++i) {
3713 if (SVOp->getMaskElt(i) > 0) {
3714 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3715 break;
3716 }
3717 }
3718 for (int i = HalfSize; i < HalfSize*2; ++i) {
3719 if (SVOp->getMaskElt(i) > 0) {
3720 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3721 break;
3722 }
3723 }
3724
3725 return (FstHalf | (SndHalf << 4));
3726}
3727
Craig Topper70b883b2011-11-28 10:14:51 +00003728/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003729/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3730/// Note that VPERMIL mask matching is different depending whether theunderlying
3731/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3732/// to the same elements of the low, but to the higher half of the source.
3733/// In VPERMILPD the two lanes could be shuffled independently of each other
3734/// with the same restriction that lanes can't be crossed.
Craig Topper70b883b2011-11-28 10:14:51 +00003735static bool isVPERMILPMask(const SmallVectorImpl<int> &Mask, EVT VT,
3736 bool HasAVX) {
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003737 int NumElts = VT.getVectorNumElements();
3738 int NumLanes = VT.getSizeInBits()/128;
3739
Craig Topper70b883b2011-11-28 10:14:51 +00003740 if (!HasAVX)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003741 return false;
3742
Craig Topper70b883b2011-11-28 10:14:51 +00003743 // Only match 256-bit with 32/64-bit types
3744 if (VT.getSizeInBits() != 256 || (NumElts != 4 && NumElts != 8))
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003745 return false;
3746
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003747 int LaneSize = NumElts/NumLanes;
Craig Topper70b883b2011-11-28 10:14:51 +00003748 for (int l = 0; l != NumLanes; ++l) {
3749 int LaneStart = l*LaneSize;
3750 for (int i = 0; i != LaneSize; ++i) {
3751 if (!isUndefOrInRange(Mask[i+LaneStart], LaneStart, LaneStart+LaneSize))
3752 return false;
3753 if (NumElts == 4 || l == 0)
3754 continue;
3755 // VPERMILPS handling
3756 if (Mask[i] < 0)
3757 continue;
3758 if (!isUndefOrEqual(Mask[i+LaneStart], Mask[i]+LaneSize))
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003759 return false;
3760 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003761 }
3762
3763 return true;
3764}
3765
Craig Topper70b883b2011-11-28 10:14:51 +00003766/// getShuffleVPERMILPImmediate - Return the appropriate immediate to shuffle
3767/// the specified VECTOR_MASK mask with VPERMILPS/D* instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00003768static unsigned getShuffleVPERMILPImmediate(ShuffleVectorSDNode *SVOp) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003769 EVT VT = SVOp->getValueType(0);
3770
3771 int NumElts = VT.getVectorNumElements();
3772 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003773 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003774
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003775 // Although the mask is equal for both lanes do it twice to get the cases
3776 // where a mask will match because the same mask element is undef on the
3777 // first half but valid on the second. This would get pathological cases
3778 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Craig Topper70b883b2011-11-28 10:14:51 +00003779 unsigned Shift = (LaneSize == 4) ? 2 : 1;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003780 unsigned Mask = 0;
Craig Topper70b883b2011-11-28 10:14:51 +00003781 for (int i = 0; i != NumElts; ++i) {
3782 int MaskElt = SVOp->getMaskElt(i);
3783 if (MaskElt < 0)
3784 continue;
3785 MaskElt %= LaneSize;
3786 unsigned Shamt = i;
3787 // VPERMILPSY, the mask of the first half must be equal to the second one
3788 if (NumElts == 8) Shamt %= LaneSize;
3789 Mask |= MaskElt << (Shamt*Shift);
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003790 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003791
3792 return Mask;
3793}
3794
Evan Cheng017dcc62006-04-21 01:05:10 +00003795/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3796/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003797/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003798static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003799 bool V2IsSplat = false, bool V2IsUndef = false) {
3800 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003801 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003802 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003803
Nate Begeman9008ca62009-04-27 18:41:29 +00003804 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003805 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003806
Nate Begeman9008ca62009-04-27 18:41:29 +00003807 for (int i = 1; i < NumOps; ++i)
3808 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3809 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3810 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003811 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003812
Evan Cheng39623da2006-04-20 08:58:49 +00003813 return true;
3814}
3815
Nate Begeman9008ca62009-04-27 18:41:29 +00003816static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003817 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003818 SmallVector<int, 8> M;
3819 N->getMask(M);
3820 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003821}
3822
Evan Chengd9539472006-04-14 21:59:03 +00003823/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3824/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003825/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3826bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3827 const X86Subtarget *Subtarget) {
Craig Topperc0d82852011-11-22 00:44:41 +00003828 if (!Subtarget->hasSSE3orAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003829 return false;
3830
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003831 // The second vector must be undef
3832 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3833 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003834
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003835 EVT VT = N->getValueType(0);
3836 unsigned NumElems = VT.getVectorNumElements();
3837
3838 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3839 (VT.getSizeInBits() == 256 && NumElems != 8))
3840 return false;
3841
3842 // "i+1" is the value the indexed mask element must have
3843 for (unsigned i = 0; i < NumElems; i += 2)
3844 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3845 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003846 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003847
3848 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003849}
3850
3851/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3852/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003853/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3854bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3855 const X86Subtarget *Subtarget) {
Craig Topperc0d82852011-11-22 00:44:41 +00003856 if (!Subtarget->hasSSE3orAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003857 return false;
3858
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003859 // The second vector must be undef
3860 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3861 return false;
3862
3863 EVT VT = N->getValueType(0);
3864 unsigned NumElems = VT.getVectorNumElements();
3865
3866 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3867 (VT.getSizeInBits() == 256 && NumElems != 8))
3868 return false;
3869
3870 // "i" is the value the indexed mask element must have
3871 for (unsigned i = 0; i < NumElems; i += 2)
3872 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3873 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003874 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003875
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003876 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003877}
3878
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003879/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
3880/// specifies a shuffle of elements that is suitable for input to 256-bit
3881/// version of MOVDDUP.
Craig Topperbeabc6c2011-12-05 06:56:46 +00003882static bool isMOVDDUPYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3883 bool HasAVX) {
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003884 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003885
Craig Topperbeabc6c2011-12-05 06:56:46 +00003886 if (!HasAVX || VT.getSizeInBits() != 256 || NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003887 return false;
3888
3889 for (int i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00003890 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003891 return false;
3892 for (int i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00003893 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003894 return false;
3895 return true;
3896}
3897
Evan Cheng0b457f02008-09-25 20:50:48 +00003898/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003899/// specifies a shuffle of elements that is suitable for input to 128-bit
3900/// version of MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003901bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003902 EVT VT = N->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00003903
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003904 if (VT.getSizeInBits() != 128)
3905 return false;
3906
3907 int e = VT.getVectorNumElements() / 2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003908 for (int i = 0; i < e; ++i)
3909 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003910 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003911 for (int i = 0; i < e; ++i)
3912 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003913 return false;
3914 return true;
3915}
3916
David Greenec38a03e2011-02-03 15:50:00 +00003917/// isVEXTRACTF128Index - Return true if the specified
3918/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3919/// suitable for input to VEXTRACTF128.
3920bool X86::isVEXTRACTF128Index(SDNode *N) {
3921 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3922 return false;
3923
3924 // The index should be aligned on a 128-bit boundary.
3925 uint64_t Index =
3926 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3927
3928 unsigned VL = N->getValueType(0).getVectorNumElements();
3929 unsigned VBits = N->getValueType(0).getSizeInBits();
3930 unsigned ElSize = VBits / VL;
3931 bool Result = (Index * ElSize) % 128 == 0;
3932
3933 return Result;
3934}
3935
David Greeneccacdc12011-02-04 16:08:29 +00003936/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3937/// operand specifies a subvector insert that is suitable for input to
3938/// VINSERTF128.
3939bool X86::isVINSERTF128Index(SDNode *N) {
3940 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3941 return false;
3942
3943 // The index should be aligned on a 128-bit boundary.
3944 uint64_t Index =
3945 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3946
3947 unsigned VL = N->getValueType(0).getVectorNumElements();
3948 unsigned VBits = N->getValueType(0).getSizeInBits();
3949 unsigned ElSize = VBits / VL;
3950 bool Result = (Index * ElSize) % 128 == 0;
3951
3952 return Result;
3953}
3954
Evan Cheng63d33002006-03-22 08:01:21 +00003955/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003956/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003957unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003958 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3959 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3960
Evan Chengb9df0ca2006-03-22 02:53:00 +00003961 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3962 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003963 for (int i = 0; i < NumOperands; ++i) {
3964 int Val = SVOp->getMaskElt(NumOperands-i-1);
3965 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003966 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003967 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003968 if (i != NumOperands - 1)
3969 Mask <<= Shift;
3970 }
Evan Cheng63d33002006-03-22 08:01:21 +00003971 return Mask;
3972}
3973
Evan Cheng506d3df2006-03-29 23:07:14 +00003974/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003975/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003976unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003977 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003978 unsigned Mask = 0;
3979 // 8 nodes, but we only care about the last 4.
3980 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003981 int Val = SVOp->getMaskElt(i);
3982 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003983 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003984 if (i != 4)
3985 Mask <<= 2;
3986 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003987 return Mask;
3988}
3989
3990/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003991/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003992unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003993 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003994 unsigned Mask = 0;
3995 // 8 nodes, but we only care about the first 4.
3996 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003997 int Val = SVOp->getMaskElt(i);
3998 if (Val >= 0)
3999 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00004000 if (i != 0)
4001 Mask <<= 2;
4002 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004003 return Mask;
4004}
4005
Nate Begemana09008b2009-10-19 02:17:23 +00004006/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4007/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004008static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4009 EVT VT = SVOp->getValueType(0);
4010 unsigned EltSize = VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004011 int Val = 0;
4012
4013 unsigned i, e;
Craig Topperd93e4c32011-12-11 19:12:35 +00004014 for (i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004015 Val = SVOp->getMaskElt(i);
4016 if (Val >= 0)
4017 break;
4018 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00004019 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004020 return (Val - i) * EltSize;
4021}
4022
David Greenec38a03e2011-02-03 15:50:00 +00004023/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4024/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4025/// instructions.
4026unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4027 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4028 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4029
4030 uint64_t Index =
4031 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4032
4033 EVT VecVT = N->getOperand(0).getValueType();
4034 EVT ElVT = VecVT.getVectorElementType();
4035
4036 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004037 return Index / NumElemsPerChunk;
4038}
4039
David Greeneccacdc12011-02-04 16:08:29 +00004040/// getInsertVINSERTF128Immediate - Return the appropriate immediate
4041/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4042/// instructions.
4043unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4044 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4045 llvm_unreachable("Illegal insert subvector for VINSERTF128");
4046
4047 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004048 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004049
4050 EVT VecVT = N->getValueType(0);
4051 EVT ElVT = VecVT.getVectorElementType();
4052
4053 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004054 return Index / NumElemsPerChunk;
4055}
4056
Evan Cheng37b73872009-07-30 08:33:02 +00004057/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4058/// constant +0.0.
4059bool X86::isZeroNode(SDValue Elt) {
4060 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00004061 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00004062 (isa<ConstantFPSDNode>(Elt) &&
4063 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4064}
4065
Nate Begeman9008ca62009-04-27 18:41:29 +00004066/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4067/// their permute mask.
4068static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4069 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004070 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004071 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004072 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004073
Nate Begeman5a5ca152009-04-29 05:20:52 +00004074 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004075 int idx = SVOp->getMaskElt(i);
4076 if (idx < 0)
4077 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004078 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00004079 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004080 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004081 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004082 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004083 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4084 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004085}
4086
Evan Cheng533a0aa2006-04-19 20:35:22 +00004087/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4088/// match movhlps. The lower half elements should come from upper half of
4089/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004090/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00004091static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004092 EVT VT = Op->getValueType(0);
4093 if (VT.getSizeInBits() != 128)
4094 return false;
4095 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004096 return false;
4097 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004098 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004099 return false;
4100 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004101 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004102 return false;
4103 return true;
4104}
4105
Evan Cheng5ced1d82006-04-06 23:23:56 +00004106/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004107/// is promoted to a vector. It also returns the LoadSDNode by reference if
4108/// required.
4109static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004110 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4111 return false;
4112 N = N->getOperand(0).getNode();
4113 if (!ISD::isNON_EXTLoad(N))
4114 return false;
4115 if (LD)
4116 *LD = cast<LoadSDNode>(N);
4117 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004118}
4119
Dan Gohman65fd6562011-11-03 21:49:52 +00004120// Test whether the given value is a vector value which will be legalized
4121// into a load.
4122static bool WillBeConstantPoolLoad(SDNode *N) {
4123 if (N->getOpcode() != ISD::BUILD_VECTOR)
4124 return false;
4125
4126 // Check for any non-constant elements.
4127 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4128 switch (N->getOperand(i).getNode()->getOpcode()) {
4129 case ISD::UNDEF:
4130 case ISD::ConstantFP:
4131 case ISD::Constant:
4132 break;
4133 default:
4134 return false;
4135 }
4136
4137 // Vectors of all-zeros and all-ones are materialized with special
4138 // instructions rather than being loaded.
4139 return !ISD::isBuildVectorAllZeros(N) &&
4140 !ISD::isBuildVectorAllOnes(N);
4141}
4142
Evan Cheng533a0aa2006-04-19 20:35:22 +00004143/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4144/// match movlp{s|d}. The lower half elements should come from lower half of
4145/// V1 (and in order), and the upper half elements should come from the upper
4146/// half of V2 (and in order). And since V1 will become the source of the
4147/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004148static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4149 ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004150 EVT VT = Op->getValueType(0);
4151 if (VT.getSizeInBits() != 128)
4152 return false;
4153
Evan Cheng466685d2006-10-09 20:57:25 +00004154 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004155 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004156 // Is V2 is a vector load, don't do this transformation. We will try to use
4157 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004158 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004159 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004160
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004161 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004162
Evan Cheng533a0aa2006-04-19 20:35:22 +00004163 if (NumElems != 2 && NumElems != 4)
4164 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004165 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004166 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004167 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004168 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004169 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004170 return false;
4171 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004172}
4173
Evan Cheng39623da2006-04-20 08:58:49 +00004174/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4175/// all the same.
4176static bool isSplatVector(SDNode *N) {
4177 if (N->getOpcode() != ISD::BUILD_VECTOR)
4178 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004179
Dan Gohman475871a2008-07-27 21:46:04 +00004180 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004181 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4182 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004183 return false;
4184 return true;
4185}
4186
Evan Cheng213d2cf2007-05-17 18:45:50 +00004187/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004188/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004189/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004190static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004191 SDValue V1 = N->getOperand(0);
4192 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004193 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4194 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004195 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004196 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004197 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004198 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4199 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004200 if (Opc != ISD::BUILD_VECTOR ||
4201 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004202 return false;
4203 } else if (Idx >= 0) {
4204 unsigned Opc = V1.getOpcode();
4205 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4206 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004207 if (Opc != ISD::BUILD_VECTOR ||
4208 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004209 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004210 }
4211 }
4212 return true;
4213}
4214
4215/// getZeroVector - Returns a vector of specified type with all zero elements.
4216///
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004217static SDValue getZeroVector(EVT VT, bool HasXMMInt, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004218 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004219 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004220
Dale Johannesen0488fb62010-09-30 23:57:10 +00004221 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004222 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004223 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00004224 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004225 if (HasXMMInt) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004226 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4227 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4228 } else { // SSE1
4229 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4230 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4231 }
4232 } else if (VT.getSizeInBits() == 256) { // AVX
4233 // 256-bit logic and arithmetic instructions in AVX are
4234 // all floating-point, no support for integer ops. Default
4235 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00004236 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004237 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4238 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00004239 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004240 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004241}
4242
Chris Lattner8a594482007-11-25 00:24:49 +00004243/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004244/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4245/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4246/// Then bitcast to their original type, ensuring they get CSE'd.
4247static SDValue getOnesVector(EVT VT, bool HasAVX2, SelectionDAG &DAG,
4248 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004249 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004250 assert((VT.is128BitVector() || VT.is256BitVector())
4251 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004252
Owen Anderson825b72b2009-08-11 20:47:22 +00004253 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004254 SDValue Vec;
4255 if (VT.getSizeInBits() == 256) {
4256 if (HasAVX2) { // AVX2
4257 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4258 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4259 } else { // AVX
4260 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4261 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4262 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4263 Vec = Insert128BitVector(InsV, Vec,
4264 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4265 }
4266 } else {
4267 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004268 }
4269
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004270 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004271}
4272
Evan Cheng39623da2006-04-20 08:58:49 +00004273/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4274/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004275static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004276 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004277 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004278
Evan Cheng39623da2006-04-20 08:58:49 +00004279 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004280 SmallVector<int, 8> MaskVec;
4281 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004282
Nate Begeman5a5ca152009-04-29 05:20:52 +00004283 for (unsigned i = 0; i != NumElems; ++i) {
4284 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004285 MaskVec[i] = NumElems;
4286 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004287 }
Evan Cheng39623da2006-04-20 08:58:49 +00004288 }
Evan Cheng39623da2006-04-20 08:58:49 +00004289 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004290 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4291 SVOp->getOperand(1), &MaskVec[0]);
4292 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004293}
4294
Evan Cheng017dcc62006-04-21 01:05:10 +00004295/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4296/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004297static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004298 SDValue V2) {
4299 unsigned NumElems = VT.getVectorNumElements();
4300 SmallVector<int, 8> Mask;
4301 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004302 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004303 Mask.push_back(i);
4304 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004305}
4306
Nate Begeman9008ca62009-04-27 18:41:29 +00004307/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004308static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004309 SDValue V2) {
4310 unsigned NumElems = VT.getVectorNumElements();
4311 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004312 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004313 Mask.push_back(i);
4314 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004315 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004316 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004317}
4318
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004319/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004320static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004321 SDValue V2) {
4322 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004323 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004324 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004325 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004326 Mask.push_back(i + Half);
4327 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004328 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004329 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004330}
4331
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004332// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004333// a generic shuffle instruction because the target has no such instructions.
4334// Generate shuffles which repeat i16 and i8 several times until they can be
4335// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004336static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004337 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004338 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004339 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004340
Nate Begeman9008ca62009-04-27 18:41:29 +00004341 while (NumElems > 4) {
4342 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004343 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004344 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004345 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004346 EltNo -= NumElems/2;
4347 }
4348 NumElems >>= 1;
4349 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004350 return V;
4351}
Eric Christopherfd179292009-08-27 18:07:15 +00004352
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004353/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4354static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4355 EVT VT = V.getValueType();
4356 DebugLoc dl = V.getDebugLoc();
4357 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4358 && "Vector size not supported");
4359
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004360 if (VT.getSizeInBits() == 128) {
4361 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004362 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004363 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4364 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004365 } else {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004366 // To use VPERMILPS to splat scalars, the second half of indicies must
4367 // refer to the higher part, which is a duplication of the lower one,
4368 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004369 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4370 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004371
4372 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4373 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4374 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004375 }
4376
4377 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4378}
4379
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004380/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004381static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4382 EVT SrcVT = SV->getValueType(0);
4383 SDValue V1 = SV->getOperand(0);
4384 DebugLoc dl = SV->getDebugLoc();
4385
4386 int EltNo = SV->getSplatIndex();
4387 int NumElems = SrcVT.getVectorNumElements();
4388 unsigned Size = SrcVT.getSizeInBits();
4389
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004390 assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4391 "Unknown how to promote splat for type");
4392
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004393 // Extract the 128-bit part containing the splat element and update
4394 // the splat element index when it refers to the higher register.
4395 if (Size == 256) {
4396 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4397 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4398 if (Idx > 0)
4399 EltNo -= NumElems/2;
4400 }
4401
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004402 // All i16 and i8 vector types can't be used directly by a generic shuffle
4403 // instruction because the target has no such instruction. Generate shuffles
4404 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004405 // be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004406 EVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004407 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004408 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004409
4410 // Recreate the 256-bit vector and place the same 128-bit vector
4411 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004412 // to use VPERM* to shuffle the vectors
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004413 if (Size == 256) {
4414 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4415 DAG.getConstant(0, MVT::i32), DAG, dl);
4416 V1 = Insert128BitVector(InsV, V1,
4417 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4418 }
4419
4420 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004421}
4422
Evan Chengba05f722006-04-21 23:03:30 +00004423/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004424/// vector of zero or undef vector. This produces a shuffle where the low
4425/// element of V2 is swizzled into the zero/undef vector, landing at element
4426/// 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 +00004427static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004428 bool isZero, bool HasXMMInt,
4429 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004430 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004431 SDValue V1 = isZero
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004432 ? getZeroVector(VT, HasXMMInt, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004433 unsigned NumElems = VT.getVectorNumElements();
4434 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004435 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004436 // If this is the insertion idx, put the low elt of V2 here.
4437 MaskVec.push_back(i == Idx ? NumElems : i);
4438 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004439}
4440
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004441/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4442/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004443static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4444 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004445 if (Depth == 6)
4446 return SDValue(); // Limit search depth.
4447
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004448 SDValue V = SDValue(N, 0);
4449 EVT VT = V.getValueType();
4450 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004451
4452 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4453 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4454 Index = SV->getMaskElt(Index);
4455
4456 if (Index < 0)
4457 return DAG.getUNDEF(VT.getVectorElementType());
4458
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004459 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004460 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004461 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004462 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004463
4464 // Recurse into target specific vector shuffles to find scalars.
4465 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004466 int NumElems = VT.getVectorNumElements();
4467 SmallVector<unsigned, 16> ShuffleMask;
4468 SDValue ImmN;
4469
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004470 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004471 case X86ISD::SHUFPS:
4472 case X86ISD::SHUFPD:
4473 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper36e36ac2011-11-29 07:49:05 +00004474 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4475 ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004476 break;
Craig Topper34671b82011-12-06 08:21:25 +00004477 case X86ISD::UNPCKH:
Craig Topper3d8c2ce2011-12-06 05:31:16 +00004478 DecodeUNPCKHMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004479 break;
Craig Topper34671b82011-12-06 08:21:25 +00004480 case X86ISD::UNPCKL:
Craig Topper3d8c2ce2011-12-06 05:31:16 +00004481 DecodeUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004482 break;
4483 case X86ISD::MOVHLPS:
4484 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4485 break;
4486 case X86ISD::MOVLHPS:
4487 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4488 break;
4489 case X86ISD::PSHUFD:
4490 ImmN = N->getOperand(N->getNumOperands()-1);
4491 DecodePSHUFMask(NumElems,
4492 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4493 ShuffleMask);
4494 break;
4495 case X86ISD::PSHUFHW:
4496 ImmN = N->getOperand(N->getNumOperands()-1);
4497 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4498 ShuffleMask);
4499 break;
4500 case X86ISD::PSHUFLW:
4501 ImmN = N->getOperand(N->getNumOperands()-1);
4502 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4503 ShuffleMask);
4504 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004505 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004506 case X86ISD::MOVSD: {
4507 // The index 0 always comes from the first element of the second source,
4508 // this is why MOVSS and MOVSD are used in the first place. The other
4509 // elements come from the other positions of the first source vector.
4510 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004511 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4512 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004513 }
Craig Topper316cd2a2011-11-30 06:25:25 +00004514 case X86ISD::VPERMILP:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004515 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper316cd2a2011-11-30 06:25:25 +00004516 DecodeVPERMILPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004517 ShuffleMask);
4518 break;
Craig Topperec24e612011-11-30 07:47:51 +00004519 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004520 ImmN = N->getOperand(N->getNumOperands()-1);
4521 DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4522 ShuffleMask);
4523 break;
Eli Friedman106f6e72011-09-10 02:01:42 +00004524 case X86ISD::MOVDDUP:
4525 case X86ISD::MOVLHPD:
4526 case X86ISD::MOVLPD:
4527 case X86ISD::MOVLPS:
4528 case X86ISD::MOVSHDUP:
4529 case X86ISD::MOVSLDUP:
4530 case X86ISD::PALIGN:
4531 return SDValue(); // Not yet implemented.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004532 default:
Eli Friedman106f6e72011-09-10 02:01:42 +00004533 assert(0 && "unknown target shuffle node");
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004534 return SDValue();
4535 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004536
4537 Index = ShuffleMask[Index];
4538 if (Index < 0)
4539 return DAG.getUNDEF(VT.getVectorElementType());
4540
4541 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4542 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4543 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004544 }
4545
4546 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004547 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004548 V = V.getOperand(0);
4549 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004550 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004551
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004552 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004553 return SDValue();
4554 }
4555
4556 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4557 return (Index == 0) ? V.getOperand(0)
4558 : DAG.getUNDEF(VT.getVectorElementType());
4559
4560 if (V.getOpcode() == ISD::BUILD_VECTOR)
4561 return V.getOperand(Index);
4562
4563 return SDValue();
4564}
4565
4566/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4567/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004568/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004569static
4570unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4571 bool ZerosFromLeft, SelectionDAG &DAG) {
4572 int i = 0;
4573
4574 while (i < NumElems) {
4575 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004576 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004577 if (!(Elt.getNode() &&
4578 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4579 break;
4580 ++i;
4581 }
4582
4583 return i;
4584}
4585
4586/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4587/// MaskE correspond consecutively to elements from one of the vector operands,
4588/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4589static
4590bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4591 int OpIdx, int NumElems, unsigned &OpNum) {
4592 bool SeenV1 = false;
4593 bool SeenV2 = false;
4594
4595 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4596 int Idx = SVOp->getMaskElt(i);
4597 // Ignore undef indicies
4598 if (Idx < 0)
4599 continue;
4600
4601 if (Idx < NumElems)
4602 SeenV1 = true;
4603 else
4604 SeenV2 = true;
4605
4606 // Only accept consecutive elements from the same vector
4607 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4608 return false;
4609 }
4610
4611 OpNum = SeenV1 ? 0 : 1;
4612 return true;
4613}
4614
4615/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4616/// logical left shift of a vector.
4617static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4618 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4619 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4620 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4621 false /* check zeros from right */, DAG);
4622 unsigned OpSrc;
4623
4624 if (!NumZeros)
4625 return false;
4626
4627 // Considering the elements in the mask that are not consecutive zeros,
4628 // check if they consecutively come from only one of the source vectors.
4629 //
4630 // V1 = {X, A, B, C} 0
4631 // \ \ \ /
4632 // vector_shuffle V1, V2 <1, 2, 3, X>
4633 //
4634 if (!isShuffleMaskConsecutive(SVOp,
4635 0, // Mask Start Index
4636 NumElems-NumZeros-1, // Mask End Index
4637 NumZeros, // Where to start looking in the src vector
4638 NumElems, // Number of elements in vector
4639 OpSrc)) // Which source operand ?
4640 return false;
4641
4642 isLeft = false;
4643 ShAmt = NumZeros;
4644 ShVal = SVOp->getOperand(OpSrc);
4645 return true;
4646}
4647
4648/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4649/// logical left shift of a vector.
4650static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4651 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4652 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4653 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4654 true /* check zeros from left */, DAG);
4655 unsigned OpSrc;
4656
4657 if (!NumZeros)
4658 return false;
4659
4660 // Considering the elements in the mask that are not consecutive zeros,
4661 // check if they consecutively come from only one of the source vectors.
4662 //
4663 // 0 { A, B, X, X } = V2
4664 // / \ / /
4665 // vector_shuffle V1, V2 <X, X, 4, 5>
4666 //
4667 if (!isShuffleMaskConsecutive(SVOp,
4668 NumZeros, // Mask Start Index
4669 NumElems-1, // Mask End Index
4670 0, // Where to start looking in the src vector
4671 NumElems, // Number of elements in vector
4672 OpSrc)) // Which source operand ?
4673 return false;
4674
4675 isLeft = true;
4676 ShAmt = NumZeros;
4677 ShVal = SVOp->getOperand(OpSrc);
4678 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004679}
4680
4681/// isVectorShift - Returns true if the shuffle can be implemented as a
4682/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004683static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004684 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004685 // Although the logic below support any bitwidth size, there are no
4686 // shift instructions which handle more than 128-bit vectors.
4687 if (SVOp->getValueType(0).getSizeInBits() > 128)
4688 return false;
4689
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004690 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4691 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4692 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004693
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004694 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004695}
4696
Evan Chengc78d3b42006-04-24 18:01:45 +00004697/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4698///
Dan Gohman475871a2008-07-27 21:46:04 +00004699static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004700 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004701 SelectionDAG &DAG,
4702 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004703 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004704 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004705
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004706 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004707 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004708 bool First = true;
4709 for (unsigned i = 0; i < 16; ++i) {
4710 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4711 if (ThisIsNonZero && First) {
4712 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004713 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004714 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004715 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004716 First = false;
4717 }
4718
4719 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004720 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004721 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4722 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004723 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004724 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004725 }
4726 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004727 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4728 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4729 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004730 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004731 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004732 } else
4733 ThisElt = LastElt;
4734
Gabor Greifba36cb52008-08-28 21:40:38 +00004735 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004736 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004737 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004738 }
4739 }
4740
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004741 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004742}
4743
Bill Wendlinga348c562007-03-22 18:42:45 +00004744/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004745///
Dan Gohman475871a2008-07-27 21:46:04 +00004746static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004747 unsigned NumNonZero, unsigned NumZero,
4748 SelectionDAG &DAG,
4749 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004750 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004751 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004752
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004753 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004754 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004755 bool First = true;
4756 for (unsigned i = 0; i < 8; ++i) {
4757 bool isNonZero = (NonZeros & (1 << i)) != 0;
4758 if (isNonZero) {
4759 if (First) {
4760 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004761 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004762 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004763 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004764 First = false;
4765 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004766 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004767 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004768 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004769 }
4770 }
4771
4772 return V;
4773}
4774
Evan Chengf26ffe92008-05-29 08:22:04 +00004775/// getVShift - Return a vector logical shift node.
4776///
Owen Andersone50ed302009-08-10 22:56:29 +00004777static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004778 unsigned NumBits, SelectionDAG &DAG,
4779 const TargetLowering &TLI, DebugLoc dl) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004780 assert(VT.getSizeInBits() == 128 && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00004781 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004782 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004783 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4784 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004785 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004786 DAG.getConstant(NumBits,
4787 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004788}
4789
Dan Gohman475871a2008-07-27 21:46:04 +00004790SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004791X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004792 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004793
Evan Chengc3630942009-12-09 21:00:30 +00004794 // Check if the scalar load can be widened into a vector load. And if
4795 // the address is "base + cst" see if the cst can be "absorbed" into
4796 // the shuffle mask.
4797 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4798 SDValue Ptr = LD->getBasePtr();
4799 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4800 return SDValue();
4801 EVT PVT = LD->getValueType(0);
4802 if (PVT != MVT::i32 && PVT != MVT::f32)
4803 return SDValue();
4804
4805 int FI = -1;
4806 int64_t Offset = 0;
4807 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4808 FI = FINode->getIndex();
4809 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004810 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004811 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4812 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4813 Offset = Ptr.getConstantOperandVal(1);
4814 Ptr = Ptr.getOperand(0);
4815 } else {
4816 return SDValue();
4817 }
4818
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004819 // FIXME: 256-bit vector instructions don't require a strict alignment,
4820 // improve this code to support it better.
4821 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004822 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004823 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004824 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004825 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004826 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004827 // Can't change the alignment. FIXME: It's possible to compute
4828 // the exact stack offset and reference FI + adjust offset instead.
4829 // If someone *really* cares about this. That's the way to implement it.
4830 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004831 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004832 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004833 }
4834 }
4835
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004836 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004837 // Ptr + (Offset & ~15).
4838 if (Offset < 0)
4839 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004840 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004841 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004842 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004843 if (StartOffset)
4844 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4845 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4846
4847 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004848 int NumElems = VT.getVectorNumElements();
4849
4850 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4851 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4852 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004853 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004854 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004855
4856 // Canonicalize it to a v4i32 or v8i32 shuffle.
4857 SmallVector<int, 8> Mask;
4858 for (int i = 0; i < NumElems; ++i)
4859 Mask.push_back(EltNo);
4860
4861 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4862 return DAG.getNode(ISD::BITCAST, dl, NVT,
4863 DAG.getVectorShuffle(CanonVT, dl, V1,
4864 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004865 }
4866
4867 return SDValue();
4868}
4869
Michael J. Spencerec38de22010-10-10 22:04:20 +00004870/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4871/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004872/// load which has the same value as a build_vector whose operands are 'elts'.
4873///
4874/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004875///
Nate Begeman1449f292010-03-24 22:19:06 +00004876/// FIXME: we'd also like to handle the case where the last elements are zero
4877/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4878/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004879static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004880 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004881 EVT EltVT = VT.getVectorElementType();
4882 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004883
Nate Begemanfdea31a2010-03-24 20:49:50 +00004884 LoadSDNode *LDBase = NULL;
4885 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004886
Nate Begeman1449f292010-03-24 22:19:06 +00004887 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004888 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004889 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004890 for (unsigned i = 0; i < NumElems; ++i) {
4891 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004892
Nate Begemanfdea31a2010-03-24 20:49:50 +00004893 if (!Elt.getNode() ||
4894 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4895 return SDValue();
4896 if (!LDBase) {
4897 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4898 return SDValue();
4899 LDBase = cast<LoadSDNode>(Elt.getNode());
4900 LastLoadedElt = i;
4901 continue;
4902 }
4903 if (Elt.getOpcode() == ISD::UNDEF)
4904 continue;
4905
4906 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4907 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4908 return SDValue();
4909 LastLoadedElt = i;
4910 }
Nate Begeman1449f292010-03-24 22:19:06 +00004911
4912 // If we have found an entire vector of loads and undefs, then return a large
4913 // load of the entire vector width starting at the base pointer. If we found
4914 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004915 if (LastLoadedElt == NumElems - 1) {
4916 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004917 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004918 LDBase->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004919 LDBase->isVolatile(), LDBase->isNonTemporal(),
4920 LDBase->isInvariant(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004921 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004922 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004923 LDBase->isVolatile(), LDBase->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004924 LDBase->isInvariant(), LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004925 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4926 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004927 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4928 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00004929 SDValue ResNode =
4930 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
4931 LDBase->getPointerInfo(),
4932 LDBase->getAlignment(),
4933 false/*isVolatile*/, true/*ReadMem*/,
4934 false/*WriteMem*/);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004935 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004936 }
4937 return SDValue();
4938}
4939
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004940/// isVectorBroadcast - Check if the node chain is suitable to be xformed to
4941/// a vbroadcast node. We support two patterns:
4942/// 1. A splat BUILD_VECTOR which uses a single scalar load.
4943/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
4944/// a scalar load.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004945/// The scalar load node is returned when a pattern is found,
4946/// or SDValue() otherwise.
4947static SDValue isVectorBroadcast(SDValue &Op, bool hasAVX2) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004948 EVT VT = Op.getValueType();
4949 SDValue V = Op;
4950
4951 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
4952 V = V.getOperand(0);
4953
4954 //A suspected load to be broadcasted.
4955 SDValue Ld;
4956
4957 switch (V.getOpcode()) {
4958 default:
4959 // Unknown pattern found.
4960 return SDValue();
4961
4962 case ISD::BUILD_VECTOR: {
4963 // The BUILD_VECTOR node must be a splat.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004964 if (!isSplatVector(V.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004965 return SDValue();
4966
4967 Ld = V.getOperand(0);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004968
4969 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004970 // of its users are from the BUILD_VECTOR node.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004971 if (!Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004972 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004973 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004974 }
4975
4976 case ISD::VECTOR_SHUFFLE: {
4977 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
4978
4979 // Shuffles must have a splat mask where the first element is
4980 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004981 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004982 return SDValue();
4983
4984 SDValue Sc = Op.getOperand(0);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004985 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004986 return SDValue();
4987
4988 Ld = Sc.getOperand(0);
4989
4990 // The scalar_to_vector node and the suspected
4991 // load node must have exactly one user.
4992 if (!Sc.hasOneUse() || !Ld.hasOneUse())
4993 return SDValue();
4994 break;
4995 }
4996 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004997
Nadav Rotemf8c10e52011-11-15 22:50:37 +00004998 // The scalar source must be a normal load.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00004999 if (!ISD::isNormalLoad(Ld.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005000 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005001
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005002 bool Is256 = VT.getSizeInBits() == 256;
5003 bool Is128 = VT.getSizeInBits() == 128;
5004 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5005
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005006 if (hasAVX2) {
5007 // VBroadcast to YMM
5008 if (Is256 && (ScalarSize == 8 || ScalarSize == 16 ||
5009 ScalarSize == 32 || ScalarSize == 64 ))
5010 return Ld;
5011
5012 // VBroadcast to XMM
5013 if (Is128 && (ScalarSize == 8 || ScalarSize == 32 ||
5014 ScalarSize == 16 || ScalarSize == 64 ))
5015 return Ld;
5016 }
5017
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005018 // VBroadcast to YMM
5019 if (Is256 && (ScalarSize == 32 || ScalarSize == 64))
5020 return Ld;
5021
5022 // VBroadcast to XMM
5023 if (Is128 && (ScalarSize == 32))
5024 return Ld;
5025
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005026
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005027 // Unsupported broadcast.
5028 return SDValue();
5029}
5030
Evan Chengc3630942009-12-09 21:00:30 +00005031SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005032X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005033 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00005034
David Greenef125a292011-02-08 19:04:41 +00005035 EVT VT = Op.getValueType();
5036 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005037 unsigned NumElems = Op.getNumOperands();
5038
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005039 // Vectors containing all zeros can be matched by pxor and xorps later
5040 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5041 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5042 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00005043 if (Op.getValueType() == MVT::v4i32 ||
5044 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005045 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005046
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005047 return getZeroVector(Op.getValueType(), Subtarget->hasXMMInt(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005048 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005049
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005050 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005051 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5052 // vpcmpeqd on 256-bit vectors.
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005053 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
Craig Topper745a86b2011-11-19 22:34:59 +00005054 if (Op.getValueType() == MVT::v4i32 ||
5055 (Op.getValueType() == MVT::v8i32 && Subtarget->hasAVX2()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005056 return Op;
5057
Craig Topper745a86b2011-11-19 22:34:59 +00005058 return getOnesVector(Op.getValueType(), Subtarget->hasAVX2(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005059 }
5060
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005061 SDValue LD = isVectorBroadcast(Op, Subtarget->hasAVX2());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005062 if (Subtarget->hasAVX() && LD.getNode())
5063 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, LD);
5064
Owen Andersone50ed302009-08-10 22:56:29 +00005065 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005066
Evan Cheng0db9fe62006-04-25 20:13:52 +00005067 unsigned NumZero = 0;
5068 unsigned NumNonZero = 0;
5069 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005070 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005071 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005072 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005073 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005074 if (Elt.getOpcode() == ISD::UNDEF)
5075 continue;
5076 Values.insert(Elt);
5077 if (Elt.getOpcode() != ISD::Constant &&
5078 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005079 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005080 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005081 NumZero++;
5082 else {
5083 NonZeros |= (1 << i);
5084 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005085 }
5086 }
5087
Chris Lattner97a2a562010-08-26 05:24:29 +00005088 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5089 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005090 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005091
Chris Lattner67f453a2008-03-09 05:42:06 +00005092 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005093 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005094 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005095 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005096
Chris Lattner62098042008-03-09 01:05:04 +00005097 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5098 // the value are obviously zero, truncate the value to i32 and do the
5099 // insertion that way. Only do this if the value is non-constant or if the
5100 // value is a constant being inserted into element 0. It is cheaper to do
5101 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005102 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005103 (!IsAllConstants || Idx == 0)) {
5104 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005105 // Handle SSE only.
5106 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5107 EVT VecVT = MVT::v4i32;
5108 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005109
Chris Lattner62098042008-03-09 01:05:04 +00005110 // Truncate the value (which may itself be a constant) to i32, and
5111 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005112 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005113 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00005114 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005115 Subtarget->hasXMMInt(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005116
Chris Lattner62098042008-03-09 01:05:04 +00005117 // Now we have our 32-bit value zero extended in the low element of
5118 // a vector. If Idx != 0, swizzle it into place.
5119 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005120 SmallVector<int, 4> Mask;
5121 Mask.push_back(Idx);
5122 for (unsigned i = 1; i != VecElts; ++i)
5123 Mask.push_back(i);
5124 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00005125 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00005126 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005127 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005128 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00005129 }
5130 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005131
Chris Lattner19f79692008-03-08 22:59:52 +00005132 // If we have a constant or non-constant insertion into the low element of
5133 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5134 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005135 // depending on what the source datatype is.
5136 if (Idx == 0) {
5137 if (NumZero == 0) {
5138 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00005139 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5140 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00005141 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5142 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005143 return getShuffleVectorZeroOrUndef(Item, 0, true,Subtarget->hasXMMInt(),
Eli Friedman10415532009-06-06 06:05:10 +00005144 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00005145 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5146 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Chad Rosier0660cfe2011-12-15 21:34:44 +00005147 unsigned NumBits = VT.getSizeInBits();
5148 assert((NumBits == 128 || NumBits == 256) &&
5149 "Expected an SSE or AVX value type!");
5150 EVT MiddleVT = NumBits == 128 ? MVT::v4i32 : MVT::v8i32;
Eli Friedman10415532009-06-06 06:05:10 +00005151 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
5152 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005153 Subtarget->hasXMMInt(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005154 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005155 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005156 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005157
5158 // Is it a vector logical left shift?
5159 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005160 X86::isZeroNode(Op.getOperand(0)) &&
5161 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005162 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005163 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005164 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005165 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005166 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005167 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005168
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005169 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005170 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005171
Chris Lattner19f79692008-03-08 22:59:52 +00005172 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5173 // is a non-constant being inserted into an element other than the low one,
5174 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5175 // movd/movss) to move this into the low element, then shuffle it into
5176 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005177 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005178 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005179
Evan Cheng0db9fe62006-04-25 20:13:52 +00005180 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00005181 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005182 Subtarget->hasXMMInt(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005183 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005184 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00005185 MaskVec.push_back(i == Idx ? 0 : 1);
5186 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005187 }
5188 }
5189
Chris Lattner67f453a2008-03-09 05:42:06 +00005190 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005191 if (Values.size() == 1) {
5192 if (EVTBits == 32) {
5193 // Instead of a shuffle like this:
5194 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5195 // Check if it's possible to issue this instead.
5196 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5197 unsigned Idx = CountTrailingZeros_32(NonZeros);
5198 SDValue Item = Op.getOperand(Idx);
5199 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5200 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5201 }
Dan Gohman475871a2008-07-27 21:46:04 +00005202 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005203 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005204
Dan Gohmana3941172007-07-24 22:55:08 +00005205 // A vector full of immediates; various special cases are already
5206 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005207 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005208 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005209
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005210 // For AVX-length vectors, build the individual 128-bit pieces and use
5211 // shuffles to put them in place.
5212 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
5213 SmallVector<SDValue, 32> V;
5214 for (unsigned i = 0; i < NumElems; ++i)
5215 V.push_back(Op.getOperand(i));
5216
5217 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5218
5219 // Build both the lower and upper subvector.
5220 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5221 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5222 NumElems/2);
5223
5224 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00005225 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
5226 DAG.getConstant(0, MVT::i32), DAG, dl);
5227 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005228 DAG, dl);
5229 }
5230
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005231 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005232 if (EVTBits == 64) {
5233 if (NumNonZero == 1) {
5234 // One half is zero or undef.
5235 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005236 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005237 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00005238 return getShuffleVectorZeroOrUndef(V2, Idx, true,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005239 Subtarget->hasXMMInt(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005240 }
Dan Gohman475871a2008-07-27 21:46:04 +00005241 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005242 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005243
5244 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005245 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005246 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00005247 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005248 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005249 }
5250
Bill Wendling826f36f2007-03-28 00:57:11 +00005251 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005252 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00005253 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005254 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005255 }
5256
5257 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005258 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00005259 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005260 if (NumElems == 4 && NumZero > 0) {
5261 for (unsigned i = 0; i < 4; ++i) {
5262 bool isZero = !(NonZeros & (1 << i));
5263 if (isZero)
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005264 V[i] = getZeroVector(VT, Subtarget->hasXMMInt(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005265 else
Dale Johannesenace16102009-02-03 19:33:06 +00005266 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005267 }
5268
5269 for (unsigned i = 0; i < 2; ++i) {
5270 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5271 default: break;
5272 case 0:
5273 V[i] = V[i*2]; // Must be a zero vector.
5274 break;
5275 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005276 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005277 break;
5278 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005280 break;
5281 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005282 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005283 break;
5284 }
5285 }
5286
Nate Begeman9008ca62009-04-27 18:41:29 +00005287 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005288 bool Reverse = (NonZeros & 0x3) == 2;
5289 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005290 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005291 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5292 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005293 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5294 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005295 }
5296
Nate Begemanfdea31a2010-03-24 20:49:50 +00005297 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5298 // Check for a build vector of consecutive loads.
5299 for (unsigned i = 0; i < NumElems; ++i)
5300 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005301
Nate Begemanfdea31a2010-03-24 20:49:50 +00005302 // Check for elements which are consecutive loads.
5303 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5304 if (LD.getNode())
5305 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005306
5307 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperc0d82852011-11-22 00:44:41 +00005308 if (getSubtarget()->hasSSE41orAVX()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005309 SDValue Result;
5310 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5311 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5312 else
5313 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005314
Chris Lattner24faf612010-08-28 17:59:08 +00005315 for (unsigned i = 1; i < NumElems; ++i) {
5316 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5317 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005318 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005319 }
5320 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005321 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005322
Chris Lattner6e80e442010-08-28 17:15:43 +00005323 // Otherwise, expand into a number of unpckl*, start by extending each of
5324 // our (non-undef) elements to the full vector width with the element in the
5325 // bottom slot of the vector (which generates no code for SSE).
5326 for (unsigned i = 0; i < NumElems; ++i) {
5327 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5328 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5329 else
5330 V[i] = DAG.getUNDEF(VT);
5331 }
5332
5333 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005334 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5335 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5336 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005337 unsigned EltStride = NumElems >> 1;
5338 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005339 for (unsigned i = 0; i < EltStride; ++i) {
5340 // If V[i+EltStride] is undef and this is the first round of mixing,
5341 // then it is safe to just drop this shuffle: V[i] is already in the
5342 // right place, the one element (since it's the first round) being
5343 // inserted as undef can be dropped. This isn't safe for successive
5344 // rounds because they will permute elements within both vectors.
5345 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5346 EltStride == NumElems/2)
5347 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005348
Chris Lattner6e80e442010-08-28 17:15:43 +00005349 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005350 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005351 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005352 }
5353 return V[0];
5354 }
Dan Gohman475871a2008-07-27 21:46:04 +00005355 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005356}
5357
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005358// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5359// them in a MMX register. This is better than doing a stack convert.
5360static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005361 DebugLoc dl = Op.getDebugLoc();
5362 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005363
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005364 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5365 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5366 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005367 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005368 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5369 InVec = Op.getOperand(1);
5370 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5371 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005372 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005373 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5374 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5375 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005376 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005377 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5378 Mask[0] = 0; Mask[1] = 2;
5379 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5380 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005381 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005382}
5383
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005384// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5385// to create 256-bit vectors from two other 128-bit ones.
5386static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5387 DebugLoc dl = Op.getDebugLoc();
5388 EVT ResVT = Op.getValueType();
5389
5390 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5391
5392 SDValue V1 = Op.getOperand(0);
5393 SDValue V2 = Op.getOperand(1);
5394 unsigned NumElems = ResVT.getVectorNumElements();
5395
5396 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5397 DAG.getConstant(0, MVT::i32), DAG, dl);
5398 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5399 DAG, dl);
5400}
5401
5402SDValue
5403X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005404 EVT ResVT = Op.getValueType();
5405
5406 assert(Op.getNumOperands() == 2);
5407 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5408 "Unsupported CONCAT_VECTORS for value type");
5409
5410 // We support concatenate two MMX registers and place them in a MMX register.
5411 // This is better than doing a stack convert.
5412 if (ResVT.is128BitVector())
5413 return LowerMMXCONCAT_VECTORS(Op, DAG);
5414
5415 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5416 // from two other 128-bit ones.
5417 return LowerAVXCONCAT_VECTORS(Op, DAG);
5418}
5419
Nate Begemanb9a47b82009-02-23 08:49:38 +00005420// v8i16 shuffles - Prefer shuffles in the following order:
5421// 1. [all] pshuflw, pshufhw, optional move
5422// 2. [ssse3] 1 x pshufb
5423// 3. [ssse3] 2 x pshufb + 1 x por
5424// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005425SDValue
5426X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5427 SelectionDAG &DAG) const {
5428 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005429 SDValue V1 = SVOp->getOperand(0);
5430 SDValue V2 = SVOp->getOperand(1);
5431 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005432 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005433
Nate Begemanb9a47b82009-02-23 08:49:38 +00005434 // Determine if more than 1 of the words in each of the low and high quadwords
5435 // of the result come from the same quadword of one of the two inputs. Undef
5436 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00005437 unsigned LoQuad[] = { 0, 0, 0, 0 };
5438 unsigned HiQuad[] = { 0, 0, 0, 0 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00005439 BitVector InputQuads(4);
5440 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00005441 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005442 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005443 MaskVals.push_back(EltIdx);
5444 if (EltIdx < 0) {
5445 ++Quad[0];
5446 ++Quad[1];
5447 ++Quad[2];
5448 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005449 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005450 }
5451 ++Quad[EltIdx / 4];
5452 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005453 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005454
Nate Begemanb9a47b82009-02-23 08:49:38 +00005455 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005456 unsigned MaxQuad = 1;
5457 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005458 if (LoQuad[i] > MaxQuad) {
5459 BestLoQuad = i;
5460 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005461 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005462 }
5463
Nate Begemanb9a47b82009-02-23 08:49:38 +00005464 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005465 MaxQuad = 1;
5466 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005467 if (HiQuad[i] > MaxQuad) {
5468 BestHiQuad = i;
5469 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005470 }
5471 }
5472
Nate Begemanb9a47b82009-02-23 08:49:38 +00005473 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005474 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005475 // single pshufb instruction is necessary. If There are more than 2 input
5476 // quads, disable the next transformation since it does not help SSSE3.
5477 bool V1Used = InputQuads[0] || InputQuads[1];
5478 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperc0d82852011-11-22 00:44:41 +00005479 if (Subtarget->hasSSSE3orAVX()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005480 if (InputQuads.count() == 2 && V1Used && V2Used) {
5481 BestLoQuad = InputQuads.find_first();
5482 BestHiQuad = InputQuads.find_next(BestLoQuad);
5483 }
5484 if (InputQuads.count() > 2) {
5485 BestLoQuad = -1;
5486 BestHiQuad = -1;
5487 }
5488 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005489
Nate Begemanb9a47b82009-02-23 08:49:38 +00005490 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5491 // the shuffle mask. If a quad is scored as -1, that means that it contains
5492 // words from all 4 input quadwords.
5493 SDValue NewV;
5494 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005495 SmallVector<int, 8> MaskV;
5496 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5497 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005498 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005499 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5500 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5501 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005502
Nate Begemanb9a47b82009-02-23 08:49:38 +00005503 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5504 // source words for the shuffle, to aid later transformations.
5505 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005506 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005507 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005508 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005509 if (idx != (int)i)
5510 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005511 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005512 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005513 AllWordsInNewV = false;
5514 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005515 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005516
Nate Begemanb9a47b82009-02-23 08:49:38 +00005517 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5518 if (AllWordsInNewV) {
5519 for (int i = 0; i != 8; ++i) {
5520 int idx = MaskVals[i];
5521 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005522 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005523 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005524 if ((idx != i) && idx < 4)
5525 pshufhw = false;
5526 if ((idx != i) && idx > 3)
5527 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005528 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005529 V1 = NewV;
5530 V2Used = false;
5531 BestLoQuad = 0;
5532 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005533 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005534
Nate Begemanb9a47b82009-02-23 08:49:38 +00005535 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5536 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005537 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005538 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5539 unsigned TargetMask = 0;
5540 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005541 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005542 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5543 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5544 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005545 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005546 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005547 }
Eric Christopherfd179292009-08-27 18:07:15 +00005548
Nate Begemanb9a47b82009-02-23 08:49:38 +00005549 // If we have SSSE3, and all words of the result are from 1 input vector,
5550 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5551 // is present, fall back to case 4.
Craig Topperc0d82852011-11-22 00:44:41 +00005552 if (Subtarget->hasSSSE3orAVX()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005553 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005554
Nate Begemanb9a47b82009-02-23 08:49:38 +00005555 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005556 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005557 // mask, and elements that come from V1 in the V2 mask, so that the two
5558 // results can be OR'd together.
5559 bool TwoInputs = V1Used && V2Used;
5560 for (unsigned i = 0; i != 8; ++i) {
5561 int EltIdx = MaskVals[i] * 2;
5562 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005563 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5564 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005565 continue;
5566 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005567 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5568 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005569 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005570 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005571 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005572 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005573 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005574 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005575 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005576
Nate Begemanb9a47b82009-02-23 08:49:38 +00005577 // Calculate the shuffle mask for the second input, shuffle it, and
5578 // OR it with the first shuffled input.
5579 pshufbMask.clear();
5580 for (unsigned i = 0; i != 8; ++i) {
5581 int EltIdx = MaskVals[i] * 2;
5582 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005583 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5584 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005585 continue;
5586 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005587 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5588 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005589 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005590 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005591 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005592 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005593 MVT::v16i8, &pshufbMask[0], 16));
5594 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005595 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005596 }
5597
5598 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5599 // and update MaskVals with new element order.
5600 BitVector InOrder(8);
5601 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005602 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005603 for (int i = 0; i != 4; ++i) {
5604 int idx = MaskVals[i];
5605 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005606 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005607 InOrder.set(i);
5608 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005609 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005610 InOrder.set(i);
5611 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005612 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005613 }
5614 }
5615 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005616 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005617 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005618 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005619
Craig Topperc0d82852011-11-22 00:44:41 +00005620 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3orAVX())
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005621 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5622 NewV.getOperand(0),
5623 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5624 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005625 }
Eric Christopherfd179292009-08-27 18:07:15 +00005626
Nate Begemanb9a47b82009-02-23 08:49:38 +00005627 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5628 // and update MaskVals with the new element order.
5629 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005630 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005631 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005632 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005633 for (unsigned i = 4; i != 8; ++i) {
5634 int idx = MaskVals[i];
5635 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005636 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005637 InOrder.set(i);
5638 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005639 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005640 InOrder.set(i);
5641 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005642 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005643 }
5644 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005645 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005646 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005647
Craig Topperc0d82852011-11-22 00:44:41 +00005648 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3orAVX())
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005649 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5650 NewV.getOperand(0),
5651 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5652 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005653 }
Eric Christopherfd179292009-08-27 18:07:15 +00005654
Nate Begemanb9a47b82009-02-23 08:49:38 +00005655 // In case BestHi & BestLo were both -1, which means each quadword has a word
5656 // from each of the four input quadwords, calculate the InOrder bitvector now
5657 // before falling through to the insert/extract cleanup.
5658 if (BestLoQuad == -1 && BestHiQuad == -1) {
5659 NewV = V1;
5660 for (int i = 0; i != 8; ++i)
5661 if (MaskVals[i] < 0 || MaskVals[i] == i)
5662 InOrder.set(i);
5663 }
Eric Christopherfd179292009-08-27 18:07:15 +00005664
Nate Begemanb9a47b82009-02-23 08:49:38 +00005665 // The other elements are put in the right place using pextrw and pinsrw.
5666 for (unsigned i = 0; i != 8; ++i) {
5667 if (InOrder[i])
5668 continue;
5669 int EltIdx = MaskVals[i];
5670 if (EltIdx < 0)
5671 continue;
5672 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005673 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005674 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005675 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005676 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005677 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005678 DAG.getIntPtrConstant(i));
5679 }
5680 return NewV;
5681}
5682
5683// v16i8 shuffles - Prefer shuffles in the following order:
5684// 1. [ssse3] 1 x pshufb
5685// 2. [ssse3] 2 x pshufb + 1 x por
5686// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5687static
Nate Begeman9008ca62009-04-27 18:41:29 +00005688SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005689 SelectionDAG &DAG,
5690 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005691 SDValue V1 = SVOp->getOperand(0);
5692 SDValue V2 = SVOp->getOperand(1);
5693 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005694 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005695 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005696
Nate Begemanb9a47b82009-02-23 08:49:38 +00005697 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005698 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005699 // present, fall back to case 3.
5700 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5701 bool V1Only = true;
5702 bool V2Only = true;
5703 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005704 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005705 if (EltIdx < 0)
5706 continue;
5707 if (EltIdx < 16)
5708 V2Only = false;
5709 else
5710 V1Only = false;
5711 }
Eric Christopherfd179292009-08-27 18:07:15 +00005712
Nate Begemanb9a47b82009-02-23 08:49:38 +00005713 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topperc0d82852011-11-22 00:44:41 +00005714 if (TLI.getSubtarget()->hasSSSE3orAVX()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005715 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005716
Nate Begemanb9a47b82009-02-23 08:49:38 +00005717 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005718 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005719 //
5720 // Otherwise, we have elements from both input vectors, and must zero out
5721 // elements that come from V2 in the first mask, and V1 in the second mask
5722 // so that we can OR them together.
5723 bool TwoInputs = !(V1Only || V2Only);
5724 for (unsigned i = 0; i != 16; ++i) {
5725 int EltIdx = MaskVals[i];
5726 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005727 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005728 continue;
5729 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005730 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005731 }
5732 // If all the elements are from V2, assign it to V1 and return after
5733 // building the first pshufb.
5734 if (V2Only)
5735 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005736 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005737 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005738 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005739 if (!TwoInputs)
5740 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005741
Nate Begemanb9a47b82009-02-23 08:49:38 +00005742 // Calculate the shuffle mask for the second input, shuffle it, and
5743 // OR it with the first shuffled input.
5744 pshufbMask.clear();
5745 for (unsigned i = 0; i != 16; ++i) {
5746 int EltIdx = MaskVals[i];
5747 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005748 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005749 continue;
5750 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005751 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005752 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005753 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005754 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005755 MVT::v16i8, &pshufbMask[0], 16));
5756 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005757 }
Eric Christopherfd179292009-08-27 18:07:15 +00005758
Nate Begemanb9a47b82009-02-23 08:49:38 +00005759 // No SSSE3 - Calculate in place words and then fix all out of place words
5760 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5761 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005762 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5763 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005764 SDValue NewV = V2Only ? V2 : V1;
5765 for (int i = 0; i != 8; ++i) {
5766 int Elt0 = MaskVals[i*2];
5767 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005768
Nate Begemanb9a47b82009-02-23 08:49:38 +00005769 // This word of the result is all undef, skip it.
5770 if (Elt0 < 0 && Elt1 < 0)
5771 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005772
Nate Begemanb9a47b82009-02-23 08:49:38 +00005773 // This word of the result is already in the correct place, skip it.
5774 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5775 continue;
5776 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5777 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005778
Nate Begemanb9a47b82009-02-23 08:49:38 +00005779 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5780 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5781 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005782
5783 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5784 // using a single extract together, load it and store it.
5785 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005786 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005787 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005788 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005789 DAG.getIntPtrConstant(i));
5790 continue;
5791 }
5792
Nate Begemanb9a47b82009-02-23 08:49:38 +00005793 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005794 // source byte is not also odd, shift the extracted word left 8 bits
5795 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005796 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005797 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005798 DAG.getIntPtrConstant(Elt1 / 2));
5799 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005800 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005801 DAG.getConstant(8,
5802 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005803 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005804 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5805 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005806 }
5807 // If Elt0 is defined, extract it from the appropriate source. If the
5808 // source byte is not also even, shift the extracted word right 8 bits. If
5809 // Elt1 was also defined, OR the extracted values together before
5810 // inserting them in the result.
5811 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005812 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005813 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5814 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005815 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005816 DAG.getConstant(8,
5817 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005818 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005819 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5820 DAG.getConstant(0x00FF, MVT::i16));
5821 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005822 : InsElt0;
5823 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005824 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005825 DAG.getIntPtrConstant(i));
5826 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005827 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005828}
5829
Evan Cheng7a831ce2007-12-15 03:00:47 +00005830/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005831/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005832/// done when every pair / quad of shuffle mask elements point to elements in
5833/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005834/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005835static
Nate Begeman9008ca62009-04-27 18:41:29 +00005836SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005837 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005838 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005839 SDValue V1 = SVOp->getOperand(0);
5840 SDValue V2 = SVOp->getOperand(1);
5841 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005842 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005843 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005844 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005845 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005846 case MVT::v4f32: NewVT = MVT::v2f64; break;
5847 case MVT::v4i32: NewVT = MVT::v2i64; break;
5848 case MVT::v8i16: NewVT = MVT::v4i32; break;
5849 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005850 }
5851
Nate Begeman9008ca62009-04-27 18:41:29 +00005852 int Scale = NumElems / NewWidth;
5853 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005854 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005855 int StartIdx = -1;
5856 for (int j = 0; j < Scale; ++j) {
5857 int EltIdx = SVOp->getMaskElt(i+j);
5858 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005859 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005860 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005861 StartIdx = EltIdx - (EltIdx % Scale);
5862 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005863 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005864 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005865 if (StartIdx == -1)
5866 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005867 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005868 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005869 }
5870
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005871 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5872 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005873 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005874}
5875
Evan Chengd880b972008-05-09 21:53:03 +00005876/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005877///
Owen Andersone50ed302009-08-10 22:56:29 +00005878static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005879 SDValue SrcOp, SelectionDAG &DAG,
5880 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005881 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005882 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005883 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005884 LD = dyn_cast<LoadSDNode>(SrcOp);
5885 if (!LD) {
5886 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5887 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005888 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005889 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005890 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005891 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005892 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005893 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005894 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005895 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005896 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5897 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5898 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005899 SrcOp.getOperand(0)
5900 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005901 }
5902 }
5903 }
5904
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005905 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005906 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005907 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005908 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005909}
5910
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005911/// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
5912/// shuffle node referes to only one lane in the sources.
5913static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
5914 EVT VT = SVOp->getValueType(0);
5915 int NumElems = VT.getVectorNumElements();
5916 int HalfSize = NumElems/2;
5917 SmallVector<int, 16> M;
5918 SVOp->getMask(M);
5919 bool MatchA = false, MatchB = false;
5920
5921 for (int l = 0; l < NumElems*2; l += HalfSize) {
5922 if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
5923 MatchA = true;
5924 break;
5925 }
5926 }
5927
5928 for (int l = 0; l < NumElems*2; l += HalfSize) {
5929 if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
5930 MatchB = true;
5931 break;
5932 }
5933 }
5934
5935 return MatchA && MatchB;
5936}
5937
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005938/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5939/// which could not be matched by any known target speficic shuffle
5940static SDValue
5941LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005942 if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
5943 // If each half of a vector shuffle node referes to only one lane in the
5944 // source vectors, extract each used 128-bit lane and shuffle them using
5945 // 128-bit shuffles. Then, concatenate the results. Otherwise leave
5946 // the work to the legalizer.
5947 DebugLoc dl = SVOp->getDebugLoc();
5948 EVT VT = SVOp->getValueType(0);
5949 int NumElems = VT.getVectorNumElements();
5950 int HalfSize = NumElems/2;
5951
5952 // Extract the reference for each half
5953 int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
5954 int FstVecOpNum = 0, SndVecOpNum = 0;
5955 for (int i = 0; i < HalfSize; ++i) {
5956 int Elt = SVOp->getMaskElt(i);
5957 if (SVOp->getMaskElt(i) < 0)
5958 continue;
5959 FstVecOpNum = Elt/NumElems;
5960 FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5961 break;
5962 }
5963 for (int i = HalfSize; i < NumElems; ++i) {
5964 int Elt = SVOp->getMaskElt(i);
5965 if (SVOp->getMaskElt(i) < 0)
5966 continue;
5967 SndVecOpNum = Elt/NumElems;
5968 SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5969 break;
5970 }
5971
5972 // Extract the subvectors
5973 SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
5974 DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
5975 SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
5976 DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
5977
5978 // Generate 128-bit shuffles
5979 SmallVector<int, 16> MaskV1, MaskV2;
5980 for (int i = 0; i < HalfSize; ++i) {
5981 int Elt = SVOp->getMaskElt(i);
5982 MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5983 }
5984 for (int i = HalfSize; i < NumElems; ++i) {
5985 int Elt = SVOp->getMaskElt(i);
5986 MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5987 }
5988
5989 EVT NVT = V1.getValueType();
5990 V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
5991 V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
5992
5993 // Concatenate the result back
5994 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
5995 DAG.getConstant(0, MVT::i32), DAG, dl);
5996 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5997 DAG, dl);
5998 }
5999
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006000 return SDValue();
6001}
6002
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006003/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6004/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006005static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006006LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006007 SDValue V1 = SVOp->getOperand(0);
6008 SDValue V2 = SVOp->getOperand(1);
6009 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006010 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006011
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006012 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
6013
Evan Chengace3c172008-07-22 21:13:36 +00006014 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00006015 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00006016 SmallVector<int, 8> Mask1(4U, -1);
6017 SmallVector<int, 8> PermMask;
6018 SVOp->getMask(PermMask);
6019
Evan Chengace3c172008-07-22 21:13:36 +00006020 unsigned NumHi = 0;
6021 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006022 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006023 int Idx = PermMask[i];
6024 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006025 Locs[i] = std::make_pair(-1, -1);
6026 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006027 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6028 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006029 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006030 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006031 NumLo++;
6032 } else {
6033 Locs[i] = std::make_pair(1, NumHi);
6034 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006035 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006036 NumHi++;
6037 }
6038 }
6039 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006040
Evan Chengace3c172008-07-22 21:13:36 +00006041 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006042 // If no more than two elements come from either vector. This can be
6043 // implemented with two shuffles. First shuffle gather the elements.
6044 // The second shuffle, which takes the first shuffle as both of its
6045 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006046 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006047
Nate Begeman9008ca62009-04-27 18:41:29 +00006048 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00006049
Evan Chengace3c172008-07-22 21:13:36 +00006050 for (unsigned i = 0; i != 4; ++i) {
6051 if (Locs[i].first == -1)
6052 continue;
6053 else {
6054 unsigned Idx = (i < 2) ? 0 : 4;
6055 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006056 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006057 }
6058 }
6059
Nate Begeman9008ca62009-04-27 18:41:29 +00006060 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006061 } else if (NumLo == 3 || NumHi == 3) {
6062 // Otherwise, we must have three elements from one vector, call it X, and
6063 // one element from the other, call it Y. First, use a shufps to build an
6064 // intermediate vector with the one element from Y and the element from X
6065 // that will be in the same half in the final destination (the indexes don't
6066 // matter). Then, use a shufps to build the final vector, taking the half
6067 // containing the element from Y from the intermediate, and the other half
6068 // from X.
6069 if (NumHi == 3) {
6070 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006071 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006072 std::swap(V1, V2);
6073 }
6074
6075 // Find the element from V2.
6076 unsigned HiIndex;
6077 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006078 int Val = PermMask[HiIndex];
6079 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006080 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006081 if (Val >= 4)
6082 break;
6083 }
6084
Nate Begeman9008ca62009-04-27 18:41:29 +00006085 Mask1[0] = PermMask[HiIndex];
6086 Mask1[1] = -1;
6087 Mask1[2] = PermMask[HiIndex^1];
6088 Mask1[3] = -1;
6089 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006090
6091 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006092 Mask1[0] = PermMask[0];
6093 Mask1[1] = PermMask[1];
6094 Mask1[2] = HiIndex & 1 ? 6 : 4;
6095 Mask1[3] = HiIndex & 1 ? 4 : 6;
6096 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006097 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006098 Mask1[0] = HiIndex & 1 ? 2 : 0;
6099 Mask1[1] = HiIndex & 1 ? 0 : 2;
6100 Mask1[2] = PermMask[2];
6101 Mask1[3] = PermMask[3];
6102 if (Mask1[2] >= 0)
6103 Mask1[2] += 4;
6104 if (Mask1[3] >= 0)
6105 Mask1[3] += 4;
6106 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006107 }
Evan Chengace3c172008-07-22 21:13:36 +00006108 }
6109
6110 // Break it into (shuffle shuffle_hi, shuffle_lo).
6111 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00006112 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00006113 SmallVector<int,8> LoMask(4U, -1);
6114 SmallVector<int,8> HiMask(4U, -1);
6115
6116 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006117 unsigned MaskIdx = 0;
6118 unsigned LoIdx = 0;
6119 unsigned HiIdx = 2;
6120 for (unsigned i = 0; i != 4; ++i) {
6121 if (i == 2) {
6122 MaskPtr = &HiMask;
6123 MaskIdx = 1;
6124 LoIdx = 0;
6125 HiIdx = 2;
6126 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006127 int Idx = PermMask[i];
6128 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006129 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006130 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006131 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006132 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006133 LoIdx++;
6134 } else {
6135 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006136 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006137 HiIdx++;
6138 }
6139 }
6140
Nate Begeman9008ca62009-04-27 18:41:29 +00006141 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6142 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6143 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00006144 for (unsigned i = 0; i != 4; ++i) {
6145 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006146 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00006147 } else {
6148 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006149 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00006150 }
6151 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006152 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006153}
6154
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006155static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006156 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006157 V = V.getOperand(0);
6158 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6159 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00006160 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6161 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6162 // BUILD_VECTOR (load), undef
6163 V = V.getOperand(0);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006164 if (MayFoldLoad(V))
6165 return true;
6166 return false;
6167}
6168
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006169// FIXME: the version above should always be used. Since there's
6170// a bug where several vector shuffles can't be folded because the
6171// DAG is not updated during lowering and a node claims to have two
6172// uses while it only has one, use this version, and let isel match
6173// another instruction if the load really happens to have more than
6174// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00006175// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006176static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006177 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006178 V = V.getOperand(0);
6179 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6180 V = V.getOperand(0);
6181 if (ISD::isNormalLoad(V.getNode()))
6182 return true;
6183 return false;
6184}
6185
6186/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
6187/// a vector extract, and if both can be later optimized into a single load.
6188/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
6189/// here because otherwise a target specific shuffle node is going to be
6190/// emitted for this shuffle, and the optimization not done.
6191/// FIXME: This is probably not the best approach, but fix the problem
6192/// until the right path is decided.
6193static
6194bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
6195 const TargetLowering &TLI) {
6196 EVT VT = V.getValueType();
6197 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
6198
6199 // Be sure that the vector shuffle is present in a pattern like this:
6200 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
6201 if (!V.hasOneUse())
6202 return false;
6203
6204 SDNode *N = *V.getNode()->use_begin();
6205 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
6206 return false;
6207
6208 SDValue EltNo = N->getOperand(1);
6209 if (!isa<ConstantSDNode>(EltNo))
6210 return false;
6211
6212 // If the bit convert changed the number of elements, it is unsafe
6213 // to examine the mask.
6214 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006215 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006216 EVT SrcVT = V.getOperand(0).getValueType();
6217 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
6218 return false;
6219 V = V.getOperand(0);
6220 HasShuffleIntoBitcast = true;
6221 }
6222
6223 // Select the input vector, guarding against out of range extract vector.
6224 unsigned NumElems = VT.getVectorNumElements();
6225 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6226 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
6227 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
6228
6229 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006230 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006231 V = V.getOperand(0);
6232
6233 if (ISD::isNormalLoad(V.getNode())) {
6234 // Is the original load suitable?
6235 LoadSDNode *LN0 = cast<LoadSDNode>(V);
6236
6237 // FIXME: avoid the multi-use bug that is preventing lots of
6238 // of foldings to be detected, this is still wrong of course, but
6239 // give the temporary desired behavior, and if it happens that
6240 // the load has real more uses, during isel it will not fold, and
6241 // will generate poor code.
6242 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
6243 return false;
6244
6245 if (!HasShuffleIntoBitcast)
6246 return true;
6247
6248 // If there's a bitcast before the shuffle, check if the load type and
6249 // alignment is valid.
6250 unsigned Align = LN0->getAlignment();
6251 unsigned NewAlign =
6252 TLI.getTargetData()->getABITypeAlignment(
6253 VT.getTypeForEVT(*DAG.getContext()));
6254
6255 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
6256 return false;
6257 }
6258
6259 return true;
6260}
6261
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006262static
Evan Cheng835580f2010-10-07 20:50:20 +00006263SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6264 EVT VT = Op.getValueType();
6265
6266 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006267 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6268 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006269 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6270 V1, DAG));
6271}
6272
6273static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006274SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006275 bool HasXMMInt) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006276 SDValue V1 = Op.getOperand(0);
6277 SDValue V2 = Op.getOperand(1);
6278 EVT VT = Op.getValueType();
6279
6280 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6281
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006282 if (HasXMMInt && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006283 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6284
Evan Cheng0899f5c2011-08-31 02:05:24 +00006285 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6286 return DAG.getNode(ISD::BITCAST, dl, VT,
6287 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6288 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6289 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006290}
6291
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006292static
6293SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6294 SDValue V1 = Op.getOperand(0);
6295 SDValue V2 = Op.getOperand(1);
6296 EVT VT = Op.getValueType();
6297
6298 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6299 "unsupported shuffle type");
6300
6301 if (V2.getOpcode() == ISD::UNDEF)
6302 V2 = V1;
6303
6304 // v4i32 or v4f32
6305 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6306}
6307
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006308static inline unsigned getSHUFPOpcode(EVT VT) {
6309 switch(VT.getSimpleVT().SimpleTy) {
6310 case MVT::v8i32: // Use fp unit for int unpack.
6311 case MVT::v8f32:
6312 case MVT::v4i32: // Use fp unit for int unpack.
6313 case MVT::v4f32: return X86ISD::SHUFPS;
6314 case MVT::v4i64: // Use fp unit for int unpack.
6315 case MVT::v4f64:
6316 case MVT::v2i64: // Use fp unit for int unpack.
6317 case MVT::v2f64: return X86ISD::SHUFPD;
6318 default:
6319 llvm_unreachable("Unknown type for shufp*");
6320 }
6321 return 0;
6322}
6323
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006324static
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006325SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasXMMInt) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006326 SDValue V1 = Op.getOperand(0);
6327 SDValue V2 = Op.getOperand(1);
6328 EVT VT = Op.getValueType();
6329 unsigned NumElems = VT.getVectorNumElements();
6330
6331 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6332 // operand of these instructions is only memory, so check if there's a
6333 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6334 // same masks.
6335 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006336
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006337 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006338 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006339 CanFoldLoad = true;
6340
6341 // When V1 is a load, it can be folded later into a store in isel, example:
6342 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6343 // turns into:
6344 // (MOVLPSmr addr:$src1, VR128:$src2)
6345 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00006346 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006347 CanFoldLoad = true;
6348
Dan Gohman65fd6562011-11-03 21:49:52 +00006349 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006350 if (CanFoldLoad) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006351 if (HasXMMInt && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006352 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6353
6354 if (NumElems == 4)
Dan Gohman65fd6562011-11-03 21:49:52 +00006355 // If we don't care about the second element, procede to use movss.
6356 if (SVOp->getMaskElt(1) != -1)
6357 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006358 }
6359
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006360 // movl and movlp will both match v2i64, but v2i64 is never matched by
6361 // movl earlier because we make it strict to avoid messing with the movlp load
6362 // folding logic (see the code above getMOVLP call). Match it here then,
6363 // this is horrible, but will stay like this until we move all shuffle
6364 // matching to x86 specific nodes. Note that for the 1st condition all
6365 // types are matched with movsd.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006366 if (HasXMMInt) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00006367 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6368 // as to remove this logic from here, as much as possible
6369 if (NumElems == 2 || !X86::isMOVLMask(SVOp))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006370 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006371 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006372 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006373
6374 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6375
6376 // Invert the operand order and use SHUFPS to match it.
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006377 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V2, V1,
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006378 X86::getShuffleSHUFImmediate(SVOp), DAG);
6379}
6380
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006381static
6382SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006383 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006384 const X86Subtarget *Subtarget) {
6385 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6386 EVT VT = Op.getValueType();
6387 DebugLoc dl = Op.getDebugLoc();
6388 SDValue V1 = Op.getOperand(0);
6389 SDValue V2 = Op.getOperand(1);
6390
6391 if (isZeroShuffle(SVOp))
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006392 return getZeroVector(VT, Subtarget->hasXMMInt(), DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006393
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006394 // Handle splat operations
6395 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006396 unsigned NumElem = VT.getVectorNumElements();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006397 int Size = VT.getSizeInBits();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006398 // Special case, this is the only place now where it's allowed to return
6399 // a vector_shuffle operation without using a target specific node, because
6400 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6401 // this be moved to DAGCombine instead?
6402 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006403 return Op;
6404
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006405 // Use vbroadcast whenever the splat comes from a foldable load
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00006406 SDValue LD = isVectorBroadcast(Op, Subtarget->hasAVX2());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00006407 if (Subtarget->hasAVX() && LD.getNode())
6408 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, LD);
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006409
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006410 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006411 if ((Size == 128 && NumElem <= 4) ||
6412 (Size == 256 && NumElem < 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006413 return SDValue();
6414
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006415 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006416 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006417 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006418
6419 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6420 // do it!
6421 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6422 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6423 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006424 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006425 } else if ((VT == MVT::v4i32 ||
6426 (VT == MVT::v4f32 && Subtarget->hasXMMInt()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006427 // FIXME: Figure out a cleaner way to do this.
6428 // Try to make use of movq to zero out the top part.
6429 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6430 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6431 if (NewOp.getNode()) {
6432 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6433 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6434 DAG, Subtarget, dl);
6435 }
6436 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6437 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6438 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6439 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6440 DAG, Subtarget, dl);
6441 }
6442 }
6443 return SDValue();
6444}
6445
Dan Gohman475871a2008-07-27 21:46:04 +00006446SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006447X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006448 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006449 SDValue V1 = Op.getOperand(0);
6450 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006451 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006452 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006453 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006454 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006455 bool V1IsSplat = false;
6456 bool V2IsSplat = false;
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006457 bool HasXMMInt = Subtarget->hasXMMInt();
Craig Topperbeabc6c2011-12-05 06:56:46 +00006458 bool HasAVX = Subtarget->hasAVX();
Craig Topper6347e862011-11-21 06:57:39 +00006459 bool HasAVX2 = Subtarget->hasAVX2();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006460 MachineFunction &MF = DAG.getMachineFunction();
6461 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006462
Craig Topper3426a3e2011-11-14 06:46:21 +00006463 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006464
Craig Topper38034c52011-11-26 22:55:48 +00006465 assert(V1.getOpcode() != ISD::UNDEF && "Op 1 of shuffle should not be undef");
6466
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006467 // Vector shuffle lowering takes 3 steps:
6468 //
6469 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6470 // narrowing and commutation of operands should be handled.
6471 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6472 // shuffle nodes.
6473 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6474 // so the shuffle can be broken into other shuffles and the legalizer can
6475 // try the lowering again.
6476 //
Craig Topper3426a3e2011-11-14 06:46:21 +00006477 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006478 // be matched during isel, all of them must be converted to a target specific
6479 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006480
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006481 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6482 // narrowing and commutation of operands should be handled. The actual code
6483 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006484 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006485 if (NewOp.getNode())
6486 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006487
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006488 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6489 // unpckh_undef). Only use pshufd if speed is more important than size.
Craig Topper94438ba2011-12-16 08:06:31 +00006490 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006491 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Craig Topper94438ba2011-12-16 08:06:31 +00006492 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006493 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006494
Craig Topperc0d82852011-11-22 00:44:41 +00006495 if (X86::isMOVDDUPMask(SVOp) && Subtarget->hasSSE3orAVX() &&
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006496 V2IsUndef && RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006497 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006498
Dale Johannesen0488fb62010-09-30 23:57:10 +00006499 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006500 return getMOVHighToLow(Op, dl, DAG);
6501
6502 // Use to match splats
Craig Topperc0d82852011-11-22 00:44:41 +00006503 if (HasXMMInt && X86::isUNPCKHMask(SVOp, HasAVX2) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006504 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00006505 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006506
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006507 if (X86::isPSHUFDMask(SVOp)) {
6508 // The actual implementation will match the mask in the if above and then
6509 // during isel it can match several different instructions, not only pshufd
6510 // as its name says, sad but true, emulate the behavior for now...
6511 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6512 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6513
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006514 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6515
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006516 if (HasXMMInt && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006517 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6518
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006519 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V1,
6520 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006521 }
Eric Christopherfd179292009-08-27 18:07:15 +00006522
Evan Chengf26ffe92008-05-29 08:22:04 +00006523 // Check if this can be converted into a logical shift.
6524 bool isLeft = false;
6525 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006526 SDValue ShVal;
Craig Topperc0d82852011-11-22 00:44:41 +00006527 bool isShift = HasXMMInt && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006528 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006529 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006530 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006531 EVT EltVT = VT.getVectorElementType();
6532 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006533 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006534 }
Eric Christopherfd179292009-08-27 18:07:15 +00006535
Nate Begeman9008ca62009-04-27 18:41:29 +00006536 if (X86::isMOVLMask(SVOp)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006537 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006538 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006539 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006540 if (HasXMMInt && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006541 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6542
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006543 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006544 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6545 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006546 }
Eric Christopherfd179292009-08-27 18:07:15 +00006547
Nate Begeman9008ca62009-04-27 18:41:29 +00006548 // FIXME: fold these into legal mask.
Craig Topperc0d82852011-11-22 00:44:41 +00006549 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp, HasAVX2))
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006550 return getMOVLowToHigh(Op, dl, DAG, HasXMMInt);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006551
Dale Johannesen0488fb62010-09-30 23:57:10 +00006552 if (X86::isMOVHLPSMask(SVOp))
6553 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006554
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006555 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006556 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006557
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006558 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006559 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006560
Dale Johannesen0488fb62010-09-30 23:57:10 +00006561 if (X86::isMOVLPMask(SVOp))
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006562 return getMOVLP(Op, dl, DAG, HasXMMInt);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006563
Nate Begeman9008ca62009-04-27 18:41:29 +00006564 if (ShouldXformToMOVHLPS(SVOp) ||
6565 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6566 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006567
Evan Chengf26ffe92008-05-29 08:22:04 +00006568 if (isShift) {
6569 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006570 EVT EltVT = VT.getVectorElementType();
6571 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006572 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006573 }
Eric Christopherfd179292009-08-27 18:07:15 +00006574
Evan Cheng9eca5e82006-10-25 21:49:50 +00006575 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006576 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6577 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006578 V1IsSplat = isSplatVector(V1.getNode());
6579 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006580
Chris Lattner8a594482007-11-25 00:24:49 +00006581 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper38034c52011-11-26 22:55:48 +00006582 if (V1IsSplat && !V2IsSplat) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006583 Op = CommuteVectorShuffle(SVOp, DAG);
6584 SVOp = cast<ShuffleVectorSDNode>(Op);
6585 V1 = SVOp->getOperand(0);
6586 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006587 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006588 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006589 }
6590
Craig Topperbeabc6c2011-12-05 06:56:46 +00006591 SmallVector<int, 32> M;
6592 SVOp->getMask(M);
6593
6594 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006595 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006596 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006597 return V1;
6598 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6599 // the instruction selector will not match, so get a canonical MOVL with
6600 // swapped operands to undo the commute.
6601 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006602 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006603
Craig Topperbeabc6c2011-12-05 06:56:46 +00006604 if (isUNPCKLMask(M, VT, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006605 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006606
Craig Topperbeabc6c2011-12-05 06:56:46 +00006607 if (isUNPCKHMask(M, VT, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006608 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006609
Evan Cheng9bbbb982006-10-25 20:48:19 +00006610 if (V2IsSplat) {
6611 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006612 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006613 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006614 SDValue NewMask = NormalizeMask(SVOp, DAG);
6615 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6616 if (NSVOp != SVOp) {
Craig Topperc0d82852011-11-22 00:44:41 +00006617 if (X86::isUNPCKLMask(NSVOp, HasAVX2, true)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006618 return NewMask;
Craig Topperc0d82852011-11-22 00:44:41 +00006619 } else if (X86::isUNPCKHMask(NSVOp, HasAVX2, true)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006620 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006621 }
6622 }
6623 }
6624
Evan Cheng9eca5e82006-10-25 21:49:50 +00006625 if (Commuted) {
6626 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006627 // FIXME: this seems wrong.
6628 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6629 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006630
Craig Topperc0d82852011-11-22 00:44:41 +00006631 if (X86::isUNPCKLMask(NewSVOp, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006632 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006633
Craig Topperc0d82852011-11-22 00:44:41 +00006634 if (X86::isUNPCKHMask(NewSVOp, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006635 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006636 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006637
Nate Begeman9008ca62009-04-27 18:41:29 +00006638 // Normalize the node to match x86 shuffle ops if needed
Craig Topper1ff73d72011-12-06 04:59:07 +00006639 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true) ||
6640 isVSHUFPYMask(M, VT, HasAVX, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00006641 return CommuteVectorShuffle(SVOp, DAG);
6642
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006643 // The checks below are all present in isShuffleMaskLegal, but they are
6644 // inlined here right now to enable us to directly emit target specific
6645 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006646
Craig Topperc0d82852011-11-22 00:44:41 +00006647 if (isPALIGNRMask(M, VT, Subtarget->hasSSSE3orAVX()))
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006648 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
Craig Topperd93e4c32011-12-11 19:12:35 +00006649 getShufflePALIGNRImmediate(SVOp),
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006650 DAG);
6651
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006652 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6653 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00006654 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00006655 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006656 }
6657
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006658 if (isPSHUFHWMask(M, VT))
6659 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6660 X86::getShufflePSHUFHWImmediate(SVOp),
6661 DAG);
6662
6663 if (isPSHUFLWMask(M, VT))
6664 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6665 X86::getShufflePSHUFLWImmediate(SVOp),
6666 DAG);
6667
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006668 if (isSHUFPMask(M, VT))
6669 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6670 X86::getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006671
Craig Topper94438ba2011-12-16 08:06:31 +00006672 if (isUNPCKL_v_undef_Mask(M, VT, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006673 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Craig Topper94438ba2011-12-16 08:06:31 +00006674 if (isUNPCKH_v_undef_Mask(M, VT, HasAVX2))
Craig Topper34671b82011-12-06 08:21:25 +00006675 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006676
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006677 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006678 // Generate target specific nodes for 128 or 256-bit shuffles only
6679 // supported in the AVX instruction set.
6680 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006681
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00006682 // Handle VMOVDDUPY permutations
Craig Topperbeabc6c2011-12-05 06:56:46 +00006683 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasAVX))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00006684 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6685
Craig Topper70b883b2011-11-28 10:14:51 +00006686 // Handle VPERMILPS/D* permutations
Craig Topperbeabc6c2011-12-05 06:56:46 +00006687 if (isVPERMILPMask(M, VT, HasAVX))
Craig Topper316cd2a2011-11-30 06:25:25 +00006688 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00006689 getShuffleVPERMILPImmediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006690
Craig Topper70b883b2011-11-28 10:14:51 +00006691 // Handle VPERM2F128/VPERM2I128 permutations
Craig Topperbeabc6c2011-12-05 06:56:46 +00006692 if (isVPERM2X128Mask(M, VT, HasAVX))
Craig Topperec24e612011-11-30 07:47:51 +00006693 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00006694 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006695
Craig Topper70b883b2011-11-28 10:14:51 +00006696 // Handle VSHUFPS/DY permutations
Craig Topperbeabc6c2011-12-05 06:56:46 +00006697 if (isVSHUFPYMask(M, VT, HasAVX))
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006698 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
Craig Topper9d7025b2011-11-27 21:41:12 +00006699 getShuffleVSHUFPYImmediate(SVOp), DAG);
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006700
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006701 //===--------------------------------------------------------------------===//
6702 // Since no target specific shuffle was selected for this generic one,
6703 // lower it into other known shuffles. FIXME: this isn't true yet, but
6704 // this is the plan.
6705 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006706
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006707 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6708 if (VT == MVT::v8i16) {
6709 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6710 if (NewOp.getNode())
6711 return NewOp;
6712 }
6713
6714 if (VT == MVT::v16i8) {
6715 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6716 if (NewOp.getNode())
6717 return NewOp;
6718 }
6719
6720 // Handle all 128-bit wide vectors with 4 elements, and match them with
6721 // several different shuffle types.
6722 if (NumElems == 4 && VT.getSizeInBits() == 128)
6723 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6724
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006725 // Handle general 256-bit shuffles
6726 if (VT.is256BitVector())
6727 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6728
Dan Gohman475871a2008-07-27 21:46:04 +00006729 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006730}
6731
Dan Gohman475871a2008-07-27 21:46:04 +00006732SDValue
6733X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006734 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006735 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006736 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006737
6738 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6739 return SDValue();
6740
Duncan Sands83ec4b62008-06-06 12:08:01 +00006741 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006742 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006743 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006744 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006745 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006746 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006747 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006748 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6749 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6750 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006751 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6752 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006753 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006754 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006755 Op.getOperand(0)),
6756 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006757 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006758 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006759 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006760 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006761 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006762 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006763 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6764 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006765 // result has a single use which is a store or a bitcast to i32. And in
6766 // the case of a store, it's not worth it if the index is a constant 0,
6767 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006768 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006769 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006770 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006771 if ((User->getOpcode() != ISD::STORE ||
6772 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6773 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006774 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006775 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006776 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006777 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006778 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006779 Op.getOperand(0)),
6780 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006781 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Pete Coopera77214a2011-11-14 19:38:42 +00006782 } else if (VT == MVT::i32 || VT == MVT::i64) {
6783 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006784 if (isa<ConstantSDNode>(Op.getOperand(1)))
6785 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006786 }
Dan Gohman475871a2008-07-27 21:46:04 +00006787 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006788}
6789
6790
Dan Gohman475871a2008-07-27 21:46:04 +00006791SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006792X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6793 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006794 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006795 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006796
David Greene74a579d2011-02-10 16:57:36 +00006797 SDValue Vec = Op.getOperand(0);
6798 EVT VecVT = Vec.getValueType();
6799
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006800 // If this is a 256-bit vector result, first extract the 128-bit vector and
6801 // then extract the element from the 128-bit vector.
6802 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006803 DebugLoc dl = Op.getNode()->getDebugLoc();
6804 unsigned NumElems = VecVT.getVectorNumElements();
6805 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006806 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6807
6808 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006809 bool Upper = IdxVal >= NumElems/2;
6810 Vec = Extract128BitVector(Vec,
6811 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006812
David Greene74a579d2011-02-10 16:57:36 +00006813 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006814 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006815 }
6816
6817 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6818
Craig Topperc0d82852011-11-22 00:44:41 +00006819 if (Subtarget->hasSSE41orAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006820 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006821 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006822 return Res;
6823 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006824
Owen Andersone50ed302009-08-10 22:56:29 +00006825 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006826 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006827 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006828 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006829 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006830 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006831 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006832 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6833 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006834 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006835 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006836 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006837 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006838 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006839 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006840 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006841 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006842 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006843 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006844 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006845 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006846 if (Idx == 0)
6847 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006848
Evan Cheng0db9fe62006-04-25 20:13:52 +00006849 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006850 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006851 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006852 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006853 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006854 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006855 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006856 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006857 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6858 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6859 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006860 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006861 if (Idx == 0)
6862 return Op;
6863
6864 // UNPCKHPD the element to the lowest double word, then movsd.
6865 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6866 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006867 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006868 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006869 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006870 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006871 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006872 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006873 }
6874
Dan Gohman475871a2008-07-27 21:46:04 +00006875 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006876}
6877
Dan Gohman475871a2008-07-27 21:46:04 +00006878SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006879X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6880 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006881 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006882 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006883 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006884
Dan Gohman475871a2008-07-27 21:46:04 +00006885 SDValue N0 = Op.getOperand(0);
6886 SDValue N1 = Op.getOperand(1);
6887 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006888
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006889 if (VT.getSizeInBits() == 256)
6890 return SDValue();
6891
Dan Gohman8a55ce42009-09-23 21:02:20 +00006892 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006893 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006894 unsigned Opc;
6895 if (VT == MVT::v8i16)
6896 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006897 else if (VT == MVT::v16i8)
6898 Opc = X86ISD::PINSRB;
6899 else
6900 Opc = X86ISD::PINSRB;
6901
Nate Begeman14d12ca2008-02-11 04:19:36 +00006902 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6903 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006904 if (N1.getValueType() != MVT::i32)
6905 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6906 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006907 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006908 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006909 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006910 // Bits [7:6] of the constant are the source select. This will always be
6911 // zero here. The DAG Combiner may combine an extract_elt index into these
6912 // bits. For example (insert (extract, 3), 2) could be matched by putting
6913 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006914 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006915 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006916 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006917 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006918 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006919 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006920 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006921 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Pete Coopera77214a2011-11-14 19:38:42 +00006922 } else if ((EltVT == MVT::i32 || EltVT == MVT::i64) &&
6923 isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006924 // PINSR* works with constant index.
6925 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006926 }
Dan Gohman475871a2008-07-27 21:46:04 +00006927 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006928}
6929
Dan Gohman475871a2008-07-27 21:46:04 +00006930SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006931X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006932 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006933 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006934
David Greene6b381262011-02-09 15:32:06 +00006935 DebugLoc dl = Op.getDebugLoc();
6936 SDValue N0 = Op.getOperand(0);
6937 SDValue N1 = Op.getOperand(1);
6938 SDValue N2 = Op.getOperand(2);
6939
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006940 // If this is a 256-bit vector result, first extract the 128-bit vector,
6941 // insert the element into the extracted half and then place it back.
6942 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006943 if (!isa<ConstantSDNode>(N2))
6944 return SDValue();
6945
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006946 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006947 unsigned NumElems = VT.getVectorNumElements();
6948 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006949 bool Upper = IdxVal >= NumElems/2;
6950 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6951 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006952
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006953 // Insert the element into the desired half.
6954 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6955 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006956
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006957 // Insert the changed part back to the 256-bit vector
6958 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006959 }
6960
Craig Topperc0d82852011-11-22 00:44:41 +00006961 if (Subtarget->hasSSE41orAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006962 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6963
Dan Gohman8a55ce42009-09-23 21:02:20 +00006964 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006965 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006966
Dan Gohman8a55ce42009-09-23 21:02:20 +00006967 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006968 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6969 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006970 if (N1.getValueType() != MVT::i32)
6971 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6972 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006973 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006974 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006975 }
Dan Gohman475871a2008-07-27 21:46:04 +00006976 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006977}
6978
Dan Gohman475871a2008-07-27 21:46:04 +00006979SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006980X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006981 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006982 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006983 EVT OpVT = Op.getValueType();
6984
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006985 // If this is a 256-bit vector result, first insert into a 128-bit
6986 // vector and then insert into the 256-bit vector.
6987 if (OpVT.getSizeInBits() > 128) {
6988 // Insert into a 128-bit vector.
6989 EVT VT128 = EVT::getVectorVT(*Context,
6990 OpVT.getVectorElementType(),
6991 OpVT.getVectorNumElements() / 2);
6992
6993 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6994
6995 // Insert the 128-bit vector.
6996 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6997 DAG.getConstant(0, MVT::i32),
6998 DAG, dl);
6999 }
7000
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007001 if (Op.getValueType() == MVT::v1i64 &&
7002 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007003 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007004
Owen Anderson825b72b2009-08-11 20:47:22 +00007005 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00007006 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
7007 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007008 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00007009 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007010}
7011
David Greene91585092011-01-26 15:38:49 +00007012// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7013// a simple subregister reference or explicit instructions to grab
7014// upper bits of a vector.
7015SDValue
7016X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7017 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00007018 DebugLoc dl = Op.getNode()->getDebugLoc();
7019 SDValue Vec = Op.getNode()->getOperand(0);
7020 SDValue Idx = Op.getNode()->getOperand(1);
7021
7022 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
7023 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
7024 return Extract128BitVector(Vec, Idx, DAG, dl);
7025 }
David Greene91585092011-01-26 15:38:49 +00007026 }
7027 return SDValue();
7028}
7029
David Greenecfe33c42011-01-26 19:13:22 +00007030// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7031// simple superregister reference or explicit instructions to insert
7032// the upper bits of a vector.
7033SDValue
7034X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7035 if (Subtarget->hasAVX()) {
7036 DebugLoc dl = Op.getNode()->getDebugLoc();
7037 SDValue Vec = Op.getNode()->getOperand(0);
7038 SDValue SubVec = Op.getNode()->getOperand(1);
7039 SDValue Idx = Op.getNode()->getOperand(2);
7040
7041 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
7042 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00007043 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007044 }
7045 }
7046 return SDValue();
7047}
7048
Bill Wendling056292f2008-09-16 21:48:12 +00007049// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7050// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7051// one of the above mentioned nodes. It has to be wrapped because otherwise
7052// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7053// be used to form addressing mode. These wrapped nodes will be selected
7054// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007055SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007056X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007057 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007058
Chris Lattner41621a22009-06-26 19:22:52 +00007059 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7060 // global base reg.
7061 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007062 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007063 CodeModel::Model M = getTargetMachine().getCodeModel();
7064
Chris Lattner4f066492009-07-11 20:29:19 +00007065 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007066 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007067 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007068 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007069 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007070 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007071 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007072
Evan Cheng1606e8e2009-03-13 07:51:59 +00007073 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007074 CP->getAlignment(),
7075 CP->getOffset(), OpFlag);
7076 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00007077 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007078 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007079 if (OpFlag) {
7080 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007081 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007082 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007083 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007084 }
7085
7086 return Result;
7087}
7088
Dan Gohmand858e902010-04-17 15:26:15 +00007089SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007090 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007091
Chris Lattner18c59872009-06-27 04:16:01 +00007092 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7093 // global base reg.
7094 unsigned char OpFlag = 0;
7095 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007096 CodeModel::Model M = getTargetMachine().getCodeModel();
7097
Chris Lattner4f066492009-07-11 20:29:19 +00007098 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007099 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007100 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007101 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007102 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007103 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007104 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007105
Chris Lattner18c59872009-06-27 04:16:01 +00007106 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7107 OpFlag);
7108 DebugLoc DL = JT->getDebugLoc();
7109 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007110
Chris Lattner18c59872009-06-27 04:16:01 +00007111 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007112 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007113 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7114 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007115 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007116 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007117
Chris Lattner18c59872009-06-27 04:16:01 +00007118 return Result;
7119}
7120
7121SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007122X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007123 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007124
Chris Lattner18c59872009-06-27 04:16:01 +00007125 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7126 // global base reg.
7127 unsigned char OpFlag = 0;
7128 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007129 CodeModel::Model M = getTargetMachine().getCodeModel();
7130
Chris Lattner4f066492009-07-11 20:29:19 +00007131 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007132 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7133 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7134 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007135 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007136 } else if (Subtarget->isPICStyleGOT()) {
7137 OpFlag = X86II::MO_GOT;
7138 } else if (Subtarget->isPICStyleStubPIC()) {
7139 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7140 } else if (Subtarget->isPICStyleStubNoDynamic()) {
7141 OpFlag = X86II::MO_DARWIN_NONLAZY;
7142 }
Eric Christopherfd179292009-08-27 18:07:15 +00007143
Chris Lattner18c59872009-06-27 04:16:01 +00007144 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00007145
Chris Lattner18c59872009-06-27 04:16:01 +00007146 DebugLoc DL = Op.getDebugLoc();
7147 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007148
7149
Chris Lattner18c59872009-06-27 04:16:01 +00007150 // With PIC, the address is actually $g + Offset.
7151 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00007152 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00007153 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7154 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007155 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007156 Result);
7157 }
Eric Christopherfd179292009-08-27 18:07:15 +00007158
Eli Friedman586272d2011-08-11 01:48:05 +00007159 // For symbols that require a load from a stub to get the address, emit the
7160 // load.
7161 if (isGlobalStubReference(OpFlag))
7162 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007163 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00007164
Chris Lattner18c59872009-06-27 04:16:01 +00007165 return Result;
7166}
7167
Dan Gohman475871a2008-07-27 21:46:04 +00007168SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007169X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007170 // Create the TargetBlockAddressAddress node.
7171 unsigned char OpFlags =
7172 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00007173 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00007174 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00007175 DebugLoc dl = Op.getDebugLoc();
7176 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7177 /*isTarget=*/true, OpFlags);
7178
Dan Gohmanf705adb2009-10-30 01:28:02 +00007179 if (Subtarget->isPICStyleRIPRel() &&
7180 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007181 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7182 else
7183 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007184
Dan Gohman29cbade2009-11-20 23:18:13 +00007185 // With PIC, the address is actually $g + Offset.
7186 if (isGlobalRelativeToPICBase(OpFlags)) {
7187 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7188 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7189 Result);
7190 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007191
7192 return Result;
7193}
7194
7195SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007196X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00007197 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00007198 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007199 // Create the TargetGlobalAddress node, folding in the constant
7200 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007201 unsigned char OpFlags =
7202 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007203 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007204 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007205 if (OpFlags == X86II::MO_NO_FLAG &&
7206 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007207 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007208 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007209 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007210 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007211 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007212 }
Eric Christopherfd179292009-08-27 18:07:15 +00007213
Chris Lattner4f066492009-07-11 20:29:19 +00007214 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007215 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007216 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7217 else
7218 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007219
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007220 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007221 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007222 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7223 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007224 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007225 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007226
Chris Lattner36c25012009-07-10 07:34:39 +00007227 // For globals that require a load from a stub to get the address, emit the
7228 // load.
7229 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007230 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007231 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007232
Dan Gohman6520e202008-10-18 02:06:02 +00007233 // If there was a non-zero offset that we didn't fold, create an explicit
7234 // addition for it.
7235 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007236 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007237 DAG.getConstant(Offset, getPointerTy()));
7238
Evan Cheng0db9fe62006-04-25 20:13:52 +00007239 return Result;
7240}
7241
Evan Chengda43bcf2008-09-24 00:05:32 +00007242SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007243X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007244 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007245 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007246 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007247}
7248
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007249static SDValue
7250GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007251 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00007252 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007253 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007254 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007255 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007256 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007257 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007258 GA->getOffset(),
7259 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007260 if (InFlag) {
7261 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007262 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007263 } else {
7264 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007265 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007266 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007267
7268 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007269 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007270
Rafael Espindola15f1b662009-04-24 12:59:40 +00007271 SDValue Flag = Chain.getValue(1);
7272 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007273}
7274
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007275// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007276static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007277LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007278 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007279 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007280 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7281 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007282 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007283 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007284 InFlag = Chain.getValue(1);
7285
Chris Lattnerb903bed2009-06-26 21:20:29 +00007286 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007287}
7288
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007289// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007290static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007291LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007292 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007293 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7294 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007295}
7296
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007297// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7298// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007299static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007300 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00007301 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007302 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007303
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007304 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7305 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7306 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007307
Michael J. Spencerec38de22010-10-10 22:04:20 +00007308 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007309 DAG.getIntPtrConstant(0),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007310 MachinePointerInfo(Ptr),
7311 false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007312
Chris Lattnerb903bed2009-06-26 21:20:29 +00007313 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007314 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7315 // initialexec.
7316 unsigned WrapperKind = X86ISD::Wrapper;
7317 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007318 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00007319 } else if (is64Bit) {
7320 assert(model == TLSModel::InitialExec);
7321 OperandFlags = X86II::MO_GOTTPOFF;
7322 WrapperKind = X86ISD::WrapperRIP;
7323 } else {
7324 assert(model == TLSModel::InitialExec);
7325 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00007326 }
Eric Christopherfd179292009-08-27 18:07:15 +00007327
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007328 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7329 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007330 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007331 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007332 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007333 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007334
Rafael Espindola9a580232009-02-27 13:37:18 +00007335 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007336 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007337 MachinePointerInfo::getGOT(), false, false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007338
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007339 // The address of the thread local variable is the add of the thread
7340 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007341 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007342}
7343
Dan Gohman475871a2008-07-27 21:46:04 +00007344SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007345X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007346
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007347 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007348 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007349
Eric Christopher30ef0e52010-06-03 04:07:48 +00007350 if (Subtarget->isTargetELF()) {
7351 // TODO: implement the "local dynamic" model
7352 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00007353
Eric Christopher30ef0e52010-06-03 04:07:48 +00007354 // If GV is an alias then use the aliasee for determining
7355 // thread-localness.
7356 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7357 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007358
7359 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00007360 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007361
Eric Christopher30ef0e52010-06-03 04:07:48 +00007362 switch (model) {
7363 case TLSModel::GeneralDynamic:
7364 case TLSModel::LocalDynamic: // not implemented
7365 if (Subtarget->is64Bit())
7366 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7367 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007368
Eric Christopher30ef0e52010-06-03 04:07:48 +00007369 case TLSModel::InitialExec:
7370 case TLSModel::LocalExec:
7371 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7372 Subtarget->is64Bit());
7373 }
7374 } else if (Subtarget->isTargetDarwin()) {
7375 // Darwin only has one model of TLS. Lower to that.
7376 unsigned char OpFlag = 0;
7377 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7378 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007379
Eric Christopher30ef0e52010-06-03 04:07:48 +00007380 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7381 // global base reg.
7382 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7383 !Subtarget->is64Bit();
7384 if (PIC32)
7385 OpFlag = X86II::MO_TLVP_PIC_BASE;
7386 else
7387 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007388 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007389 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007390 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007391 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007392 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007393
Eric Christopher30ef0e52010-06-03 04:07:48 +00007394 // With PIC32, the address is actually $g + Offset.
7395 if (PIC32)
7396 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7397 DAG.getNode(X86ISD::GlobalBaseReg,
7398 DebugLoc(), getPointerTy()),
7399 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007400
Eric Christopher30ef0e52010-06-03 04:07:48 +00007401 // Lowering the machine isd will make sure everything is in the right
7402 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007403 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007404 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007405 SDValue Args[] = { Chain, Offset };
7406 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007407
Eric Christopher30ef0e52010-06-03 04:07:48 +00007408 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7409 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7410 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007411
Eric Christopher30ef0e52010-06-03 04:07:48 +00007412 // And our return value (tls address) is in the standard call return value
7413 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007414 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00007415 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
7416 Chain.getValue(1));
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007417 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007418
Eric Christopher30ef0e52010-06-03 04:07:48 +00007419 assert(false &&
7420 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007421
Torok Edwinc23197a2009-07-14 16:55:14 +00007422 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007423 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007424}
7425
Evan Cheng0db9fe62006-04-25 20:13:52 +00007426
Nadav Rotem43012222011-05-11 08:12:09 +00007427/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007428/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007429SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007430 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007431 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007432 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007433 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007434 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007435 SDValue ShOpLo = Op.getOperand(0);
7436 SDValue ShOpHi = Op.getOperand(1);
7437 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007438 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007439 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007440 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007441
Dan Gohman475871a2008-07-27 21:46:04 +00007442 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007443 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007444 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7445 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007446 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007447 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7448 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007449 }
Evan Chenge3413162006-01-09 18:33:28 +00007450
Owen Anderson825b72b2009-08-11 20:47:22 +00007451 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7452 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007453 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007454 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007455
Dan Gohman475871a2008-07-27 21:46:04 +00007456 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007457 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007458 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7459 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007460
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007461 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007462 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7463 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007464 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007465 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7466 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007467 }
7468
Dan Gohman475871a2008-07-27 21:46:04 +00007469 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007470 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007471}
Evan Chenga3195e82006-01-12 22:54:21 +00007472
Dan Gohmand858e902010-04-17 15:26:15 +00007473SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7474 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007475 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007476
Dale Johannesen0488fb62010-09-30 23:57:10 +00007477 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007478 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007479
Owen Anderson825b72b2009-08-11 20:47:22 +00007480 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007481 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007482
Eli Friedman36df4992009-05-27 00:47:34 +00007483 // These are really Legal; return the operand so the caller accepts it as
7484 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007485 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007486 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007487 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007488 Subtarget->is64Bit()) {
7489 return Op;
7490 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007491
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007492 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007493 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007494 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007495 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007496 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007497 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007498 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007499 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007500 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007501 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7502}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007503
Owen Andersone50ed302009-08-10 22:56:29 +00007504SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007505 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007506 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007507 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007508 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007509 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007510 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007511 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007512 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007513 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007514 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007515
Chris Lattner492a43e2010-09-22 01:28:21 +00007516 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007517
Stuart Hastings84be9582011-06-02 15:57:11 +00007518 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7519 MachineMemOperand *MMO;
7520 if (FI) {
7521 int SSFI = FI->getIndex();
7522 MMO =
7523 DAG.getMachineFunction()
7524 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7525 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7526 } else {
7527 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7528 StackSlot = StackSlot.getOperand(1);
7529 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007530 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007531 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7532 X86ISD::FILD, DL,
7533 Tys, Ops, array_lengthof(Ops),
7534 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007535
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007536 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007537 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007538 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007539
7540 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7541 // shouldn't be necessary except that RFP cannot be live across
7542 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007543 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007544 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7545 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007546 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007547 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007548 SDValue Ops[] = {
7549 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7550 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007551 MachineMemOperand *MMO =
7552 DAG.getMachineFunction()
7553 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007554 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007555
Chris Lattner492a43e2010-09-22 01:28:21 +00007556 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7557 Ops, array_lengthof(Ops),
7558 Op.getValueType(), MMO);
7559 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007560 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007561 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007562 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007563
Evan Cheng0db9fe62006-04-25 20:13:52 +00007564 return Result;
7565}
7566
Bill Wendling8b8a6362009-01-17 03:56:04 +00007567// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007568SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7569 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007570 // This algorithm is not obvious. Here it is in C code, more or less:
7571 /*
7572 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7573 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7574 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007575
Bill Wendling8b8a6362009-01-17 03:56:04 +00007576 // Copy ints to xmm registers.
7577 __m128i xh = _mm_cvtsi32_si128( hi );
7578 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007579
Bill Wendling8b8a6362009-01-17 03:56:04 +00007580 // Combine into low half of a single xmm register.
7581 __m128i x = _mm_unpacklo_epi32( xh, xl );
7582 __m128d d;
7583 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007584
Bill Wendling8b8a6362009-01-17 03:56:04 +00007585 // Merge in appropriate exponents to give the integer bits the right
7586 // magnitude.
7587 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007588
Bill Wendling8b8a6362009-01-17 03:56:04 +00007589 // Subtract away the biases to deal with the IEEE-754 double precision
7590 // implicit 1.
7591 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007592
Bill Wendling8b8a6362009-01-17 03:56:04 +00007593 // All conversions up to here are exact. The correctly rounded result is
7594 // calculated using the current rounding mode using the following
7595 // horizontal add.
7596 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7597 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7598 // store doesn't really need to be here (except
7599 // maybe to zero the other double)
7600 return sd;
7601 }
7602 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007603
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007604 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007605 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007606
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007607 // Build some magic constants.
Chad Rosier01d426e2011-12-15 01:16:09 +00007608 SmallVector<Constant*,4> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007609 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7610 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7611 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7612 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007613 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007614 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007615
Chad Rosier01d426e2011-12-15 01:16:09 +00007616 SmallVector<Constant*,2> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007617 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007618 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007619 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007620 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007621 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007622 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007623
Owen Anderson825b72b2009-08-11 20:47:22 +00007624 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7625 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007626 Op.getOperand(0),
7627 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007628 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7629 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007630 Op.getOperand(0),
7631 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007632 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7633 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007634 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007635 false, false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007636 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007637 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007638 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007639 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007640 false, false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007641 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007642
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007643 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007644 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007645 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7646 DAG.getUNDEF(MVT::v2f64), ShufMask);
7647 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7648 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007649 DAG.getIntPtrConstant(0));
7650}
7651
Bill Wendling8b8a6362009-01-17 03:56:04 +00007652// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007653SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7654 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007655 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007656 // FP constant to bias correct the final result.
7657 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007658 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007659
7660 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007661 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007662 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007663
Eli Friedmanf3704762011-08-29 21:15:46 +00007664 // Zero out the upper parts of the register.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007665 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget->hasXMMInt(),
7666 DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00007667
Owen Anderson825b72b2009-08-11 20:47:22 +00007668 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007669 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007670 DAG.getIntPtrConstant(0));
7671
7672 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007673 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007674 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007675 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007676 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007677 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007678 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007679 MVT::v2f64, Bias)));
7680 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007681 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007682 DAG.getIntPtrConstant(0));
7683
7684 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007685 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007686
7687 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007688 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007689
Owen Anderson825b72b2009-08-11 20:47:22 +00007690 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007691 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007692 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007693 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007694 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007695 }
7696
7697 // Handle final rounding.
7698 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007699}
7700
Dan Gohmand858e902010-04-17 15:26:15 +00007701SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7702 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007703 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007704 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007705
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007706 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007707 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7708 // the optimization here.
7709 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007710 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007711
Owen Andersone50ed302009-08-10 22:56:29 +00007712 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007713 EVT DstVT = Op.getValueType();
7714 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007715 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007716 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007717 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007718
7719 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007720 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007721 if (SrcVT == MVT::i32) {
7722 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7723 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7724 getPointerTy(), StackSlot, WordOff);
7725 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007726 StackSlot, MachinePointerInfo(),
7727 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007728 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007729 OffsetSlot, MachinePointerInfo(),
7730 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007731 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7732 return Fild;
7733 }
7734
7735 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7736 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007737 StackSlot, MachinePointerInfo(),
7738 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007739 // For i64 source, we need to add the appropriate power of 2 if the input
7740 // was negative. This is the same as the optimization in
7741 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7742 // we must be careful to do the computation in x87 extended precision, not
7743 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007744 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7745 MachineMemOperand *MMO =
7746 DAG.getMachineFunction()
7747 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7748 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007749
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007750 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7751 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007752 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7753 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007754
7755 APInt FF(32, 0x5F800000ULL);
7756
7757 // Check whether the sign bit is set.
7758 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7759 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7760 ISD::SETLT);
7761
7762 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7763 SDValue FudgePtr = DAG.getConstantPool(
7764 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7765 getPointerTy());
7766
7767 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7768 SDValue Zero = DAG.getIntPtrConstant(0);
7769 SDValue Four = DAG.getIntPtrConstant(4);
7770 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7771 Zero, Four);
7772 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7773
7774 // Load the value out, extending it from f32 to f80.
7775 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007776 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007777 FudgePtr, MachinePointerInfo::getConstantPool(),
7778 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007779 // Extend everything to 80 bits to force it to be done on x87.
7780 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7781 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007782}
7783
Dan Gohman475871a2008-07-27 21:46:04 +00007784std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007785FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007786 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007787
Owen Andersone50ed302009-08-10 22:56:29 +00007788 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007789
7790 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007791 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7792 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007793 }
7794
Owen Anderson825b72b2009-08-11 20:47:22 +00007795 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7796 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007797 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007798
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007799 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007800 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007801 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007802 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007803 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007804 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007805 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007806 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007807
Evan Cheng87c89352007-10-15 20:11:21 +00007808 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7809 // stack slot.
7810 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007811 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007812 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007813 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007814
Michael J. Spencerec38de22010-10-10 22:04:20 +00007815
7816
Evan Cheng0db9fe62006-04-25 20:13:52 +00007817 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007818 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007819 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007820 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7821 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7822 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007823 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007824
Dan Gohman475871a2008-07-27 21:46:04 +00007825 SDValue Chain = DAG.getEntryNode();
7826 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007827 EVT TheVT = Op.getOperand(0).getValueType();
7828 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007829 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007830 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007831 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007832 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007833 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007834 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007835 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007836 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007837
Chris Lattner492a43e2010-09-22 01:28:21 +00007838 MachineMemOperand *MMO =
7839 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7840 MachineMemOperand::MOLoad, MemSize, MemSize);
7841 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7842 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007843 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007844 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007845 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7846 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007847
Chris Lattner07290932010-09-22 01:05:16 +00007848 MachineMemOperand *MMO =
7849 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7850 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007851
Evan Cheng0db9fe62006-04-25 20:13:52 +00007852 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007853 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007854 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7855 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007856
Chris Lattner27a6c732007-11-24 07:07:01 +00007857 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007858}
7859
Dan Gohmand858e902010-04-17 15:26:15 +00007860SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7861 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007862 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007863 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007864
Eli Friedman948e95a2009-05-23 09:59:16 +00007865 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007866 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007867 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7868 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007869
Chris Lattner27a6c732007-11-24 07:07:01 +00007870 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007871 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007872 FIST, StackSlot, MachinePointerInfo(),
7873 false, false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007874}
7875
Dan Gohmand858e902010-04-17 15:26:15 +00007876SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7877 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007878 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7879 SDValue FIST = Vals.first, StackSlot = Vals.second;
7880 assert(FIST.getNode() && "Unexpected failure");
7881
7882 // Load the result.
7883 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007884 FIST, StackSlot, MachinePointerInfo(),
7885 false, false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007886}
7887
Dan Gohmand858e902010-04-17 15:26:15 +00007888SDValue X86TargetLowering::LowerFABS(SDValue Op,
7889 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007890 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007891 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007892 EVT VT = Op.getValueType();
7893 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007894 if (VT.isVector())
7895 EltVT = VT.getVectorElementType();
Chad Rosier01d426e2011-12-15 01:16:09 +00007896 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007897 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007898 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Chad Rosier01d426e2011-12-15 01:16:09 +00007899 CV.assign(2, C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007900 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007901 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Chad Rosier01d426e2011-12-15 01:16:09 +00007902 CV.assign(4, C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007903 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007904 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007905 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007906 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007907 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007908 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007909 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007910}
7911
Dan Gohmand858e902010-04-17 15:26:15 +00007912SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007913 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007914 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007915 EVT VT = Op.getValueType();
7916 EVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00007917 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
7918 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007919 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00007920 NumElts = VT.getVectorNumElements();
7921 }
7922 SmallVector<Constant*,8> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007923 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007924 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Chad Rosiera860b182011-12-15 01:02:25 +00007925 CV.assign(NumElts, C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007926 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007927 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Chad Rosiera860b182011-12-15 01:02:25 +00007928 CV.assign(NumElts, C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007929 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007930 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007931 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007932 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007933 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007934 false, false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007935 if (VT.isVector()) {
Chad Rosiera860b182011-12-15 01:02:25 +00007936 MVT XORVT = VT.getSizeInBits() == 128 ? MVT::v2i64 : MVT::v4i64;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007937 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00007938 DAG.getNode(ISD::XOR, dl, XORVT,
7939 DAG.getNode(ISD::BITCAST, dl, XORVT,
Dale Johannesenace16102009-02-03 19:33:06 +00007940 Op.getOperand(0)),
Chad Rosiera860b182011-12-15 01:02:25 +00007941 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007942 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007943 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007944 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007945}
7946
Dan Gohmand858e902010-04-17 15:26:15 +00007947SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007948 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007949 SDValue Op0 = Op.getOperand(0);
7950 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007951 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007952 EVT VT = Op.getValueType();
7953 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007954
7955 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007956 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007957 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007958 SrcVT = VT;
7959 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007960 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007961 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007962 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007963 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007964 }
7965
7966 // At this point the operands and the result should have the same
7967 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007968
Evan Cheng68c47cb2007-01-05 07:55:56 +00007969 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00007970 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007971 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007972 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7973 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007974 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007975 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7976 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7977 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7978 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007979 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007980 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007981 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007982 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007983 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007984 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007985 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007986
7987 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007988 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007989 // Op0 is MVT::f32, Op1 is MVT::f64.
7990 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7991 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7992 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007993 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007994 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007995 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007996 }
7997
Evan Cheng73d6cf12007-01-05 21:37:56 +00007998 // Clear first operand sign bit.
7999 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00008000 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008001 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8002 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008003 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008004 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8005 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8006 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8007 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008008 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008009 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008010 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008011 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008012 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008013 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008014 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008015
8016 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00008017 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008018}
8019
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00008020SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
8021 SDValue N0 = Op.getOperand(0);
8022 DebugLoc dl = Op.getDebugLoc();
8023 EVT VT = Op.getValueType();
8024
8025 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8026 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8027 DAG.getConstant(1, VT));
8028 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8029}
8030
Dan Gohman076aee32009-03-04 19:44:21 +00008031/// Emit nodes that will be selected as "test Op0,Op0", or something
8032/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008033SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008034 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008035 DebugLoc dl = Op.getDebugLoc();
8036
Dan Gohman31125812009-03-07 01:58:32 +00008037 // CF and OF aren't always set the way we want. Determine which
8038 // of these we need.
8039 bool NeedCF = false;
8040 bool NeedOF = false;
8041 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008042 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00008043 case X86::COND_A: case X86::COND_AE:
8044 case X86::COND_B: case X86::COND_BE:
8045 NeedCF = true;
8046 break;
8047 case X86::COND_G: case X86::COND_GE:
8048 case X86::COND_L: case X86::COND_LE:
8049 case X86::COND_O: case X86::COND_NO:
8050 NeedOF = true;
8051 break;
Dan Gohman31125812009-03-07 01:58:32 +00008052 }
8053
Dan Gohman076aee32009-03-04 19:44:21 +00008054 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00008055 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8056 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008057 if (Op.getResNo() != 0 || NeedOF || NeedCF)
8058 // Emit a CMP with 0, which is the TEST pattern.
8059 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8060 DAG.getConstant(0, Op.getValueType()));
8061
8062 unsigned Opcode = 0;
8063 unsigned NumOperands = 0;
8064 switch (Op.getNode()->getOpcode()) {
8065 case ISD::ADD:
8066 // Due to an isel shortcoming, be conservative if this add is likely to be
8067 // selected as part of a load-modify-store instruction. When the root node
8068 // in a match is a store, isel doesn't know how to remap non-chain non-flag
8069 // uses of other nodes in the match, such as the ADD in this case. This
8070 // leads to the ADD being left around and reselected, with the result being
8071 // two adds in the output. Alas, even if none our users are stores, that
8072 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
8073 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
8074 // climbing the DAG back to the root, and it doesn't seem to be worth the
8075 // effort.
8076 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00008077 UE = Op.getNode()->use_end(); UI != UE; ++UI)
8078 if (UI->getOpcode() != ISD::CopyToReg &&
8079 UI->getOpcode() != ISD::SETCC &&
8080 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008081 goto default_case;
8082
8083 if (ConstantSDNode *C =
8084 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
8085 // An add of one will be selected as an INC.
8086 if (C->getAPIntValue() == 1) {
8087 Opcode = X86ISD::INC;
8088 NumOperands = 1;
8089 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00008090 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008091
8092 // An add of negative one (subtract of one) will be selected as a DEC.
8093 if (C->getAPIntValue().isAllOnesValue()) {
8094 Opcode = X86ISD::DEC;
8095 NumOperands = 1;
8096 break;
8097 }
Dan Gohman076aee32009-03-04 19:44:21 +00008098 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008099
8100 // Otherwise use a regular EFLAGS-setting add.
8101 Opcode = X86ISD::ADD;
8102 NumOperands = 2;
8103 break;
8104 case ISD::AND: {
8105 // If the primary and result isn't used, don't bother using X86ISD::AND,
8106 // because a TEST instruction will be better.
8107 bool NonFlagUse = false;
8108 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8109 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8110 SDNode *User = *UI;
8111 unsigned UOpNo = UI.getOperandNo();
8112 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8113 // Look pass truncate.
8114 UOpNo = User->use_begin().getOperandNo();
8115 User = *User->use_begin();
8116 }
8117
8118 if (User->getOpcode() != ISD::BRCOND &&
8119 User->getOpcode() != ISD::SETCC &&
8120 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
8121 NonFlagUse = true;
8122 break;
8123 }
Dan Gohman076aee32009-03-04 19:44:21 +00008124 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008125
8126 if (!NonFlagUse)
8127 break;
8128 }
8129 // FALL THROUGH
8130 case ISD::SUB:
8131 case ISD::OR:
8132 case ISD::XOR:
8133 // Due to the ISEL shortcoming noted above, be conservative if this op is
8134 // likely to be selected as part of a load-modify-store instruction.
8135 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8136 UE = Op.getNode()->use_end(); UI != UE; ++UI)
8137 if (UI->getOpcode() == ISD::STORE)
8138 goto default_case;
8139
8140 // Otherwise use a regular EFLAGS-setting instruction.
8141 switch (Op.getNode()->getOpcode()) {
8142 default: llvm_unreachable("unexpected operator!");
8143 case ISD::SUB: Opcode = X86ISD::SUB; break;
8144 case ISD::OR: Opcode = X86ISD::OR; break;
8145 case ISD::XOR: Opcode = X86ISD::XOR; break;
8146 case ISD::AND: Opcode = X86ISD::AND; break;
8147 }
8148
8149 NumOperands = 2;
8150 break;
8151 case X86ISD::ADD:
8152 case X86ISD::SUB:
8153 case X86ISD::INC:
8154 case X86ISD::DEC:
8155 case X86ISD::OR:
8156 case X86ISD::XOR:
8157 case X86ISD::AND:
8158 return SDValue(Op.getNode(), 1);
8159 default:
8160 default_case:
8161 break;
Dan Gohman076aee32009-03-04 19:44:21 +00008162 }
8163
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008164 if (Opcode == 0)
8165 // Emit a CMP with 0, which is the TEST pattern.
8166 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8167 DAG.getConstant(0, Op.getValueType()));
8168
8169 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8170 SmallVector<SDValue, 4> Ops;
8171 for (unsigned i = 0; i != NumOperands; ++i)
8172 Ops.push_back(Op.getOperand(i));
8173
8174 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8175 DAG.ReplaceAllUsesWith(Op, New);
8176 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00008177}
8178
8179/// Emit nodes that will be selected as "cmp Op0,Op1", or something
8180/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008181SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008182 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008183 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8184 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00008185 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00008186
8187 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008188 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00008189}
8190
Evan Chengd40d03e2010-01-06 19:38:29 +00008191/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8192/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00008193SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8194 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008195 SDValue Op0 = And.getOperand(0);
8196 SDValue Op1 = And.getOperand(1);
8197 if (Op0.getOpcode() == ISD::TRUNCATE)
8198 Op0 = Op0.getOperand(0);
8199 if (Op1.getOpcode() == ISD::TRUNCATE)
8200 Op1 = Op1.getOperand(0);
8201
Evan Chengd40d03e2010-01-06 19:38:29 +00008202 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008203 if (Op1.getOpcode() == ISD::SHL)
8204 std::swap(Op0, Op1);
8205 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008206 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8207 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008208 // If we looked past a truncate, check that it's only truncating away
8209 // known zeros.
8210 unsigned BitWidth = Op0.getValueSizeInBits();
8211 unsigned AndBitWidth = And.getValueSizeInBits();
8212 if (BitWidth > AndBitWidth) {
8213 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8214 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8215 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8216 return SDValue();
8217 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008218 LHS = Op1;
8219 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00008220 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008221 } else if (Op1.getOpcode() == ISD::Constant) {
8222 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00008223 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00008224 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00008225
8226 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008227 LHS = AndLHS.getOperand(0);
8228 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008229 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00008230
8231 // Use BT if the immediate can't be encoded in a TEST instruction.
8232 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
8233 LHS = AndLHS;
8234 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
8235 }
Evan Chengd40d03e2010-01-06 19:38:29 +00008236 }
Evan Cheng0488db92007-09-25 01:57:46 +00008237
Evan Chengd40d03e2010-01-06 19:38:29 +00008238 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00008239 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00008240 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00008241 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00008242 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00008243 // Also promote i16 to i32 for performance / code size reason.
8244 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00008245 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00008246 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00008247
Evan Chengd40d03e2010-01-06 19:38:29 +00008248 // If the operand types disagree, extend the shift amount to match. Since
8249 // BT ignores high bits (like shifts) we can use anyextend.
8250 if (LHS.getValueType() != RHS.getValueType())
8251 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008252
Evan Chengd40d03e2010-01-06 19:38:29 +00008253 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8254 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8255 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8256 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00008257 }
8258
Evan Cheng54de3ea2010-01-05 06:52:31 +00008259 return SDValue();
8260}
8261
Dan Gohmand858e902010-04-17 15:26:15 +00008262SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Duncan Sands28b77e92011-09-06 19:07:46 +00008263
8264 if (Op.getValueType().isVector()) return LowerVSETCC(Op, DAG);
8265
Evan Cheng54de3ea2010-01-05 06:52:31 +00008266 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8267 SDValue Op0 = Op.getOperand(0);
8268 SDValue Op1 = Op.getOperand(1);
8269 DebugLoc dl = Op.getDebugLoc();
8270 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8271
8272 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00008273 // Lower (X & (1 << N)) == 0 to BT(X, N).
8274 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8275 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00008276 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008277 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00008278 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008279 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8280 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8281 if (NewSetCC.getNode())
8282 return NewSetCC;
8283 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00008284
Chris Lattner481eebc2010-12-19 21:23:48 +00008285 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
8286 // these.
8287 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00008288 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00008289 cast<ConstantSDNode>(Op1)->isNullValue()) &&
8290 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008291
Chris Lattner481eebc2010-12-19 21:23:48 +00008292 // If the input is a setcc, then reuse the input setcc or use a new one with
8293 // the inverted condition.
8294 if (Op0.getOpcode() == X86ISD::SETCC) {
8295 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8296 bool Invert = (CC == ISD::SETNE) ^
8297 cast<ConstantSDNode>(Op1)->isNullValue();
8298 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008299
Evan Cheng2c755ba2010-02-27 07:36:59 +00008300 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00008301 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8302 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8303 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008304 }
8305
Evan Chenge5b51ac2010-04-17 06:13:15 +00008306 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00008307 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008308 if (X86CC == X86::COND_INVALID)
8309 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008310
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008311 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00008312 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008313 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00008314}
8315
Craig Topper89af15e2011-09-18 08:03:58 +00008316// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008317// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00008318static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008319 EVT VT = Op.getValueType();
8320
Duncan Sands28b77e92011-09-06 19:07:46 +00008321 assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008322 "Unsupported value type for operation");
8323
8324 int NumElems = VT.getVectorNumElements();
8325 DebugLoc dl = Op.getDebugLoc();
8326 SDValue CC = Op.getOperand(2);
8327 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
8328 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
8329
8330 // Extract the LHS vectors
8331 SDValue LHS = Op.getOperand(0);
8332 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
8333 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
8334
8335 // Extract the RHS vectors
8336 SDValue RHS = Op.getOperand(1);
8337 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
8338 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
8339
8340 // Issue the operation on the smaller types and concatenate the result back
8341 MVT EltVT = VT.getVectorElementType().getSimpleVT();
8342 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8343 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8344 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8345 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8346}
8347
8348
Dan Gohmand858e902010-04-17 15:26:15 +00008349SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008350 SDValue Cond;
8351 SDValue Op0 = Op.getOperand(0);
8352 SDValue Op1 = Op.getOperand(1);
8353 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00008354 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00008355 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8356 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008357 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00008358
8359 if (isFP) {
8360 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008361 EVT EltVT = Op0.getValueType().getVectorElementType();
8362 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8363
8364 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00008365 bool Swap = false;
8366
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00008367 // SSE Condition code mapping:
8368 // 0 - EQ
8369 // 1 - LT
8370 // 2 - LE
8371 // 3 - UNORD
8372 // 4 - NEQ
8373 // 5 - NLT
8374 // 6 - NLE
8375 // 7 - ORD
Nate Begeman30a0de92008-07-17 16:51:19 +00008376 switch (SetCCOpcode) {
8377 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008378 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00008379 case ISD::SETEQ: SSECC = 0; break;
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00008380 case ISD::SETOGT:
8381 case ISD::SETGT: Swap = true; // Fallthrough
Bruno Cardoso Lopes457d53d2011-09-12 21:24:07 +00008382 case ISD::SETLT:
8383 case ISD::SETOLT: SSECC = 1; break;
8384 case ISD::SETOGE:
8385 case ISD::SETGE: Swap = true; // Fallthrough
Nate Begeman30a0de92008-07-17 16:51:19 +00008386 case ISD::SETLE:
8387 case ISD::SETOLE: SSECC = 2; break;
8388 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008389 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00008390 case ISD::SETNE: SSECC = 4; break;
8391 case ISD::SETULE: Swap = true;
8392 case ISD::SETUGE: SSECC = 5; break;
8393 case ISD::SETULT: Swap = true;
8394 case ISD::SETUGT: SSECC = 6; break;
8395 case ISD::SETO: SSECC = 7; break;
8396 }
8397 if (Swap)
8398 std::swap(Op0, Op1);
8399
Nate Begemanfb8ead02008-07-25 19:05:58 +00008400 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00008401 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00008402 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00008403 SDValue UNORD, EQ;
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008404 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8405 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008406 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Craig Topper0a150352011-11-09 08:06:13 +00008407 } else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00008408 SDValue ORD, NEQ;
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008409 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8410 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008411 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008412 }
Torok Edwinc23197a2009-07-14 16:55:14 +00008413 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00008414 }
8415 // Handle all other FP comparisons here.
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008416 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00008417 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008418
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008419 // Break 256-bit integer vector compare into smaller ones.
Craig Topper0a150352011-11-09 08:06:13 +00008420 if (VT.getSizeInBits() == 256 && !Subtarget->hasAVX2())
Craig Topper89af15e2011-09-18 08:03:58 +00008421 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008422
Nate Begeman30a0de92008-07-17 16:51:19 +00008423 // We are handling one of the integer comparisons here. Since SSE only has
8424 // GT and EQ comparisons for integer, swapping operands and multiple
8425 // operations may be required for some comparisons.
8426 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8427 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008428
Craig Topper0a150352011-11-09 08:06:13 +00008429 switch (VT.getVectorElementType().getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00008430 default: break;
Craig Topper0a150352011-11-09 08:06:13 +00008431 case MVT::i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
8432 case MVT::i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
8433 case MVT::i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8434 case MVT::i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008435 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008436
Nate Begeman30a0de92008-07-17 16:51:19 +00008437 switch (SetCCOpcode) {
8438 default: break;
8439 case ISD::SETNE: Invert = true;
8440 case ISD::SETEQ: Opc = EQOpc; break;
8441 case ISD::SETLT: Swap = true;
8442 case ISD::SETGT: Opc = GTOpc; break;
8443 case ISD::SETGE: Swap = true;
8444 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8445 case ISD::SETULT: Swap = true;
8446 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8447 case ISD::SETUGE: Swap = true;
8448 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8449 }
8450 if (Swap)
8451 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008452
Eli Friedman7d3e2b72011-09-28 21:00:25 +00008453 // Check that the operation in question is available (most are plain SSE2,
8454 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topperc0d82852011-11-22 00:44:41 +00008455 if (Opc == X86ISD::PCMPGTQ && !Subtarget->hasSSE42orAVX())
Eli Friedman7d3e2b72011-09-28 21:00:25 +00008456 return SDValue();
Craig Topperc0d82852011-11-22 00:44:41 +00008457 if (Opc == X86ISD::PCMPEQQ && !Subtarget->hasSSE41orAVX())
Eli Friedman7d3e2b72011-09-28 21:00:25 +00008458 return SDValue();
8459
Nate Begeman30a0de92008-07-17 16:51:19 +00008460 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8461 // bits of the inputs before performing those operations.
8462 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008463 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008464 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8465 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008466 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008467 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8468 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008469 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8470 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008471 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008472
Dale Johannesenace16102009-02-03 19:33:06 +00008473 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008474
8475 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008476 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008477 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008478
Nate Begeman30a0de92008-07-17 16:51:19 +00008479 return Result;
8480}
Evan Cheng0488db92007-09-25 01:57:46 +00008481
Evan Cheng370e5342008-12-03 08:38:43 +00008482// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008483static bool isX86LogicalCmp(SDValue Op) {
8484 unsigned Opc = Op.getNode()->getOpcode();
8485 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8486 return true;
8487 if (Op.getResNo() == 1 &&
8488 (Opc == X86ISD::ADD ||
8489 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008490 Opc == X86ISD::ADC ||
8491 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008492 Opc == X86ISD::SMUL ||
8493 Opc == X86ISD::UMUL ||
8494 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008495 Opc == X86ISD::DEC ||
8496 Opc == X86ISD::OR ||
8497 Opc == X86ISD::XOR ||
8498 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008499 return true;
8500
Chris Lattner9637d5b2010-12-05 07:49:54 +00008501 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8502 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008503
Dan Gohman076aee32009-03-04 19:44:21 +00008504 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008505}
8506
Chris Lattnera2b56002010-12-05 01:23:24 +00008507static bool isZero(SDValue V) {
8508 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8509 return C && C->isNullValue();
8510}
8511
Chris Lattner96908b12010-12-05 02:00:51 +00008512static bool isAllOnes(SDValue V) {
8513 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8514 return C && C->isAllOnesValue();
8515}
8516
Dan Gohmand858e902010-04-17 15:26:15 +00008517SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008518 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008519 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008520 SDValue Op1 = Op.getOperand(1);
8521 SDValue Op2 = Op.getOperand(2);
8522 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008523 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008524
Dan Gohman1a492952009-10-20 16:22:37 +00008525 if (Cond.getOpcode() == ISD::SETCC) {
8526 SDValue NewCond = LowerSETCC(Cond, DAG);
8527 if (NewCond.getNode())
8528 Cond = NewCond;
8529 }
Evan Cheng734503b2006-09-11 02:19:56 +00008530
Chris Lattnera2b56002010-12-05 01:23:24 +00008531 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008532 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008533 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008534 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008535 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008536 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8537 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008538 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008539
Chris Lattnera2b56002010-12-05 01:23:24 +00008540 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008541
8542 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008543 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8544 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008545
8546 SDValue CmpOp0 = Cmp.getOperand(0);
8547 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8548 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008549
Chris Lattner96908b12010-12-05 02:00:51 +00008550 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008551 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8552 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008553
Chris Lattner96908b12010-12-05 02:00:51 +00008554 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8555 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008556
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008557 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008558 if (N2C == 0 || !N2C->isNullValue())
8559 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8560 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008561 }
8562 }
8563
Chris Lattnera2b56002010-12-05 01:23:24 +00008564 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008565 if (Cond.getOpcode() == ISD::AND &&
8566 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8567 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008568 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008569 Cond = Cond.getOperand(0);
8570 }
8571
Evan Cheng3f41d662007-10-08 22:16:29 +00008572 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8573 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +00008574 unsigned CondOpcode = Cond.getOpcode();
8575 if (CondOpcode == X86ISD::SETCC ||
8576 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008577 CC = Cond.getOperand(0);
8578
Dan Gohman475871a2008-07-27 21:46:04 +00008579 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008580 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008581 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008582
Evan Cheng3f41d662007-10-08 22:16:29 +00008583 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008584 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008585 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008586 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008587
Chris Lattnerd1980a52009-03-12 06:52:53 +00008588 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8589 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008590 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008591 addTest = false;
8592 }
Dan Gohman65fd6562011-11-03 21:49:52 +00008593 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
8594 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
8595 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
8596 Cond.getOperand(0).getValueType() != MVT::i8)) {
8597 SDValue LHS = Cond.getOperand(0);
8598 SDValue RHS = Cond.getOperand(1);
8599 unsigned X86Opcode;
8600 unsigned X86Cond;
8601 SDVTList VTs;
8602 switch (CondOpcode) {
8603 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
8604 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
8605 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
8606 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
8607 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
8608 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
8609 default: llvm_unreachable("unexpected overflowing operator");
8610 }
8611 if (CondOpcode == ISD::UMULO)
8612 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
8613 MVT::i32);
8614 else
8615 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
8616
8617 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
8618
8619 if (CondOpcode == ISD::UMULO)
8620 Cond = X86Op.getValue(2);
8621 else
8622 Cond = X86Op.getValue(1);
8623
8624 CC = DAG.getConstant(X86Cond, MVT::i8);
8625 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +00008626 }
8627
8628 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008629 // Look pass the truncate.
8630 if (Cond.getOpcode() == ISD::TRUNCATE)
8631 Cond = Cond.getOperand(0);
8632
8633 // We know the result of AND is compared against zero. Try to match
8634 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008635 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008636 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008637 if (NewSetCC.getNode()) {
8638 CC = NewSetCC.getOperand(0);
8639 Cond = NewSetCC.getOperand(1);
8640 addTest = false;
8641 }
8642 }
8643 }
8644
8645 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008646 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008647 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008648 }
8649
Benjamin Kramere915ff32010-12-22 23:09:28 +00008650 // a < b ? -1 : 0 -> RES = ~setcc_carry
8651 // a < b ? 0 : -1 -> RES = setcc_carry
8652 // a >= b ? -1 : 0 -> RES = setcc_carry
8653 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8654 if (Cond.getOpcode() == X86ISD::CMP) {
8655 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8656
8657 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8658 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8659 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8660 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8661 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8662 return DAG.getNOT(DL, Res, Res.getValueType());
8663 return Res;
8664 }
8665 }
8666
Evan Cheng0488db92007-09-25 01:57:46 +00008667 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8668 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008669 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008670 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008671 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008672}
8673
Evan Cheng370e5342008-12-03 08:38:43 +00008674// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8675// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8676// from the AND / OR.
8677static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8678 Opc = Op.getOpcode();
8679 if (Opc != ISD::OR && Opc != ISD::AND)
8680 return false;
8681 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8682 Op.getOperand(0).hasOneUse() &&
8683 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8684 Op.getOperand(1).hasOneUse());
8685}
8686
Evan Cheng961d6d42009-02-02 08:19:07 +00008687// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8688// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008689static bool isXor1OfSetCC(SDValue Op) {
8690 if (Op.getOpcode() != ISD::XOR)
8691 return false;
8692 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8693 if (N1C && N1C->getAPIntValue() == 1) {
8694 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8695 Op.getOperand(0).hasOneUse();
8696 }
8697 return false;
8698}
8699
Dan Gohmand858e902010-04-17 15:26:15 +00008700SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008701 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008702 SDValue Chain = Op.getOperand(0);
8703 SDValue Cond = Op.getOperand(1);
8704 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008705 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008706 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +00008707 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +00008708
Dan Gohman1a492952009-10-20 16:22:37 +00008709 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +00008710 // Check for setcc([su]{add,sub,mul}o == 0).
8711 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
8712 isa<ConstantSDNode>(Cond.getOperand(1)) &&
8713 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
8714 Cond.getOperand(0).getResNo() == 1 &&
8715 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
8716 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
8717 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
8718 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
8719 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
8720 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
8721 Inverted = true;
8722 Cond = Cond.getOperand(0);
8723 } else {
8724 SDValue NewCond = LowerSETCC(Cond, DAG);
8725 if (NewCond.getNode())
8726 Cond = NewCond;
8727 }
Dan Gohman1a492952009-10-20 16:22:37 +00008728 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008729#if 0
8730 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008731 else if (Cond.getOpcode() == X86ISD::ADD ||
8732 Cond.getOpcode() == X86ISD::SUB ||
8733 Cond.getOpcode() == X86ISD::SMUL ||
8734 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008735 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008736#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008737
Evan Chengad9c0a32009-12-15 00:53:42 +00008738 // Look pass (and (setcc_carry (cmp ...)), 1).
8739 if (Cond.getOpcode() == ISD::AND &&
8740 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8741 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008742 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008743 Cond = Cond.getOperand(0);
8744 }
8745
Evan Cheng3f41d662007-10-08 22:16:29 +00008746 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8747 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +00008748 unsigned CondOpcode = Cond.getOpcode();
8749 if (CondOpcode == X86ISD::SETCC ||
8750 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008751 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008752
Dan Gohman475871a2008-07-27 21:46:04 +00008753 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008754 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008755 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008756 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008757 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008758 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008759 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008760 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008761 default: break;
8762 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008763 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008764 // These can only come from an arithmetic instruction with overflow,
8765 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008766 Cond = Cond.getNode()->getOperand(1);
8767 addTest = false;
8768 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008769 }
Evan Cheng0488db92007-09-25 01:57:46 +00008770 }
Dan Gohman65fd6562011-11-03 21:49:52 +00008771 }
8772 CondOpcode = Cond.getOpcode();
8773 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
8774 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
8775 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
8776 Cond.getOperand(0).getValueType() != MVT::i8)) {
8777 SDValue LHS = Cond.getOperand(0);
8778 SDValue RHS = Cond.getOperand(1);
8779 unsigned X86Opcode;
8780 unsigned X86Cond;
8781 SDVTList VTs;
8782 switch (CondOpcode) {
8783 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
8784 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
8785 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
8786 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
8787 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
8788 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
8789 default: llvm_unreachable("unexpected overflowing operator");
8790 }
8791 if (Inverted)
8792 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
8793 if (CondOpcode == ISD::UMULO)
8794 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
8795 MVT::i32);
8796 else
8797 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
8798
8799 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
8800
8801 if (CondOpcode == ISD::UMULO)
8802 Cond = X86Op.getValue(2);
8803 else
8804 Cond = X86Op.getValue(1);
8805
8806 CC = DAG.getConstant(X86Cond, MVT::i8);
8807 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +00008808 } else {
8809 unsigned CondOpc;
8810 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8811 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008812 if (CondOpc == ISD::OR) {
8813 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8814 // two branches instead of an explicit OR instruction with a
8815 // separate test.
8816 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008817 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008818 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008819 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008820 Chain, Dest, CC, Cmp);
8821 CC = Cond.getOperand(1).getOperand(0);
8822 Cond = Cmp;
8823 addTest = false;
8824 }
8825 } else { // ISD::AND
8826 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8827 // two branches instead of an explicit AND instruction with a
8828 // separate test. However, we only do this if this block doesn't
8829 // have a fall-through edge, because this requires an explicit
8830 // jmp when the condition is false.
8831 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008832 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008833 Op.getNode()->hasOneUse()) {
8834 X86::CondCode CCode =
8835 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8836 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008837 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008838 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008839 // Look for an unconditional branch following this conditional branch.
8840 // We need this because we need to reverse the successors in order
8841 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008842 if (User->getOpcode() == ISD::BR) {
8843 SDValue FalseBB = User->getOperand(1);
8844 SDNode *NewBR =
8845 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008846 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008847 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008848 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008849
Dale Johannesene4d209d2009-02-03 20:21:25 +00008850 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008851 Chain, Dest, CC, Cmp);
8852 X86::CondCode CCode =
8853 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8854 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008855 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008856 Cond = Cmp;
8857 addTest = false;
8858 }
8859 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008860 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008861 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8862 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8863 // It should be transformed during dag combiner except when the condition
8864 // is set by a arithmetics with overflow node.
8865 X86::CondCode CCode =
8866 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8867 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008868 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008869 Cond = Cond.getOperand(0).getOperand(1);
8870 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +00008871 } else if (Cond.getOpcode() == ISD::SETCC &&
8872 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
8873 // For FCMP_OEQ, we can emit
8874 // two branches instead of an explicit AND instruction with a
8875 // separate test. However, we only do this if this block doesn't
8876 // have a fall-through edge, because this requires an explicit
8877 // jmp when the condition is false.
8878 if (Op.getNode()->hasOneUse()) {
8879 SDNode *User = *Op.getNode()->use_begin();
8880 // Look for an unconditional branch following this conditional branch.
8881 // We need this because we need to reverse the successors in order
8882 // to implement FCMP_OEQ.
8883 if (User->getOpcode() == ISD::BR) {
8884 SDValue FalseBB = User->getOperand(1);
8885 SDNode *NewBR =
8886 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
8887 assert(NewBR == User);
8888 (void)NewBR;
8889 Dest = FalseBB;
8890
8891 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8892 Cond.getOperand(0), Cond.getOperand(1));
8893 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8894 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
8895 Chain, Dest, CC, Cmp);
8896 CC = DAG.getConstant(X86::COND_P, MVT::i8);
8897 Cond = Cmp;
8898 addTest = false;
8899 }
8900 }
8901 } else if (Cond.getOpcode() == ISD::SETCC &&
8902 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
8903 // For FCMP_UNE, we can emit
8904 // two branches instead of an explicit AND instruction with a
8905 // separate test. However, we only do this if this block doesn't
8906 // have a fall-through edge, because this requires an explicit
8907 // jmp when the condition is false.
8908 if (Op.getNode()->hasOneUse()) {
8909 SDNode *User = *Op.getNode()->use_begin();
8910 // Look for an unconditional branch following this conditional branch.
8911 // We need this because we need to reverse the successors in order
8912 // to implement FCMP_UNE.
8913 if (User->getOpcode() == ISD::BR) {
8914 SDValue FalseBB = User->getOperand(1);
8915 SDNode *NewBR =
8916 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
8917 assert(NewBR == User);
8918 (void)NewBR;
8919
8920 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
8921 Cond.getOperand(0), Cond.getOperand(1));
8922 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8923 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
8924 Chain, Dest, CC, Cmp);
8925 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
8926 Cond = Cmp;
8927 addTest = false;
8928 Dest = FalseBB;
8929 }
8930 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008931 }
Evan Cheng0488db92007-09-25 01:57:46 +00008932 }
8933
8934 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008935 // Look pass the truncate.
8936 if (Cond.getOpcode() == ISD::TRUNCATE)
8937 Cond = Cond.getOperand(0);
8938
8939 // We know the result of AND is compared against zero. Try to match
8940 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008941 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008942 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8943 if (NewSetCC.getNode()) {
8944 CC = NewSetCC.getOperand(0);
8945 Cond = NewSetCC.getOperand(1);
8946 addTest = false;
8947 }
8948 }
8949 }
8950
8951 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008952 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008953 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008954 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008955 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008956 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008957}
8958
Anton Korobeynikove060b532007-04-17 19:34:00 +00008959
8960// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8961// Calls to _alloca is needed to probe the stack when allocating more than 4k
8962// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8963// that the guard pages used by the OS virtual memory manager are allocated in
8964// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008965SDValue
8966X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008967 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008968 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +00008969 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008970 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +00008971 "are being used");
8972 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008973 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008974
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008975 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008976 SDValue Chain = Op.getOperand(0);
8977 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008978 // FIXME: Ensure alignment here
8979
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008980 bool Is64Bit = Subtarget->is64Bit();
8981 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008982
Nick Lewycky8a8d4792011-12-02 22:16:29 +00008983 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008984 MachineFunction &MF = DAG.getMachineFunction();
8985 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008986
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008987 if (Is64Bit) {
8988 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +00008989 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008990 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008991
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008992 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
8993 I != E; I++)
8994 if (I->hasNestAttr())
8995 report_fatal_error("Cannot use segmented stacks with functions that "
8996 "have nested arguments.");
8997 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008998
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008999 const TargetRegisterClass *AddrRegClass =
9000 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
9001 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
9002 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
9003 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
9004 DAG.getRegister(Vreg, SPTy));
9005 SDValue Ops1[2] = { Value, Chain };
9006 return DAG.getMergeValues(Ops1, 2, dl);
9007 } else {
9008 SDValue Flag;
9009 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00009010
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009011 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
9012 Flag = Chain.getValue(1);
9013 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00009014
Rafael Espindola151ab3e2011-08-30 19:47:04 +00009015 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
9016 Flag = Chain.getValue(1);
9017
9018 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
9019
9020 SDValue Ops1[2] = { Chain.getValue(0), Chain };
9021 return DAG.getMergeValues(Ops1, 2, dl);
9022 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009023}
9024
Dan Gohmand858e902010-04-17 15:26:15 +00009025SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00009026 MachineFunction &MF = DAG.getMachineFunction();
9027 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
9028
Dan Gohman69de1932008-02-06 22:27:42 +00009029 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00009030 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00009031
Anton Korobeynikove7beda12010-10-03 22:52:07 +00009032 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00009033 // vastart just stores the address of the VarArgsFrameIndex slot into the
9034 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00009035 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9036 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00009037 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
9038 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009039 }
9040
9041 // __va_list_tag:
9042 // gp_offset (0 - 6 * 8)
9043 // fp_offset (48 - 48 + 8 * 16)
9044 // overflow_arg_area (point to parameters coming in memory).
9045 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00009046 SmallVector<SDValue, 8> MemOps;
9047 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00009048 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00009049 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00009050 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
9051 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009052 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009053 MemOps.push_back(Store);
9054
9055 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00009056 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009057 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009058 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00009059 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
9060 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009061 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009062 MemOps.push_back(Store);
9063
9064 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00009065 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009066 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00009067 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9068 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00009069 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
9070 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00009071 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009072 MemOps.push_back(Store);
9073
9074 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00009075 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009076 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00009077 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
9078 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00009079 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
9080 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009081 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009082 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00009083 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00009084}
9085
Dan Gohmand858e902010-04-17 15:26:15 +00009086SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00009087 assert(Subtarget->is64Bit() &&
9088 "LowerVAARG only handles 64-bit va_arg!");
9089 assert((Subtarget->isTargetLinux() ||
9090 Subtarget->isTargetDarwin()) &&
9091 "Unhandled target in LowerVAARG");
9092 assert(Op.getNode()->getNumOperands() == 4);
9093 SDValue Chain = Op.getOperand(0);
9094 SDValue SrcPtr = Op.getOperand(1);
9095 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9096 unsigned Align = Op.getConstantOperandVal(3);
9097 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00009098
Dan Gohman320afb82010-10-12 18:00:49 +00009099 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009100 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00009101 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
9102 uint8_t ArgMode;
9103
9104 // Decide which area this value should be read from.
9105 // TODO: Implement the AMD64 ABI in its entirety. This simple
9106 // selection mechanism works only for the basic types.
9107 if (ArgVT == MVT::f80) {
9108 llvm_unreachable("va_arg for f80 not yet implemented");
9109 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
9110 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
9111 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
9112 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
9113 } else {
9114 llvm_unreachable("Unhandled argument type in LowerVAARG");
9115 }
9116
9117 if (ArgMode == 2) {
9118 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00009119 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00009120 !(DAG.getMachineFunction()
9121 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00009122 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00009123 }
9124
9125 // Insert VAARG_64 node into the DAG
9126 // VAARG_64 returns two values: Variable Argument Address, Chain
9127 SmallVector<SDValue, 11> InstOps;
9128 InstOps.push_back(Chain);
9129 InstOps.push_back(SrcPtr);
9130 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
9131 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
9132 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
9133 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
9134 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
9135 VTs, &InstOps[0], InstOps.size(),
9136 MVT::i64,
9137 MachinePointerInfo(SV),
9138 /*Align=*/0,
9139 /*Volatile=*/false,
9140 /*ReadMem=*/true,
9141 /*WriteMem=*/true);
9142 Chain = VAARG.getValue(1);
9143
9144 // Load the next argument and return it
9145 return DAG.getLoad(ArgVT, dl,
9146 Chain,
9147 VAARG,
9148 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009149 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00009150}
9151
Dan Gohmand858e902010-04-17 15:26:15 +00009152SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00009153 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00009154 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00009155 SDValue Chain = Op.getOperand(0);
9156 SDValue DstPtr = Op.getOperand(1);
9157 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00009158 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
9159 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00009160 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00009161
Chris Lattnere72f2022010-09-21 05:40:29 +00009162 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00009163 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00009164 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00009165 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00009166}
9167
Dan Gohman475871a2008-07-27 21:46:04 +00009168SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00009169X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009170 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009171 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009172 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00009173 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00009174 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00009175 case Intrinsic::x86_sse_comieq_ss:
9176 case Intrinsic::x86_sse_comilt_ss:
9177 case Intrinsic::x86_sse_comile_ss:
9178 case Intrinsic::x86_sse_comigt_ss:
9179 case Intrinsic::x86_sse_comige_ss:
9180 case Intrinsic::x86_sse_comineq_ss:
9181 case Intrinsic::x86_sse_ucomieq_ss:
9182 case Intrinsic::x86_sse_ucomilt_ss:
9183 case Intrinsic::x86_sse_ucomile_ss:
9184 case Intrinsic::x86_sse_ucomigt_ss:
9185 case Intrinsic::x86_sse_ucomige_ss:
9186 case Intrinsic::x86_sse_ucomineq_ss:
9187 case Intrinsic::x86_sse2_comieq_sd:
9188 case Intrinsic::x86_sse2_comilt_sd:
9189 case Intrinsic::x86_sse2_comile_sd:
9190 case Intrinsic::x86_sse2_comigt_sd:
9191 case Intrinsic::x86_sse2_comige_sd:
9192 case Intrinsic::x86_sse2_comineq_sd:
9193 case Intrinsic::x86_sse2_ucomieq_sd:
9194 case Intrinsic::x86_sse2_ucomilt_sd:
9195 case Intrinsic::x86_sse2_ucomile_sd:
9196 case Intrinsic::x86_sse2_ucomigt_sd:
9197 case Intrinsic::x86_sse2_ucomige_sd:
9198 case Intrinsic::x86_sse2_ucomineq_sd: {
9199 unsigned Opc = 0;
9200 ISD::CondCode CC = ISD::SETCC_INVALID;
9201 switch (IntNo) {
9202 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009203 case Intrinsic::x86_sse_comieq_ss:
9204 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009205 Opc = X86ISD::COMI;
9206 CC = ISD::SETEQ;
9207 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009208 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009209 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009210 Opc = X86ISD::COMI;
9211 CC = ISD::SETLT;
9212 break;
9213 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009214 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009215 Opc = X86ISD::COMI;
9216 CC = ISD::SETLE;
9217 break;
9218 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009219 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009220 Opc = X86ISD::COMI;
9221 CC = ISD::SETGT;
9222 break;
9223 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009224 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009225 Opc = X86ISD::COMI;
9226 CC = ISD::SETGE;
9227 break;
9228 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009229 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009230 Opc = X86ISD::COMI;
9231 CC = ISD::SETNE;
9232 break;
9233 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009234 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009235 Opc = X86ISD::UCOMI;
9236 CC = ISD::SETEQ;
9237 break;
9238 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009239 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009240 Opc = X86ISD::UCOMI;
9241 CC = ISD::SETLT;
9242 break;
9243 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009244 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009245 Opc = X86ISD::UCOMI;
9246 CC = ISD::SETLE;
9247 break;
9248 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009249 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009250 Opc = X86ISD::UCOMI;
9251 CC = ISD::SETGT;
9252 break;
9253 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009254 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009255 Opc = X86ISD::UCOMI;
9256 CC = ISD::SETGE;
9257 break;
9258 case Intrinsic::x86_sse_ucomineq_ss:
9259 case Intrinsic::x86_sse2_ucomineq_sd:
9260 Opc = X86ISD::UCOMI;
9261 CC = ISD::SETNE;
9262 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009263 }
Evan Cheng734503b2006-09-11 02:19:56 +00009264
Dan Gohman475871a2008-07-27 21:46:04 +00009265 SDValue LHS = Op.getOperand(1);
9266 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00009267 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00009268 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009269 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
9270 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9271 DAG.getConstant(X86CC, MVT::i8), Cond);
9272 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00009273 }
Duncan Sands04aa4ae2011-09-23 16:10:22 +00009274 // Arithmetic intrinsics.
9275 case Intrinsic::x86_sse3_hadd_ps:
9276 case Intrinsic::x86_sse3_hadd_pd:
9277 case Intrinsic::x86_avx_hadd_ps_256:
9278 case Intrinsic::x86_avx_hadd_pd_256:
9279 return DAG.getNode(X86ISD::FHADD, dl, Op.getValueType(),
9280 Op.getOperand(1), Op.getOperand(2));
9281 case Intrinsic::x86_sse3_hsub_ps:
9282 case Intrinsic::x86_sse3_hsub_pd:
9283 case Intrinsic::x86_avx_hsub_ps_256:
9284 case Intrinsic::x86_avx_hsub_pd_256:
9285 return DAG.getNode(X86ISD::FHSUB, dl, Op.getValueType(),
9286 Op.getOperand(1), Op.getOperand(2));
Craig Topper98fc7292011-11-19 17:46:46 +00009287 case Intrinsic::x86_avx2_psllv_d:
9288 case Intrinsic::x86_avx2_psllv_q:
9289 case Intrinsic::x86_avx2_psllv_d_256:
9290 case Intrinsic::x86_avx2_psllv_q_256:
9291 return DAG.getNode(ISD::SHL, dl, Op.getValueType(),
9292 Op.getOperand(1), Op.getOperand(2));
9293 case Intrinsic::x86_avx2_psrlv_d:
9294 case Intrinsic::x86_avx2_psrlv_q:
9295 case Intrinsic::x86_avx2_psrlv_d_256:
9296 case Intrinsic::x86_avx2_psrlv_q_256:
9297 return DAG.getNode(ISD::SRL, dl, Op.getValueType(),
9298 Op.getOperand(1), Op.getOperand(2));
9299 case Intrinsic::x86_avx2_psrav_d:
9300 case Intrinsic::x86_avx2_psrav_d_256:
9301 return DAG.getNode(ISD::SRA, dl, Op.getValueType(),
9302 Op.getOperand(1), Op.getOperand(2));
9303
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009304 // ptest and testp intrinsics. The intrinsic these come from are designed to
9305 // return an integer value, not just an instruction so lower it to the ptest
9306 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00009307 case Intrinsic::x86_sse41_ptestz:
9308 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009309 case Intrinsic::x86_sse41_ptestnzc:
9310 case Intrinsic::x86_avx_ptestz_256:
9311 case Intrinsic::x86_avx_ptestc_256:
9312 case Intrinsic::x86_avx_ptestnzc_256:
9313 case Intrinsic::x86_avx_vtestz_ps:
9314 case Intrinsic::x86_avx_vtestc_ps:
9315 case Intrinsic::x86_avx_vtestnzc_ps:
9316 case Intrinsic::x86_avx_vtestz_pd:
9317 case Intrinsic::x86_avx_vtestc_pd:
9318 case Intrinsic::x86_avx_vtestnzc_pd:
9319 case Intrinsic::x86_avx_vtestz_ps_256:
9320 case Intrinsic::x86_avx_vtestc_ps_256:
9321 case Intrinsic::x86_avx_vtestnzc_ps_256:
9322 case Intrinsic::x86_avx_vtestz_pd_256:
9323 case Intrinsic::x86_avx_vtestc_pd_256:
9324 case Intrinsic::x86_avx_vtestnzc_pd_256: {
9325 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00009326 unsigned X86CC = 0;
9327 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00009328 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009329 case Intrinsic::x86_avx_vtestz_ps:
9330 case Intrinsic::x86_avx_vtestz_pd:
9331 case Intrinsic::x86_avx_vtestz_ps_256:
9332 case Intrinsic::x86_avx_vtestz_pd_256:
9333 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009334 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009335 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009336 // ZF = 1
9337 X86CC = X86::COND_E;
9338 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009339 case Intrinsic::x86_avx_vtestc_ps:
9340 case Intrinsic::x86_avx_vtestc_pd:
9341 case Intrinsic::x86_avx_vtestc_ps_256:
9342 case Intrinsic::x86_avx_vtestc_pd_256:
9343 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009344 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009345 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009346 // CF = 1
9347 X86CC = X86::COND_B;
9348 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009349 case Intrinsic::x86_avx_vtestnzc_ps:
9350 case Intrinsic::x86_avx_vtestnzc_pd:
9351 case Intrinsic::x86_avx_vtestnzc_ps_256:
9352 case Intrinsic::x86_avx_vtestnzc_pd_256:
9353 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00009354 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009355 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009356 // ZF and CF = 0
9357 X86CC = X86::COND_A;
9358 break;
9359 }
Eric Christopherfd179292009-08-27 18:07:15 +00009360
Eric Christopher71c67532009-07-29 00:28:05 +00009361 SDValue LHS = Op.getOperand(1);
9362 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009363 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
9364 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00009365 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
9366 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
9367 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00009368 }
Evan Cheng5759f972008-05-04 09:15:50 +00009369
9370 // Fix vector shift instructions where the last operand is a non-immediate
9371 // i32 value.
Craig Topper7be5dfd2011-11-12 09:58:49 +00009372 case Intrinsic::x86_avx2_pslli_w:
9373 case Intrinsic::x86_avx2_pslli_d:
9374 case Intrinsic::x86_avx2_pslli_q:
9375 case Intrinsic::x86_avx2_psrli_w:
9376 case Intrinsic::x86_avx2_psrli_d:
9377 case Intrinsic::x86_avx2_psrli_q:
9378 case Intrinsic::x86_avx2_psrai_w:
9379 case Intrinsic::x86_avx2_psrai_d:
Evan Cheng5759f972008-05-04 09:15:50 +00009380 case Intrinsic::x86_sse2_pslli_w:
9381 case Intrinsic::x86_sse2_pslli_d:
9382 case Intrinsic::x86_sse2_pslli_q:
9383 case Intrinsic::x86_sse2_psrli_w:
9384 case Intrinsic::x86_sse2_psrli_d:
9385 case Intrinsic::x86_sse2_psrli_q:
9386 case Intrinsic::x86_sse2_psrai_w:
9387 case Intrinsic::x86_sse2_psrai_d:
9388 case Intrinsic::x86_mmx_pslli_w:
9389 case Intrinsic::x86_mmx_pslli_d:
9390 case Intrinsic::x86_mmx_pslli_q:
9391 case Intrinsic::x86_mmx_psrli_w:
9392 case Intrinsic::x86_mmx_psrli_d:
9393 case Intrinsic::x86_mmx_psrli_q:
9394 case Intrinsic::x86_mmx_psrai_w:
9395 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00009396 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00009397 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00009398 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00009399
9400 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009401 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009402 switch (IntNo) {
9403 case Intrinsic::x86_sse2_pslli_w:
9404 NewIntNo = Intrinsic::x86_sse2_psll_w;
9405 break;
9406 case Intrinsic::x86_sse2_pslli_d:
9407 NewIntNo = Intrinsic::x86_sse2_psll_d;
9408 break;
9409 case Intrinsic::x86_sse2_pslli_q:
9410 NewIntNo = Intrinsic::x86_sse2_psll_q;
9411 break;
9412 case Intrinsic::x86_sse2_psrli_w:
9413 NewIntNo = Intrinsic::x86_sse2_psrl_w;
9414 break;
9415 case Intrinsic::x86_sse2_psrli_d:
9416 NewIntNo = Intrinsic::x86_sse2_psrl_d;
9417 break;
9418 case Intrinsic::x86_sse2_psrli_q:
9419 NewIntNo = Intrinsic::x86_sse2_psrl_q;
9420 break;
9421 case Intrinsic::x86_sse2_psrai_w:
9422 NewIntNo = Intrinsic::x86_sse2_psra_w;
9423 break;
9424 case Intrinsic::x86_sse2_psrai_d:
9425 NewIntNo = Intrinsic::x86_sse2_psra_d;
9426 break;
Craig Topper7be5dfd2011-11-12 09:58:49 +00009427 case Intrinsic::x86_avx2_pslli_w:
9428 NewIntNo = Intrinsic::x86_avx2_psll_w;
9429 break;
9430 case Intrinsic::x86_avx2_pslli_d:
9431 NewIntNo = Intrinsic::x86_avx2_psll_d;
9432 break;
9433 case Intrinsic::x86_avx2_pslli_q:
9434 NewIntNo = Intrinsic::x86_avx2_psll_q;
9435 break;
9436 case Intrinsic::x86_avx2_psrli_w:
9437 NewIntNo = Intrinsic::x86_avx2_psrl_w;
9438 break;
9439 case Intrinsic::x86_avx2_psrli_d:
9440 NewIntNo = Intrinsic::x86_avx2_psrl_d;
9441 break;
9442 case Intrinsic::x86_avx2_psrli_q:
9443 NewIntNo = Intrinsic::x86_avx2_psrl_q;
9444 break;
9445 case Intrinsic::x86_avx2_psrai_w:
9446 NewIntNo = Intrinsic::x86_avx2_psra_w;
9447 break;
9448 case Intrinsic::x86_avx2_psrai_d:
9449 NewIntNo = Intrinsic::x86_avx2_psra_d;
9450 break;
Evan Cheng5759f972008-05-04 09:15:50 +00009451 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00009452 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009453 switch (IntNo) {
9454 case Intrinsic::x86_mmx_pslli_w:
9455 NewIntNo = Intrinsic::x86_mmx_psll_w;
9456 break;
9457 case Intrinsic::x86_mmx_pslli_d:
9458 NewIntNo = Intrinsic::x86_mmx_psll_d;
9459 break;
9460 case Intrinsic::x86_mmx_pslli_q:
9461 NewIntNo = Intrinsic::x86_mmx_psll_q;
9462 break;
9463 case Intrinsic::x86_mmx_psrli_w:
9464 NewIntNo = Intrinsic::x86_mmx_psrl_w;
9465 break;
9466 case Intrinsic::x86_mmx_psrli_d:
9467 NewIntNo = Intrinsic::x86_mmx_psrl_d;
9468 break;
9469 case Intrinsic::x86_mmx_psrli_q:
9470 NewIntNo = Intrinsic::x86_mmx_psrl_q;
9471 break;
9472 case Intrinsic::x86_mmx_psrai_w:
9473 NewIntNo = Intrinsic::x86_mmx_psra_w;
9474 break;
9475 case Intrinsic::x86_mmx_psrai_d:
9476 NewIntNo = Intrinsic::x86_mmx_psra_d;
9477 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00009478 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00009479 }
9480 break;
9481 }
9482 }
Mon P Wangefa42202009-09-03 19:56:25 +00009483
9484 // The vector shift intrinsics with scalars uses 32b shift amounts but
9485 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9486 // to be zero.
9487 SDValue ShOps[4];
9488 ShOps[0] = ShAmt;
9489 ShOps[1] = DAG.getConstant(0, MVT::i32);
9490 if (ShAmtVT == MVT::v4i32) {
9491 ShOps[2] = DAG.getUNDEF(MVT::i32);
9492 ShOps[3] = DAG.getUNDEF(MVT::i32);
9493 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9494 } else {
9495 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00009496// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00009497 }
9498
Owen Andersone50ed302009-08-10 22:56:29 +00009499 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009500 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009501 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009502 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00009503 Op.getOperand(1), ShAmt);
9504 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00009505 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00009506}
Evan Cheng72261582005-12-20 06:22:03 +00009507
Dan Gohmand858e902010-04-17 15:26:15 +00009508SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9509 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00009510 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9511 MFI->setReturnAddressIsTaken(true);
9512
Bill Wendling64e87322009-01-16 19:25:27 +00009513 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009514 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00009515
9516 if (Depth > 0) {
9517 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9518 SDValue Offset =
9519 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00009520 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009521 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009522 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009523 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009524 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00009525 }
9526
9527 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00009528 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00009529 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009530 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009531}
9532
Dan Gohmand858e902010-04-17 15:26:15 +00009533SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00009534 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9535 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00009536
Owen Andersone50ed302009-08-10 22:56:29 +00009537 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009538 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00009539 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9540 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00009541 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00009542 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00009543 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9544 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009545 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00009546 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00009547}
9548
Dan Gohman475871a2008-07-27 21:46:04 +00009549SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009550 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009551 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009552}
9553
Dan Gohmand858e902010-04-17 15:26:15 +00009554SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009555 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00009556 SDValue Chain = Op.getOperand(0);
9557 SDValue Offset = Op.getOperand(1);
9558 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009559 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009560
Dan Gohmand8816272010-08-11 18:14:00 +00009561 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9562 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9563 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009564 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009565
Dan Gohmand8816272010-08-11 18:14:00 +00009566 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9567 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009568 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009569 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9570 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00009571 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009572 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009573
Dale Johannesene4d209d2009-02-03 20:21:25 +00009574 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009575 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009576 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009577}
9578
Duncan Sands4a544a72011-09-06 13:37:06 +00009579SDValue X86TargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
9580 SelectionDAG &DAG) const {
9581 return Op.getOperand(0);
9582}
9583
9584SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
9585 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00009586 SDValue Root = Op.getOperand(0);
9587 SDValue Trmp = Op.getOperand(1); // trampoline
9588 SDValue FPtr = Op.getOperand(2); // nested function
9589 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009590 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009591
Dan Gohman69de1932008-02-06 22:27:42 +00009592 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009593
9594 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009595 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00009596
9597 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00009598 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
9599 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00009600
Evan Cheng0e6a0522011-07-18 20:57:22 +00009601 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9602 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00009603
9604 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9605
9606 // Load the pointer to the nested function into R11.
9607 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00009608 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00009609 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009610 Addr, MachinePointerInfo(TrmpAddr),
9611 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009612
Owen Anderson825b72b2009-08-11 20:47:22 +00009613 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9614 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009615 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9616 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00009617 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009618
9619 // Load the 'nest' parameter value into R10.
9620 // R10 is specified in X86CallingConv.td
9621 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00009622 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9623 DAG.getConstant(10, MVT::i64));
9624 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009625 Addr, MachinePointerInfo(TrmpAddr, 10),
9626 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009627
Owen Anderson825b72b2009-08-11 20:47:22 +00009628 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9629 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009630 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9631 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00009632 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009633
9634 // Jump to the nested function.
9635 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00009636 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9637 DAG.getConstant(20, MVT::i64));
9638 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009639 Addr, MachinePointerInfo(TrmpAddr, 20),
9640 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009641
9642 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00009643 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9644 DAG.getConstant(22, MVT::i64));
9645 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009646 MachinePointerInfo(TrmpAddr, 22),
9647 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009648
Duncan Sands4a544a72011-09-06 13:37:06 +00009649 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009650 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00009651 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00009652 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00009653 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00009654 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009655
9656 switch (CC) {
9657 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00009658 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009659 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009660 case CallingConv::X86_StdCall: {
9661 // Pass 'nest' parameter in ECX.
9662 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009663 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009664
9665 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009666 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00009667 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009668
Chris Lattner58d74912008-03-12 17:45:29 +00009669 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00009670 unsigned InRegCount = 0;
9671 unsigned Idx = 1;
9672
9673 for (FunctionType::param_iterator I = FTy->param_begin(),
9674 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00009675 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00009676 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009677 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009678
9679 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009680 report_fatal_error("Nest register in use - reduce number of inreg"
9681 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009682 }
9683 }
9684 break;
9685 }
9686 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009687 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009688 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009689 // Pass 'nest' parameter in EAX.
9690 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009691 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009692 break;
9693 }
9694
Dan Gohman475871a2008-07-27 21:46:04 +00009695 SDValue OutChains[4];
9696 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009697
Owen Anderson825b72b2009-08-11 20:47:22 +00009698 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9699 DAG.getConstant(10, MVT::i32));
9700 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009701
Chris Lattnera62fe662010-02-05 19:20:30 +00009702 // This is storing the opcode for MOV32ri.
9703 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009704 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009705 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009706 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009707 Trmp, MachinePointerInfo(TrmpAddr),
9708 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009709
Owen Anderson825b72b2009-08-11 20:47:22 +00009710 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9711 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009712 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9713 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009714 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009715
Chris Lattnera62fe662010-02-05 19:20:30 +00009716 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009717 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9718 DAG.getConstant(5, MVT::i32));
9719 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009720 MachinePointerInfo(TrmpAddr, 5),
9721 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009722
Owen Anderson825b72b2009-08-11 20:47:22 +00009723 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9724 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009725 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9726 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009727 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009728
Duncan Sands4a544a72011-09-06 13:37:06 +00009729 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009730 }
9731}
9732
Dan Gohmand858e902010-04-17 15:26:15 +00009733SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9734 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009735 /*
9736 The rounding mode is in bits 11:10 of FPSR, and has the following
9737 settings:
9738 00 Round to nearest
9739 01 Round to -inf
9740 10 Round to +inf
9741 11 Round to 0
9742
9743 FLT_ROUNDS, on the other hand, expects the following:
9744 -1 Undefined
9745 0 Round to 0
9746 1 Round to nearest
9747 2 Round to +inf
9748 3 Round to -inf
9749
9750 To perform the conversion, we do:
9751 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9752 */
9753
9754 MachineFunction &MF = DAG.getMachineFunction();
9755 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009756 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009757 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009758 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009759 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009760
9761 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009762 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009763 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009764
Michael J. Spencerec38de22010-10-10 22:04:20 +00009765
Chris Lattner2156b792010-09-22 01:11:26 +00009766 MachineMemOperand *MMO =
9767 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9768 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009769
Chris Lattner2156b792010-09-22 01:11:26 +00009770 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9771 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9772 DAG.getVTList(MVT::Other),
9773 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009774
9775 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009776 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +00009777 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009778
9779 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009780 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009781 DAG.getNode(ISD::SRL, DL, MVT::i16,
9782 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009783 CWD, DAG.getConstant(0x800, MVT::i16)),
9784 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009785 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009786 DAG.getNode(ISD::SRL, DL, MVT::i16,
9787 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009788 CWD, DAG.getConstant(0x400, MVT::i16)),
9789 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009790
Dan Gohman475871a2008-07-27 21:46:04 +00009791 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009792 DAG.getNode(ISD::AND, DL, MVT::i16,
9793 DAG.getNode(ISD::ADD, DL, MVT::i16,
9794 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009795 DAG.getConstant(1, MVT::i16)),
9796 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009797
9798
Duncan Sands83ec4b62008-06-06 12:08:01 +00009799 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009800 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009801}
9802
Dan Gohmand858e902010-04-17 15:26:15 +00009803SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009804 EVT VT = Op.getValueType();
9805 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009806 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009807 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009808
9809 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009810 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009811 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009812 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009813 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009814 }
Evan Cheng18efe262007-12-14 02:13:44 +00009815
Evan Cheng152804e2007-12-14 08:30:15 +00009816 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009817 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009818 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009819
9820 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009821 SDValue Ops[] = {
9822 Op,
9823 DAG.getConstant(NumBits+NumBits-1, OpVT),
9824 DAG.getConstant(X86::COND_E, MVT::i8),
9825 Op.getValue(1)
9826 };
9827 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009828
9829 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009830 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009831
Owen Anderson825b72b2009-08-11 20:47:22 +00009832 if (VT == MVT::i8)
9833 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009834 return Op;
9835}
9836
Dan Gohmand858e902010-04-17 15:26:15 +00009837SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009838 EVT VT = Op.getValueType();
9839 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009840 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009841 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009842
9843 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009844 if (VT == MVT::i8) {
9845 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009846 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009847 }
Evan Cheng152804e2007-12-14 08:30:15 +00009848
9849 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009850 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009851 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009852
9853 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009854 SDValue Ops[] = {
9855 Op,
9856 DAG.getConstant(NumBits, OpVT),
9857 DAG.getConstant(X86::COND_E, MVT::i8),
9858 Op.getValue(1)
9859 };
9860 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009861
Owen Anderson825b72b2009-08-11 20:47:22 +00009862 if (VT == MVT::i8)
9863 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009864 return Op;
9865}
9866
Craig Topper13894fa2011-08-24 06:14:18 +00009867// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
9868// ones, and then concatenate the result back.
9869static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00009870 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +00009871
9872 assert(VT.getSizeInBits() == 256 && VT.isInteger() &&
9873 "Unsupported value type for operation");
9874
9875 int NumElems = VT.getVectorNumElements();
9876 DebugLoc dl = Op.getDebugLoc();
9877 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
9878 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
9879
9880 // Extract the LHS vectors
9881 SDValue LHS = Op.getOperand(0);
9882 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
9883 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
9884
9885 // Extract the RHS vectors
9886 SDValue RHS = Op.getOperand(1);
9887 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
9888 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
9889
9890 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9891 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9892
9893 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9894 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
9895 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
9896}
9897
9898SDValue X86TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) const {
9899 assert(Op.getValueType().getSizeInBits() == 256 &&
9900 Op.getValueType().isInteger() &&
9901 "Only handle AVX 256-bit vector integer operation");
9902 return Lower256IntArith(Op, DAG);
9903}
9904
9905SDValue X86TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) const {
9906 assert(Op.getValueType().getSizeInBits() == 256 &&
9907 Op.getValueType().isInteger() &&
9908 "Only handle AVX 256-bit vector integer operation");
9909 return Lower256IntArith(Op, DAG);
9910}
9911
9912SDValue X86TargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
9913 EVT VT = Op.getValueType();
9914
9915 // Decompose 256-bit ops into smaller 128-bit ops.
Craig Topperaaa643c2011-11-09 07:28:55 +00009916 if (VT.getSizeInBits() == 256 && !Subtarget->hasAVX2())
Craig Topper13894fa2011-08-24 06:14:18 +00009917 return Lower256IntArith(Op, DAG);
9918
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009919 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009920
Craig Topperaaa643c2011-11-09 07:28:55 +00009921 SDValue A = Op.getOperand(0);
9922 SDValue B = Op.getOperand(1);
9923
9924 if (VT == MVT::v4i64) {
9925 assert(Subtarget->hasAVX2() && "Lowering v4i64 multiply requires AVX2");
9926
9927 // ulong2 Ahi = __builtin_ia32_psrlqi256( a, 32);
9928 // ulong2 Bhi = __builtin_ia32_psrlqi256( b, 32);
9929 // ulong2 AloBlo = __builtin_ia32_pmuludq256( a, b );
9930 // ulong2 AloBhi = __builtin_ia32_pmuludq256( a, Bhi );
9931 // ulong2 AhiBlo = __builtin_ia32_pmuludq256( Ahi, b );
9932 //
9933 // AloBhi = __builtin_ia32_psllqi256( AloBhi, 32 );
9934 // AhiBlo = __builtin_ia32_psllqi256( AhiBlo, 32 );
9935 // return AloBlo + AloBhi + AhiBlo;
9936
9937 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9938 DAG.getConstant(Intrinsic::x86_avx2_psrli_q, MVT::i32),
9939 A, DAG.getConstant(32, MVT::i32));
9940 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9941 DAG.getConstant(Intrinsic::x86_avx2_psrli_q, MVT::i32),
9942 B, DAG.getConstant(32, MVT::i32));
9943 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9944 DAG.getConstant(Intrinsic::x86_avx2_pmulu_dq, MVT::i32),
9945 A, B);
9946 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9947 DAG.getConstant(Intrinsic::x86_avx2_pmulu_dq, MVT::i32),
9948 A, Bhi);
9949 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9950 DAG.getConstant(Intrinsic::x86_avx2_pmulu_dq, MVT::i32),
9951 Ahi, B);
9952 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9953 DAG.getConstant(Intrinsic::x86_avx2_pslli_q, MVT::i32),
9954 AloBhi, DAG.getConstant(32, MVT::i32));
9955 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9956 DAG.getConstant(Intrinsic::x86_avx2_pslli_q, MVT::i32),
9957 AhiBlo, DAG.getConstant(32, MVT::i32));
9958 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9959 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
9960 return Res;
9961 }
9962
9963 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
9964
Mon P Wangaf9b9522008-12-18 21:42:19 +00009965 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9966 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9967 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9968 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9969 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9970 //
9971 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9972 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9973 // return AloBlo + AloBhi + AhiBlo;
9974
Dale Johannesene4d209d2009-02-03 20:21:25 +00009975 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009976 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9977 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009978 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009979 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9980 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009981 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009982 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009983 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009984 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009985 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009986 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009987 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009988 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009989 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009990 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009991 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9992 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009993 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009994 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9995 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009996 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9997 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009998 return Res;
9999}
10000
Nadav Rotem43012222011-05-11 08:12:09 +000010001SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
10002
Nate Begemanbdcb5af2010-07-27 22:37:06 +000010003 EVT VT = Op.getValueType();
10004 DebugLoc dl = Op.getDebugLoc();
10005 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000010006 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000010007 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000010008
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010009 if (!Subtarget->hasXMMInt())
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000010010 return SDValue();
10011
Nadav Rotem43012222011-05-11 08:12:09 +000010012 // Optimize shl/srl/sra with constant shift amount.
10013 if (isSplatVector(Amt.getNode())) {
10014 SDValue SclrAmt = Amt->getOperand(0);
10015 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
10016 uint64_t ShiftAmt = C->getZExtValue();
10017
Benjamin Kramerdade3c12011-10-30 17:31:21 +000010018 if (VT == MVT::v16i8 && Op.getOpcode() == ISD::SHL) {
10019 // Make a large shift.
10020 SDValue SHL =
10021 DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10022 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
10023 R, DAG.getConstant(ShiftAmt, MVT::i32));
10024 // Zero out the rightmost bits.
10025 SmallVector<SDValue, 16> V(16, DAG.getConstant(uint8_t(-1U << ShiftAmt),
10026 MVT::i8));
10027 return DAG.getNode(ISD::AND, dl, VT, SHL,
10028 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
10029 }
10030
Nadav Rotem43012222011-05-11 08:12:09 +000010031 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
10032 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10033 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
10034 R, DAG.getConstant(ShiftAmt, MVT::i32));
10035
10036 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
10037 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10038 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
10039 R, DAG.getConstant(ShiftAmt, MVT::i32));
10040
10041 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
10042 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10043 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
10044 R, DAG.getConstant(ShiftAmt, MVT::i32));
10045
Benjamin Kramerdade3c12011-10-30 17:31:21 +000010046 if (VT == MVT::v16i8 && Op.getOpcode() == ISD::SRL) {
10047 // Make a large shift.
10048 SDValue SRL =
10049 DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10050 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
10051 R, DAG.getConstant(ShiftAmt, MVT::i32));
10052 // Zero out the leftmost bits.
10053 SmallVector<SDValue, 16> V(16, DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
10054 MVT::i8));
10055 return DAG.getNode(ISD::AND, dl, VT, SRL,
10056 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
10057 }
10058
Nadav Rotem43012222011-05-11 08:12:09 +000010059 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
10060 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10061 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
10062 R, DAG.getConstant(ShiftAmt, MVT::i32));
10063
10064 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
10065 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10066 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
10067 R, DAG.getConstant(ShiftAmt, MVT::i32));
10068
10069 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
10070 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10071 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
10072 R, DAG.getConstant(ShiftAmt, MVT::i32));
10073
10074 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
10075 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10076 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
10077 R, DAG.getConstant(ShiftAmt, MVT::i32));
10078
10079 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
10080 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10081 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
10082 R, DAG.getConstant(ShiftAmt, MVT::i32));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000010083
10084 if (VT == MVT::v16i8 && Op.getOpcode() == ISD::SRA) {
10085 if (ShiftAmt == 7) {
10086 // R s>> 7 === R s< 0
10087 SDValue Zeros = getZeroVector(VT, true /* HasXMMInt */, DAG, dl);
10088 return DAG.getNode(X86ISD::PCMPGTB, dl, VT, Zeros, R);
10089 }
10090
10091 // R s>> a === ((R u>> a) ^ m) - m
10092 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
10093 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
10094 MVT::i8));
10095 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
10096 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
10097 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
10098 return Res;
10099 }
Craig Topper46154eb2011-11-11 07:39:23 +000010100
Craig Topper0d86d462011-11-20 00:12:05 +000010101 if (Subtarget->hasAVX2() && VT == MVT::v32i8) {
10102 if (Op.getOpcode() == ISD::SHL) {
10103 // Make a large shift.
10104 SDValue SHL =
10105 DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10106 DAG.getConstant(Intrinsic::x86_avx2_pslli_w, MVT::i32),
10107 R, DAG.getConstant(ShiftAmt, MVT::i32));
10108 // Zero out the rightmost bits.
10109 SmallVector<SDValue, 32> V(32, DAG.getConstant(uint8_t(-1U << ShiftAmt),
10110 MVT::i8));
10111 return DAG.getNode(ISD::AND, dl, VT, SHL,
10112 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000010113 }
Craig Topper0d86d462011-11-20 00:12:05 +000010114 if (Op.getOpcode() == ISD::SRL) {
10115 // Make a large shift.
10116 SDValue SRL =
10117 DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10118 DAG.getConstant(Intrinsic::x86_avx2_psrli_w, MVT::i32),
10119 R, DAG.getConstant(ShiftAmt, MVT::i32));
10120 // Zero out the leftmost bits.
10121 SmallVector<SDValue, 32> V(32, DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
10122 MVT::i8));
10123 return DAG.getNode(ISD::AND, dl, VT, SRL,
10124 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
10125 }
10126 if (Op.getOpcode() == ISD::SRA) {
10127 if (ShiftAmt == 7) {
10128 // R s>> 7 === R s< 0
10129 SDValue Zeros = getZeroVector(VT, true /* HasXMMInt */, DAG, dl);
10130 return DAG.getNode(X86ISD::PCMPGTB, dl, VT, Zeros, R);
10131 }
10132
10133 // R s>> a === ((R u>> a) ^ m) - m
10134 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
10135 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
10136 MVT::i8));
10137 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
10138 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
10139 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
10140 return Res;
10141 }
10142 }
Nadav Rotem43012222011-05-11 08:12:09 +000010143 }
10144 }
10145
10146 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000010147 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +000010148 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10149 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
10150 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
10151
10152 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010153
Nate Begeman51409212010-07-28 00:21:48 +000010154 std::vector<Constant*> CV(4, CI);
10155 Constant *C = ConstantVector::get(CV);
10156 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
10157 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +000010158 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010159 false, false, false, 16);
Nate Begeman51409212010-07-28 00:21:48 +000010160
10161 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010162 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000010163 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
10164 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
10165 }
Nadav Rotem43012222011-05-11 08:12:09 +000010166 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Lang Hames8b99c1e2011-12-17 01:08:46 +000010167 assert((Subtarget->hasSSE2() || Subtarget->hasAVX()) &&
10168 "Need SSE2 for pslli/pcmpeq.");
10169
Nate Begeman51409212010-07-28 00:21:48 +000010170 // a = a << 5;
10171 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10172 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
10173 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
10174
Lang Hames8b99c1e2011-12-17 01:08:46 +000010175 // Turn 'a' into a mask suitable for VSELECT
10176 SDValue VSelM = DAG.getConstant(0x80, VT);
10177 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
10178 OpVSel = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10179 DAG.getConstant(Intrinsic::x86_sse2_pcmpeq_b, MVT::i32),
10180 OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000010181
Lang Hames8b99c1e2011-12-17 01:08:46 +000010182 SDValue CM1 = DAG.getConstant(0x0f, VT);
10183 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000010184
Lang Hames8b99c1e2011-12-17 01:08:46 +000010185 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
10186 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Nate Begeman51409212010-07-28 00:21:48 +000010187 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10188 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
10189 DAG.getConstant(4, MVT::i32));
Lang Hames8b99c1e2011-12-17 01:08:46 +000010190 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
10191
Nate Begeman51409212010-07-28 00:21:48 +000010192 // a += a
10193 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000010194 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
10195 OpVSel = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10196 DAG.getConstant(Intrinsic::x86_sse2_pcmpeq_b, MVT::i32),
10197 OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000010198
Lang Hames8b99c1e2011-12-17 01:08:46 +000010199 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
10200 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Nate Begeman51409212010-07-28 00:21:48 +000010201 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10202 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
10203 DAG.getConstant(2, MVT::i32));
Lang Hames8b99c1e2011-12-17 01:08:46 +000010204 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
10205
Nate Begeman51409212010-07-28 00:21:48 +000010206 // a += a
10207 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000010208 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
10209 OpVSel = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10210 DAG.getConstant(Intrinsic::x86_sse2_pcmpeq_b, MVT::i32),
10211 OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000010212
Lang Hames8b99c1e2011-12-17 01:08:46 +000010213 // return VSELECT(r, r+r, a);
10214 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000010215 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000010216 return R;
10217 }
Craig Topper46154eb2011-11-11 07:39:23 +000010218
10219 // Decompose 256-bit shifts into smaller 128-bit shifts.
10220 if (VT.getSizeInBits() == 256) {
10221 int NumElems = VT.getVectorNumElements();
10222 MVT EltVT = VT.getVectorElementType().getSimpleVT();
10223 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10224
10225 // Extract the two vectors
10226 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
10227 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
10228 DAG, dl);
10229
10230 // Recreate the shift amount vectors
10231 SDValue Amt1, Amt2;
10232 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
10233 // Constant shift amount
10234 SmallVector<SDValue, 4> Amt1Csts;
10235 SmallVector<SDValue, 4> Amt2Csts;
10236 for (int i = 0; i < NumElems/2; ++i)
10237 Amt1Csts.push_back(Amt->getOperand(i));
10238 for (int i = NumElems/2; i < NumElems; ++i)
10239 Amt2Csts.push_back(Amt->getOperand(i));
10240
10241 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
10242 &Amt1Csts[0], NumElems/2);
10243 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
10244 &Amt2Csts[0], NumElems/2);
10245 } else {
10246 // Variable shift amount
10247 Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
10248 Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
10249 DAG, dl);
10250 }
10251
10252 // Issue new vector shifts for the smaller types
10253 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
10254 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
10255
10256 // Concatenate the result back
10257 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
10258 }
10259
Nate Begeman51409212010-07-28 00:21:48 +000010260 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000010261}
Mon P Wangaf9b9522008-12-18 21:42:19 +000010262
Dan Gohmand858e902010-04-17 15:26:15 +000010263SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +000010264 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
10265 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000010266 // looks for this combo and may remove the "setcc" instruction if the "setcc"
10267 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000010268 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000010269 SDValue LHS = N->getOperand(0);
10270 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000010271 unsigned BaseOp = 0;
10272 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010273 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +000010274 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010275 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000010276 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000010277 // A subtract of one will be selected as a INC. Note that INC doesn't
10278 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000010279 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10280 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000010281 BaseOp = X86ISD::INC;
10282 Cond = X86::COND_O;
10283 break;
10284 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010285 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000010286 Cond = X86::COND_O;
10287 break;
10288 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010289 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000010290 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000010291 break;
10292 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000010293 // A subtract of one will be selected as a DEC. Note that DEC doesn't
10294 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000010295 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10296 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000010297 BaseOp = X86ISD::DEC;
10298 Cond = X86::COND_O;
10299 break;
10300 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010301 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000010302 Cond = X86::COND_O;
10303 break;
10304 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010305 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000010306 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000010307 break;
10308 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000010309 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000010310 Cond = X86::COND_O;
10311 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010312 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
10313 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
10314 MVT::i32);
10315 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010316
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010317 SDValue SetCC =
10318 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10319 DAG.getConstant(X86::COND_O, MVT::i32),
10320 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010321
Dan Gohman6e5fda22011-07-22 18:45:15 +000010322 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010323 }
Bill Wendling74c37652008-12-09 22:08:41 +000010324 }
Bill Wendling3fafd932008-11-26 22:37:40 +000010325
Bill Wendling61edeb52008-12-02 01:06:39 +000010326 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000010327 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010328 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000010329
Bill Wendling61edeb52008-12-02 01:06:39 +000010330 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010331 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
10332 DAG.getConstant(Cond, MVT::i32),
10333 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000010334
Dan Gohman6e5fda22011-07-22 18:45:15 +000010335 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000010336}
10337
Chad Rosier30450e82011-12-22 22:35:21 +000010338SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
10339 SelectionDAG &DAG) const {
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010340 DebugLoc dl = Op.getDebugLoc();
Craig Toppera124f942011-11-21 01:12:36 +000010341 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
10342 EVT VT = Op.getValueType();
10343
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010344 if (Subtarget->hasXMMInt() && VT.isVector()) {
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010345 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
10346 ExtraVT.getScalarType().getSizeInBits();
10347 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
10348
10349 unsigned SHLIntrinsicsID = 0;
10350 unsigned SRAIntrinsicsID = 0;
10351 switch (VT.getSimpleVT().SimpleTy) {
10352 default:
10353 return SDValue();
Craig Toppera124f942011-11-21 01:12:36 +000010354 case MVT::v4i32:
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010355 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
10356 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
10357 break;
Craig Toppera124f942011-11-21 01:12:36 +000010358 case MVT::v8i16:
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010359 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
10360 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
10361 break;
Craig Toppera124f942011-11-21 01:12:36 +000010362 case MVT::v8i32:
10363 case MVT::v16i16:
10364 if (!Subtarget->hasAVX())
10365 return SDValue();
10366 if (!Subtarget->hasAVX2()) {
10367 // needs to be split
10368 int NumElems = VT.getVectorNumElements();
10369 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
10370 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
10371
10372 // Extract the LHS vectors
10373 SDValue LHS = Op.getOperand(0);
10374 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
10375 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
10376
10377 MVT EltVT = VT.getVectorElementType().getSimpleVT();
10378 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10379
10380 EVT ExtraEltVT = ExtraVT.getVectorElementType();
10381 int ExtraNumElems = ExtraVT.getVectorNumElements();
10382 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
10383 ExtraNumElems/2);
10384 SDValue Extra = DAG.getValueType(ExtraVT);
10385
10386 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
10387 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
10388
10389 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);;
10390 }
10391 if (VT == MVT::v8i32) {
10392 SHLIntrinsicsID = Intrinsic::x86_avx2_pslli_d;
10393 SRAIntrinsicsID = Intrinsic::x86_avx2_psrai_d;
10394 } else {
10395 SHLIntrinsicsID = Intrinsic::x86_avx2_pslli_w;
10396 SRAIntrinsicsID = Intrinsic::x86_avx2_psrai_w;
10397 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010398 }
10399
10400 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10401 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
Craig Toppera124f942011-11-21 01:12:36 +000010402 Op.getOperand(0), ShAmt);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010403
Nadav Rotema7934dd2011-10-10 19:31:45 +000010404 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10405 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
10406 Tmp1, ShAmt);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010407 }
10408
10409 return SDValue();
10410}
10411
10412
Eric Christopher9a9d2752010-07-22 02:48:34 +000010413SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
10414 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010415
Eric Christopher77ed1352011-07-08 00:04:56 +000010416 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
10417 // There isn't any reason to disable it if the target processor supports it.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010418 if (!Subtarget->hasXMMInt() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +000010419 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +000010420 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +000010421 SDValue Ops[] = {
10422 DAG.getRegister(X86::ESP, MVT::i32), // Base
10423 DAG.getTargetConstant(1, MVT::i8), // Scale
10424 DAG.getRegister(0, MVT::i32), // Index
10425 DAG.getTargetConstant(0, MVT::i32), // Disp
10426 DAG.getRegister(0, MVT::i32), // Segment.
10427 Zero,
10428 Chain
10429 };
Michael J. Spencerec38de22010-10-10 22:04:20 +000010430 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +000010431 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10432 array_lengthof(Ops));
10433 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +000010434 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010435
Eric Christopher9a9d2752010-07-22 02:48:34 +000010436 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +000010437 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +000010438 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010439
Chris Lattner132929a2010-08-14 17:26:09 +000010440 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10441 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10442 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
10443 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010444
Chris Lattner132929a2010-08-14 17:26:09 +000010445 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
10446 if (!Op1 && !Op2 && !Op3 && Op4)
10447 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010448
Chris Lattner132929a2010-08-14 17:26:09 +000010449 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
10450 if (Op1 && !Op2 && !Op3 && !Op4)
10451 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010452
10453 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +000010454 // (MFENCE)>;
10455 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +000010456}
10457
Eli Friedman14648462011-07-27 22:21:52 +000010458SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
10459 SelectionDAG &DAG) const {
10460 DebugLoc dl = Op.getDebugLoc();
10461 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
10462 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
10463 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
10464 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
10465
10466 // The only fence that needs an instruction is a sequentially-consistent
10467 // cross-thread fence.
10468 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
10469 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
10470 // no-sse2). There isn't any reason to disable it if the target processor
10471 // supports it.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010472 if (Subtarget->hasXMMInt() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000010473 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10474
10475 SDValue Chain = Op.getOperand(0);
10476 SDValue Zero = DAG.getConstant(0, MVT::i32);
10477 SDValue Ops[] = {
10478 DAG.getRegister(X86::ESP, MVT::i32), // Base
10479 DAG.getTargetConstant(1, MVT::i8), // Scale
10480 DAG.getRegister(0, MVT::i32), // Index
10481 DAG.getTargetConstant(0, MVT::i32), // Disp
10482 DAG.getRegister(0, MVT::i32), // Segment.
10483 Zero,
10484 Chain
10485 };
10486 SDNode *Res =
10487 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10488 array_lengthof(Ops));
10489 return SDValue(Res, 0);
10490 }
10491
10492 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
10493 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
10494}
10495
10496
Dan Gohmand858e902010-04-17 15:26:15 +000010497SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010498 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010499 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000010500 unsigned Reg = 0;
10501 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000010502 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010503 default:
10504 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000010505 case MVT::i8: Reg = X86::AL; size = 1; break;
10506 case MVT::i16: Reg = X86::AX; size = 2; break;
10507 case MVT::i32: Reg = X86::EAX; size = 4; break;
10508 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000010509 assert(Subtarget->is64Bit() && "Node not type legal!");
10510 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000010511 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010512 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010513 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000010514 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000010515 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010516 Op.getOperand(1),
10517 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000010518 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010519 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010520 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010521 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
10522 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
10523 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000010524 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010525 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000010526 return cpOut;
10527}
10528
Duncan Sands1607f052008-12-01 11:39:25 +000010529SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010530 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +000010531 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010532 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010533 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010534 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010535 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010536 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
10537 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000010538 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000010539 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
10540 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000010541 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000010542 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000010543 rdx.getValue(1)
10544 };
Dale Johannesene4d209d2009-02-03 20:21:25 +000010545 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010546}
10547
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010548SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +000010549 SelectionDAG &DAG) const {
10550 EVT SrcVT = Op.getOperand(0).getValueType();
10551 EVT DstVT = Op.getValueType();
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010552 assert(Subtarget->is64Bit() && !Subtarget->hasXMMInt() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000010553 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010554 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000010555 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010556 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000010557 // i64 <=> MMX conversions are Legal.
10558 if (SrcVT==MVT::i64 && DstVT.isVector())
10559 return Op;
10560 if (DstVT==MVT::i64 && SrcVT.isVector())
10561 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000010562 // MMX <=> MMX conversions are Legal.
10563 if (SrcVT.isVector() && DstVT.isVector())
10564 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000010565 // All other conversions need to be expanded.
10566 return SDValue();
10567}
Chris Lattner5b856542010-12-20 00:59:46 +000010568
Dan Gohmand858e902010-04-17 15:26:15 +000010569SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010570 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010571 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010572 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010573 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000010574 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000010575 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010576 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010577 Node->getOperand(0),
10578 Node->getOperand(1), negOp,
10579 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000010580 cast<AtomicSDNode>(Node)->getAlignment(),
10581 cast<AtomicSDNode>(Node)->getOrdering(),
10582 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000010583}
10584
Eli Friedman327236c2011-08-24 20:50:09 +000010585static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
10586 SDNode *Node = Op.getNode();
10587 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010588 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000010589
10590 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010591 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
10592 // FIXME: On 32-bit, store -> fist or movq would be more efficient
10593 // (The only way to get a 16-byte store is cmpxchg16b)
10594 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
10595 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
10596 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000010597 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
10598 cast<AtomicSDNode>(Node)->getMemoryVT(),
10599 Node->getOperand(0),
10600 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010601 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000010602 cast<AtomicSDNode>(Node)->getOrdering(),
10603 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000010604 return Swap.getValue(1);
10605 }
10606 // Other atomic stores have a simple pattern.
10607 return Op;
10608}
10609
Chris Lattner5b856542010-12-20 00:59:46 +000010610static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
10611 EVT VT = Op.getNode()->getValueType(0);
10612
10613 // Let legalize expand this if it isn't a legal type yet.
10614 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
10615 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010616
Chris Lattner5b856542010-12-20 00:59:46 +000010617 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010618
Chris Lattner5b856542010-12-20 00:59:46 +000010619 unsigned Opc;
10620 bool ExtraOp = false;
10621 switch (Op.getOpcode()) {
10622 default: assert(0 && "Invalid code");
10623 case ISD::ADDC: Opc = X86ISD::ADD; break;
10624 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
10625 case ISD::SUBC: Opc = X86ISD::SUB; break;
10626 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
10627 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010628
Chris Lattner5b856542010-12-20 00:59:46 +000010629 if (!ExtraOp)
10630 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10631 Op.getOperand(1));
10632 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10633 Op.getOperand(1), Op.getOperand(2));
10634}
10635
Evan Cheng0db9fe62006-04-25 20:13:52 +000010636/// LowerOperation - Provide custom lowering hooks for some operations.
10637///
Dan Gohmand858e902010-04-17 15:26:15 +000010638SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000010639 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010640 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010641 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +000010642 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +000010643 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010644 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
10645 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000010646 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010647 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000010648 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010649 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
10650 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
10651 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +000010652 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +000010653 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010654 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
10655 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
10656 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010657 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000010658 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000010659 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010660 case ISD::SHL_PARTS:
10661 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000010662 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010663 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000010664 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010665 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000010666 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010667 case ISD::FABS: return LowerFABS(Op, DAG);
10668 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000010669 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000010670 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000010671 case ISD::SETCC: return LowerSETCC(Op, DAG);
10672 case ISD::SELECT: return LowerSELECT(Op, DAG);
10673 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010674 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010675 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000010676 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +000010677 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010678 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000010679 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
10680 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010681 case ISD::FRAME_TO_ARGS_OFFSET:
10682 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010683 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010684 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000010685 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
10686 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000010687 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000010688 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
10689 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010690 case ISD::MUL: return LowerMUL(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000010691 case ISD::SRA:
10692 case ISD::SRL:
10693 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000010694 case ISD::SADDO:
10695 case ISD::UADDO:
10696 case ISD::SSUBO:
10697 case ISD::USUBO:
10698 case ISD::SMULO:
10699 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +000010700 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010701 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000010702 case ISD::ADDC:
10703 case ISD::ADDE:
10704 case ISD::SUBC:
10705 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010706 case ISD::ADD: return LowerADD(Op, DAG);
10707 case ISD::SUB: return LowerSUB(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010708 }
Chris Lattner27a6c732007-11-24 07:07:01 +000010709}
10710
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010711static void ReplaceATOMIC_LOAD(SDNode *Node,
10712 SmallVectorImpl<SDValue> &Results,
10713 SelectionDAG &DAG) {
10714 DebugLoc dl = Node->getDebugLoc();
10715 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
10716
10717 // Convert wide load -> cmpxchg8b/cmpxchg16b
10718 // FIXME: On 32-bit, load -> fild or movq would be more efficient
10719 // (The only way to get a 16-byte load is cmpxchg16b)
10720 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010721 SDValue Zero = DAG.getConstant(0, VT);
10722 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010723 Node->getOperand(0),
10724 Node->getOperand(1), Zero, Zero,
10725 cast<AtomicSDNode>(Node)->getMemOperand(),
10726 cast<AtomicSDNode>(Node)->getOrdering(),
10727 cast<AtomicSDNode>(Node)->getSynchScope());
10728 Results.push_back(Swap.getValue(0));
10729 Results.push_back(Swap.getValue(1));
10730}
10731
Duncan Sands1607f052008-12-01 11:39:25 +000010732void X86TargetLowering::
10733ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010734 SelectionDAG &DAG, unsigned NewOp) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010735 DebugLoc dl = Node->getDebugLoc();
Duncan Sands17001ce2011-10-18 12:44:00 +000010736 assert (Node->getValueType(0) == MVT::i64 &&
10737 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000010738
10739 SDValue Chain = Node->getOperand(0);
10740 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010741 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010742 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000010743 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010744 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000010745 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000010746 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000010747 SDValue Result =
10748 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
10749 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000010750 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010751 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010752 Results.push_back(Result.getValue(2));
10753}
10754
Duncan Sands126d9072008-07-04 11:47:58 +000010755/// ReplaceNodeResults - Replace a node with an illegal result type
10756/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000010757void X86TargetLowering::ReplaceNodeResults(SDNode *N,
10758 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010759 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010760 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +000010761 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000010762 default:
Duncan Sands1607f052008-12-01 11:39:25 +000010763 assert(false && "Do not know how to custom type legalize this operation!");
10764 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010765 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000010766 case ISD::ADDC:
10767 case ISD::ADDE:
10768 case ISD::SUBC:
10769 case ISD::SUBE:
10770 // We don't want to expand or promote these.
10771 return;
Duncan Sands1607f052008-12-01 11:39:25 +000010772 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +000010773 std::pair<SDValue,SDValue> Vals =
10774 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +000010775 SDValue FIST = Vals.first, StackSlot = Vals.second;
10776 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000010777 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000010778 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +000010779 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000010780 MachinePointerInfo(),
10781 false, false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +000010782 }
10783 return;
10784 }
10785 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010786 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010787 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010788 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010789 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000010790 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000010791 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010792 eax.getValue(2));
10793 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
10794 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000010795 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010796 Results.push_back(edx.getValue(1));
10797 return;
10798 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010799 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000010800 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010801 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000010802 bool Regs64bit = T == MVT::i128;
10803 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000010804 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010805 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10806 DAG.getConstant(0, HalfT));
10807 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10808 DAG.getConstant(1, HalfT));
10809 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
10810 Regs64bit ? X86::RAX : X86::EAX,
10811 cpInL, SDValue());
10812 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
10813 Regs64bit ? X86::RDX : X86::EDX,
10814 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010815 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010816 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10817 DAG.getConstant(0, HalfT));
10818 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10819 DAG.getConstant(1, HalfT));
10820 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
10821 Regs64bit ? X86::RBX : X86::EBX,
10822 swapInL, cpInH.getValue(1));
10823 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
10824 Regs64bit ? X86::RCX : X86::ECX,
10825 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010826 SDValue Ops[] = { swapInH.getValue(0),
10827 N->getOperand(1),
10828 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010829 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010830 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000010831 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
10832 X86ISD::LCMPXCHG8_DAG;
10833 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010834 Ops, 3, T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000010835 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
10836 Regs64bit ? X86::RAX : X86::EAX,
10837 HalfT, Result.getValue(1));
10838 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
10839 Regs64bit ? X86::RDX : X86::EDX,
10840 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000010841 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000010842 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010843 Results.push_back(cpOutH.getValue(1));
10844 return;
10845 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010846 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +000010847 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
10848 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010849 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +000010850 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
10851 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010852 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +000010853 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
10854 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010855 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +000010856 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
10857 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010858 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +000010859 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
10860 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010861 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +000010862 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
10863 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010864 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +000010865 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
10866 return;
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010867 case ISD::ATOMIC_LOAD:
10868 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000010869 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000010870}
10871
Evan Cheng72261582005-12-20 06:22:03 +000010872const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
10873 switch (Opcode) {
10874 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000010875 case X86ISD::BSF: return "X86ISD::BSF";
10876 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000010877 case X86ISD::SHLD: return "X86ISD::SHLD";
10878 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000010879 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010880 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000010881 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010882 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000010883 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000010884 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000010885 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
10886 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
10887 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000010888 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000010889 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000010890 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000010891 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000010892 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000010893 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000010894 case X86ISD::COMI: return "X86ISD::COMI";
10895 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000010896 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000010897 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000010898 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
10899 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000010900 case X86ISD::CMOV: return "X86ISD::CMOV";
10901 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000010902 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000010903 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
10904 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000010905 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000010906 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000010907 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010908 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000010909 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010910 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
10911 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000010912 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000010913 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000010914 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000010915 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000010916 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Craig Topperfe033152011-12-06 09:31:36 +000010917 case X86ISD::HADD: return "X86ISD::HADD";
10918 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000010919 case X86ISD::FHADD: return "X86ISD::FHADD";
10920 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Evan Cheng8ca29322006-11-10 21:43:37 +000010921 case X86ISD::FMAX: return "X86ISD::FMAX";
10922 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +000010923 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
10924 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010925 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000010926 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010927 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000010928 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000010929 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +000010930 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
10931 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010932 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
10933 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
10934 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
10935 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
10936 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
10937 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000010938 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
10939 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +000010940 case X86ISD::VSHL: return "X86ISD::VSHL";
10941 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +000010942 case X86ISD::CMPPD: return "X86ISD::CMPPD";
10943 case X86ISD::CMPPS: return "X86ISD::CMPPS";
10944 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
10945 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
10946 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
10947 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
10948 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
10949 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
10950 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
10951 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010952 case X86ISD::ADD: return "X86ISD::ADD";
10953 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000010954 case X86ISD::ADC: return "X86ISD::ADC";
10955 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000010956 case X86ISD::SMUL: return "X86ISD::SMUL";
10957 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010958 case X86ISD::INC: return "X86ISD::INC";
10959 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010960 case X86ISD::OR: return "X86ISD::OR";
10961 case X86ISD::XOR: return "X86ISD::XOR";
10962 case X86ISD::AND: return "X86ISD::AND";
Craig Topper54a11172011-10-14 07:06:56 +000010963 case X86ISD::ANDN: return "X86ISD::ANDN";
Craig Toppere6a62772011-11-13 17:31:07 +000010964 case X86ISD::BLSI: return "X86ISD::BLSI";
10965 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
10966 case X86ISD::BLSR: return "X86ISD::BLSR";
Evan Cheng73f24c92009-03-30 21:36:47 +000010967 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010968 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010969 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010970 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10971 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10972 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10973 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10974 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10975 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10976 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10977 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10978 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010979 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010980 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010981 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10982 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010983 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10984 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10985 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10986 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10987 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10988 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10989 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000010990 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
10991 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000010992 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Craig Topper316cd2a2011-11-30 06:25:25 +000010993 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000010994 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010995 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010996 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010997 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010998 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000010999 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +000011000 }
11001}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011002
Chris Lattnerc9addb72007-03-30 23:15:24 +000011003// isLegalAddressingMode - Return true if the addressing mode represented
11004// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000011005bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000011006 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000011007 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000011008 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000011009 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000011010
Chris Lattnerc9addb72007-03-30 23:15:24 +000011011 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000011012 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000011013 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000011014
Chris Lattnerc9addb72007-03-30 23:15:24 +000011015 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000011016 unsigned GVFlags =
11017 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000011018
Chris Lattnerdfed4132009-07-10 07:38:24 +000011019 // If a reference to this global requires an extra load, we can't fold it.
11020 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000011021 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000011022
Chris Lattnerdfed4132009-07-10 07:38:24 +000011023 // If BaseGV requires a register for the PIC base, we cannot also have a
11024 // BaseReg specified.
11025 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000011026 return false;
Evan Cheng52787842007-08-01 23:46:47 +000011027
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000011028 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000011029 if ((M != CodeModel::Small || R != Reloc::Static) &&
11030 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000011031 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000011032 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011033
Chris Lattnerc9addb72007-03-30 23:15:24 +000011034 switch (AM.Scale) {
11035 case 0:
11036 case 1:
11037 case 2:
11038 case 4:
11039 case 8:
11040 // These scales always work.
11041 break;
11042 case 3:
11043 case 5:
11044 case 9:
11045 // These scales are formed with basereg+scalereg. Only accept if there is
11046 // no basereg yet.
11047 if (AM.HasBaseReg)
11048 return false;
11049 break;
11050 default: // Other stuff never works.
11051 return false;
11052 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011053
Chris Lattnerc9addb72007-03-30 23:15:24 +000011054 return true;
11055}
11056
11057
Chris Lattnerdb125cf2011-07-18 04:54:35 +000011058bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011059 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000011060 return false;
Evan Chenge127a732007-10-29 07:57:50 +000011061 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
11062 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000011063 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000011064 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000011065 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000011066}
11067
Owen Andersone50ed302009-08-10 22:56:29 +000011068bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000011069 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000011070 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011071 unsigned NumBits1 = VT1.getSizeInBits();
11072 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000011073 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000011074 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000011075 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000011076}
Evan Cheng2bd122c2007-10-26 01:56:11 +000011077
Chris Lattnerdb125cf2011-07-18 04:54:35 +000011078bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000011079 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011080 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000011081}
11082
Owen Andersone50ed302009-08-10 22:56:29 +000011083bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000011084 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000011085 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000011086}
11087
Owen Andersone50ed302009-08-10 22:56:29 +000011088bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000011089 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000011090 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000011091}
11092
Evan Cheng60c07e12006-07-05 22:17:51 +000011093/// isShuffleMaskLegal - Targets can use this to indicate that they only
11094/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
11095/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
11096/// are assumed to be legal.
11097bool
Eric Christopherfd179292009-08-27 18:07:15 +000011098X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000011099 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000011100 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000011101 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000011102 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000011103
Nate Begemana09008b2009-10-19 02:17:23 +000011104 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000011105 return (VT.getVectorNumElements() == 2 ||
11106 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
11107 isMOVLMask(M, VT) ||
11108 isSHUFPMask(M, VT) ||
11109 isPSHUFDMask(M, VT) ||
11110 isPSHUFHWMask(M, VT) ||
11111 isPSHUFLWMask(M, VT) ||
Craig Topperc0d82852011-11-22 00:44:41 +000011112 isPALIGNRMask(M, VT, Subtarget->hasSSSE3orAVX()) ||
Craig Topper6347e862011-11-21 06:57:39 +000011113 isUNPCKLMask(M, VT, Subtarget->hasAVX2()) ||
11114 isUNPCKHMask(M, VT, Subtarget->hasAVX2()) ||
Craig Topper94438ba2011-12-16 08:06:31 +000011115 isUNPCKL_v_undef_Mask(M, VT, Subtarget->hasAVX2()) ||
11116 isUNPCKH_v_undef_Mask(M, VT, Subtarget->hasAVX2()));
Evan Cheng60c07e12006-07-05 22:17:51 +000011117}
11118
Dan Gohman7d8143f2008-04-09 20:09:42 +000011119bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000011120X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000011121 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000011122 unsigned NumElts = VT.getVectorNumElements();
11123 // FIXME: This collection of masks seems suspect.
11124 if (NumElts == 2)
11125 return true;
11126 if (NumElts == 4 && VT.getSizeInBits() == 128) {
11127 return (isMOVLMask(Mask, VT) ||
11128 isCommutedMOVLMask(Mask, VT, true) ||
11129 isSHUFPMask(Mask, VT) ||
Craig Topper1ff73d72011-12-06 04:59:07 +000011130 isSHUFPMask(Mask, VT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000011131 }
11132 return false;
11133}
11134
11135//===----------------------------------------------------------------------===//
11136// X86 Scheduler Hooks
11137//===----------------------------------------------------------------------===//
11138
Mon P Wang63307c32008-05-05 19:05:59 +000011139// private utility function
11140MachineBasicBlock *
11141X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
11142 MachineBasicBlock *MBB,
11143 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011144 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011145 unsigned LoadOpc,
11146 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011147 unsigned notOpc,
11148 unsigned EAXreg,
11149 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000011150 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000011151 // For the atomic bitwise operator, we generate
11152 // thisMBB:
11153 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000011154 // ld t1 = [bitinstr.addr]
11155 // op t2 = t1, [bitinstr.val]
11156 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000011157 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
11158 // bz newMBB
11159 // fallthrough -->nextMBB
11160 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11161 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011162 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000011163 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000011164
Mon P Wang63307c32008-05-05 19:05:59 +000011165 /// First build the CFG
11166 MachineFunction *F = MBB->getParent();
11167 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011168 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11169 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11170 F->insert(MBBIter, newMBB);
11171 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011172
Dan Gohman14152b42010-07-06 20:24:04 +000011173 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11174 nextMBB->splice(nextMBB->begin(), thisMBB,
11175 llvm::next(MachineBasicBlock::iterator(bInstr)),
11176 thisMBB->end());
11177 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011178
Mon P Wang63307c32008-05-05 19:05:59 +000011179 // Update thisMBB to fall through to newMBB
11180 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011181
Mon P Wang63307c32008-05-05 19:05:59 +000011182 // newMBB jumps to itself and fall through to nextMBB
11183 newMBB->addSuccessor(nextMBB);
11184 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011185
Mon P Wang63307c32008-05-05 19:05:59 +000011186 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011187 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011188 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000011189 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000011190 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011191 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000011192 int numArgs = bInstr->getNumOperands() - 1;
11193 for (int i=0; i < numArgs; ++i)
11194 argOpers[i] = &bInstr->getOperand(i+1);
11195
11196 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011197 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011198 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000011199
Dale Johannesen140be2d2008-08-19 18:47:28 +000011200 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011201 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000011202 for (int i=0; i <= lastAddrIndx; ++i)
11203 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011204
Dale Johannesen140be2d2008-08-19 18:47:28 +000011205 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011206 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011207 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011208 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011209 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011210 tt = t1;
11211
Dale Johannesen140be2d2008-08-19 18:47:28 +000011212 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000011213 assert((argOpers[valArgIndx]->isReg() ||
11214 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000011215 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000011216 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011217 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000011218 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011219 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011220 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000011221 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011222
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011223 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000011224 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000011225
Dale Johannesene4d209d2009-02-03 20:21:25 +000011226 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000011227 for (int i=0; i <= lastAddrIndx; ++i)
11228 (*MIB).addOperand(*argOpers[i]);
11229 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000011230 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011231 (*MIB).setMemRefs(bInstr->memoperands_begin(),
11232 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000011233
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011234 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000011235 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000011236
Mon P Wang63307c32008-05-05 19:05:59 +000011237 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011238 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000011239
Dan Gohman14152b42010-07-06 20:24:04 +000011240 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000011241 return nextMBB;
11242}
11243
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000011244// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000011245MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011246X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
11247 MachineBasicBlock *MBB,
11248 unsigned regOpcL,
11249 unsigned regOpcH,
11250 unsigned immOpcL,
11251 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000011252 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011253 // For the atomic bitwise operator, we generate
11254 // thisMBB (instructions are in pairs, except cmpxchg8b)
11255 // ld t1,t2 = [bitinstr.addr]
11256 // newMBB:
11257 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
11258 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000011259 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011260 // mov ECX, EBX <- t5, t6
11261 // mov EAX, EDX <- t1, t2
11262 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
11263 // mov t3, t4 <- EAX, EDX
11264 // bz newMBB
11265 // result in out1, out2
11266 // fallthrough -->nextMBB
11267
11268 const TargetRegisterClass *RC = X86::GR32RegisterClass;
11269 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011270 const unsigned NotOpc = X86::NOT32r;
11271 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11272 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11273 MachineFunction::iterator MBBIter = MBB;
11274 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000011275
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011276 /// First build the CFG
11277 MachineFunction *F = MBB->getParent();
11278 MachineBasicBlock *thisMBB = MBB;
11279 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11280 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11281 F->insert(MBBIter, newMBB);
11282 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011283
Dan Gohman14152b42010-07-06 20:24:04 +000011284 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11285 nextMBB->splice(nextMBB->begin(), thisMBB,
11286 llvm::next(MachineBasicBlock::iterator(bInstr)),
11287 thisMBB->end());
11288 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011289
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011290 // Update thisMBB to fall through to newMBB
11291 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011292
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011293 // newMBB jumps to itself and fall through to nextMBB
11294 newMBB->addSuccessor(nextMBB);
11295 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011296
Dale Johannesene4d209d2009-02-03 20:21:25 +000011297 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011298 // Insert instructions into newMBB based on incoming instruction
11299 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011300 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011301 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011302 MachineOperand& dest1Oper = bInstr->getOperand(0);
11303 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011304 MachineOperand* argOpers[2 + X86::AddrNumOperands];
11305 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011306 argOpers[i] = &bInstr->getOperand(i+2);
11307
Dan Gohman71ea4e52010-05-14 21:01:44 +000011308 // We use some of the operands multiple times, so conservatively just
11309 // clear any kill flags that might be present.
11310 if (argOpers[i]->isReg() && argOpers[i]->isUse())
11311 argOpers[i]->setIsKill(false);
11312 }
11313
Evan Chengad5b52f2010-01-08 19:14:57 +000011314 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011315 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000011316
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011317 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011318 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011319 for (int i=0; i <= lastAddrIndx; ++i)
11320 (*MIB).addOperand(*argOpers[i]);
11321 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011322 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000011323 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000011324 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011325 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000011326 MachineOperand newOp3 = *(argOpers[3]);
11327 if (newOp3.isImm())
11328 newOp3.setImm(newOp3.getImm()+4);
11329 else
11330 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011331 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000011332 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011333
11334 // t3/4 are defined later, at the bottom of the loop
11335 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
11336 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011337 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011338 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011339 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011340 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
11341
Evan Cheng306b4ca2010-01-08 23:41:50 +000011342 // The subsequent operations should be using the destination registers of
11343 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000011344 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000011345 t1 = F->getRegInfo().createVirtualRegister(RC);
11346 t2 = F->getRegInfo().createVirtualRegister(RC);
11347 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
11348 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011349 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000011350 t1 = dest1Oper.getReg();
11351 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011352 }
11353
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011354 int valArgIndx = lastAddrIndx + 1;
11355 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000011356 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011357 "invalid operand");
11358 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
11359 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011360 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011361 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011362 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011363 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000011364 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000011365 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011366 (*MIB).addOperand(*argOpers[valArgIndx]);
11367 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011368 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011369 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011370 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011371 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011372 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011373 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011374 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000011375 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000011376 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011377 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011378
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011379 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011380 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011381 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011382 MIB.addReg(t2);
11383
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011384 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011385 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011386 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011387 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000011388
Dale Johannesene4d209d2009-02-03 20:21:25 +000011389 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011390 for (int i=0; i <= lastAddrIndx; ++i)
11391 (*MIB).addOperand(*argOpers[i]);
11392
11393 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011394 (*MIB).setMemRefs(bInstr->memoperands_begin(),
11395 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011396
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011397 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011398 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011399 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011400 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011401
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011402 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011403 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011404
Dan Gohman14152b42010-07-06 20:24:04 +000011405 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011406 return nextMBB;
11407}
11408
11409// private utility function
11410MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000011411X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
11412 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000011413 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000011414 // For the atomic min/max operator, we generate
11415 // thisMBB:
11416 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000011417 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000011418 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000011419 // cmp t1, t2
11420 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000011421 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000011422 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
11423 // bz newMBB
11424 // fallthrough -->nextMBB
11425 //
11426 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11427 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011428 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000011429 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000011430
Mon P Wang63307c32008-05-05 19:05:59 +000011431 /// First build the CFG
11432 MachineFunction *F = MBB->getParent();
11433 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011434 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11435 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11436 F->insert(MBBIter, newMBB);
11437 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011438
Dan Gohman14152b42010-07-06 20:24:04 +000011439 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11440 nextMBB->splice(nextMBB->begin(), thisMBB,
11441 llvm::next(MachineBasicBlock::iterator(mInstr)),
11442 thisMBB->end());
11443 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011444
Mon P Wang63307c32008-05-05 19:05:59 +000011445 // Update thisMBB to fall through to newMBB
11446 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011447
Mon P Wang63307c32008-05-05 19:05:59 +000011448 // newMBB jumps to newMBB and fall through to nextMBB
11449 newMBB->addSuccessor(nextMBB);
11450 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011451
Dale Johannesene4d209d2009-02-03 20:21:25 +000011452 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000011453 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011454 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011455 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000011456 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011457 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000011458 int numArgs = mInstr->getNumOperands() - 1;
11459 for (int i=0; i < numArgs; ++i)
11460 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000011461
Mon P Wang63307c32008-05-05 19:05:59 +000011462 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011463 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011464 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000011465
Mon P Wangab3e7472008-05-05 22:56:23 +000011466 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011467 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000011468 for (int i=0; i <= lastAddrIndx; ++i)
11469 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000011470
Mon P Wang63307c32008-05-05 19:05:59 +000011471 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000011472 assert((argOpers[valArgIndx]->isReg() ||
11473 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000011474 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000011475
11476 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000011477 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011478 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000011479 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011480 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000011481 (*MIB).addOperand(*argOpers[valArgIndx]);
11482
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011483 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000011484 MIB.addReg(t1);
11485
Dale Johannesene4d209d2009-02-03 20:21:25 +000011486 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000011487 MIB.addReg(t1);
11488 MIB.addReg(t2);
11489
11490 // Generate movc
11491 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011492 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000011493 MIB.addReg(t2);
11494 MIB.addReg(t1);
11495
11496 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000011497 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000011498 for (int i=0; i <= lastAddrIndx; ++i)
11499 (*MIB).addOperand(*argOpers[i]);
11500 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000011501 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011502 (*MIB).setMemRefs(mInstr->memoperands_begin(),
11503 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000011504
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011505 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000011506 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011507
Mon P Wang63307c32008-05-05 19:05:59 +000011508 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011509 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000011510
Dan Gohman14152b42010-07-06 20:24:04 +000011511 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000011512 return nextMBB;
11513}
11514
Eric Christopherf83a5de2009-08-27 18:08:16 +000011515// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011516// or XMM0_V32I8 in AVX all of this code can be replaced with that
11517// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011518MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000011519X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000011520 unsigned numArgs, bool memArg) const {
Craig Topperc0d82852011-11-22 00:44:41 +000011521 assert(Subtarget->hasSSE42orAVX() &&
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011522 "Target must have SSE4.2 or AVX features enabled");
11523
Eric Christopherb120ab42009-08-18 22:50:32 +000011524 DebugLoc dl = MI->getDebugLoc();
11525 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000011526 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011527 if (!Subtarget->hasAVX()) {
11528 if (memArg)
11529 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
11530 else
11531 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
11532 } else {
11533 if (memArg)
11534 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
11535 else
11536 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
11537 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011538
Eric Christopher41c902f2010-11-30 08:20:21 +000011539 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000011540 for (unsigned i = 0; i < numArgs; ++i) {
11541 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000011542 if (!(Op.isReg() && Op.isImplicit()))
11543 MIB.addOperand(Op);
11544 }
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011545 BuildMI(*BB, MI, dl,
11546 TII->get(Subtarget->hasAVX() ? X86::VMOVAPSrr : X86::MOVAPSrr),
11547 MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000011548 .addReg(X86::XMM0);
11549
Dan Gohman14152b42010-07-06 20:24:04 +000011550 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000011551 return BB;
11552}
11553
11554MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000011555X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011556 DebugLoc dl = MI->getDebugLoc();
11557 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011558
Eric Christopher228232b2010-11-30 07:20:12 +000011559 // Address into RAX/EAX, other two args into ECX, EDX.
11560 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
11561 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
11562 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
11563 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000011564 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011565
Eric Christopher228232b2010-11-30 07:20:12 +000011566 unsigned ValOps = X86::AddrNumOperands;
11567 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11568 .addReg(MI->getOperand(ValOps).getReg());
11569 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
11570 .addReg(MI->getOperand(ValOps+1).getReg());
11571
11572 // The instruction doesn't actually take any operands though.
11573 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011574
Eric Christopher228232b2010-11-30 07:20:12 +000011575 MI->eraseFromParent(); // The pseudo is gone now.
11576 return BB;
11577}
11578
11579MachineBasicBlock *
11580X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011581 DebugLoc dl = MI->getDebugLoc();
11582 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011583
Eric Christopher228232b2010-11-30 07:20:12 +000011584 // First arg in ECX, the second in EAX.
11585 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11586 .addReg(MI->getOperand(0).getReg());
11587 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
11588 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011589
Eric Christopher228232b2010-11-30 07:20:12 +000011590 // The instruction doesn't actually take any operands though.
11591 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011592
Eric Christopher228232b2010-11-30 07:20:12 +000011593 MI->eraseFromParent(); // The pseudo is gone now.
11594 return BB;
11595}
11596
11597MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000011598X86TargetLowering::EmitVAARG64WithCustomInserter(
11599 MachineInstr *MI,
11600 MachineBasicBlock *MBB) const {
11601 // Emit va_arg instruction on X86-64.
11602
11603 // Operands to this pseudo-instruction:
11604 // 0 ) Output : destination address (reg)
11605 // 1-5) Input : va_list address (addr, i64mem)
11606 // 6 ) ArgSize : Size (in bytes) of vararg type
11607 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
11608 // 8 ) Align : Alignment of type
11609 // 9 ) EFLAGS (implicit-def)
11610
11611 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
11612 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
11613
11614 unsigned DestReg = MI->getOperand(0).getReg();
11615 MachineOperand &Base = MI->getOperand(1);
11616 MachineOperand &Scale = MI->getOperand(2);
11617 MachineOperand &Index = MI->getOperand(3);
11618 MachineOperand &Disp = MI->getOperand(4);
11619 MachineOperand &Segment = MI->getOperand(5);
11620 unsigned ArgSize = MI->getOperand(6).getImm();
11621 unsigned ArgMode = MI->getOperand(7).getImm();
11622 unsigned Align = MI->getOperand(8).getImm();
11623
11624 // Memory Reference
11625 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
11626 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
11627 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
11628
11629 // Machine Information
11630 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11631 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
11632 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
11633 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
11634 DebugLoc DL = MI->getDebugLoc();
11635
11636 // struct va_list {
11637 // i32 gp_offset
11638 // i32 fp_offset
11639 // i64 overflow_area (address)
11640 // i64 reg_save_area (address)
11641 // }
11642 // sizeof(va_list) = 24
11643 // alignment(va_list) = 8
11644
11645 unsigned TotalNumIntRegs = 6;
11646 unsigned TotalNumXMMRegs = 8;
11647 bool UseGPOffset = (ArgMode == 1);
11648 bool UseFPOffset = (ArgMode == 2);
11649 unsigned MaxOffset = TotalNumIntRegs * 8 +
11650 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
11651
11652 /* Align ArgSize to a multiple of 8 */
11653 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
11654 bool NeedsAlign = (Align > 8);
11655
11656 MachineBasicBlock *thisMBB = MBB;
11657 MachineBasicBlock *overflowMBB;
11658 MachineBasicBlock *offsetMBB;
11659 MachineBasicBlock *endMBB;
11660
11661 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
11662 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
11663 unsigned OffsetReg = 0;
11664
11665 if (!UseGPOffset && !UseFPOffset) {
11666 // If we only pull from the overflow region, we don't create a branch.
11667 // We don't need to alter control flow.
11668 OffsetDestReg = 0; // unused
11669 OverflowDestReg = DestReg;
11670
11671 offsetMBB = NULL;
11672 overflowMBB = thisMBB;
11673 endMBB = thisMBB;
11674 } else {
11675 // First emit code to check if gp_offset (or fp_offset) is below the bound.
11676 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
11677 // If not, pull from overflow_area. (branch to overflowMBB)
11678 //
11679 // thisMBB
11680 // | .
11681 // | .
11682 // offsetMBB overflowMBB
11683 // | .
11684 // | .
11685 // endMBB
11686
11687 // Registers for the PHI in endMBB
11688 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
11689 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
11690
11691 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11692 MachineFunction *MF = MBB->getParent();
11693 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11694 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11695 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11696
11697 MachineFunction::iterator MBBIter = MBB;
11698 ++MBBIter;
11699
11700 // Insert the new basic blocks
11701 MF->insert(MBBIter, offsetMBB);
11702 MF->insert(MBBIter, overflowMBB);
11703 MF->insert(MBBIter, endMBB);
11704
11705 // Transfer the remainder of MBB and its successor edges to endMBB.
11706 endMBB->splice(endMBB->begin(), thisMBB,
11707 llvm::next(MachineBasicBlock::iterator(MI)),
11708 thisMBB->end());
11709 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11710
11711 // Make offsetMBB and overflowMBB successors of thisMBB
11712 thisMBB->addSuccessor(offsetMBB);
11713 thisMBB->addSuccessor(overflowMBB);
11714
11715 // endMBB is a successor of both offsetMBB and overflowMBB
11716 offsetMBB->addSuccessor(endMBB);
11717 overflowMBB->addSuccessor(endMBB);
11718
11719 // Load the offset value into a register
11720 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11721 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11722 .addOperand(Base)
11723 .addOperand(Scale)
11724 .addOperand(Index)
11725 .addDisp(Disp, UseFPOffset ? 4 : 0)
11726 .addOperand(Segment)
11727 .setMemRefs(MMOBegin, MMOEnd);
11728
11729 // Check if there is enough room left to pull this argument.
11730 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11731 .addReg(OffsetReg)
11732 .addImm(MaxOffset + 8 - ArgSizeA8);
11733
11734 // Branch to "overflowMBB" if offset >= max
11735 // Fall through to "offsetMBB" otherwise
11736 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
11737 .addMBB(overflowMBB);
11738 }
11739
11740 // In offsetMBB, emit code to use the reg_save_area.
11741 if (offsetMBB) {
11742 assert(OffsetReg != 0);
11743
11744 // Read the reg_save_area address.
11745 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
11746 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
11747 .addOperand(Base)
11748 .addOperand(Scale)
11749 .addOperand(Index)
11750 .addDisp(Disp, 16)
11751 .addOperand(Segment)
11752 .setMemRefs(MMOBegin, MMOEnd);
11753
11754 // Zero-extend the offset
11755 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
11756 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
11757 .addImm(0)
11758 .addReg(OffsetReg)
11759 .addImm(X86::sub_32bit);
11760
11761 // Add the offset to the reg_save_area to get the final address.
11762 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
11763 .addReg(OffsetReg64)
11764 .addReg(RegSaveReg);
11765
11766 // Compute the offset for the next argument
11767 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11768 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
11769 .addReg(OffsetReg)
11770 .addImm(UseFPOffset ? 16 : 8);
11771
11772 // Store it back into the va_list.
11773 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
11774 .addOperand(Base)
11775 .addOperand(Scale)
11776 .addOperand(Index)
11777 .addDisp(Disp, UseFPOffset ? 4 : 0)
11778 .addOperand(Segment)
11779 .addReg(NextOffsetReg)
11780 .setMemRefs(MMOBegin, MMOEnd);
11781
11782 // Jump to endMBB
11783 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
11784 .addMBB(endMBB);
11785 }
11786
11787 //
11788 // Emit code to use overflow area
11789 //
11790
11791 // Load the overflow_area address into a register.
11792 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
11793 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
11794 .addOperand(Base)
11795 .addOperand(Scale)
11796 .addOperand(Index)
11797 .addDisp(Disp, 8)
11798 .addOperand(Segment)
11799 .setMemRefs(MMOBegin, MMOEnd);
11800
11801 // If we need to align it, do so. Otherwise, just copy the address
11802 // to OverflowDestReg.
11803 if (NeedsAlign) {
11804 // Align the overflow address
11805 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
11806 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
11807
11808 // aligned_addr = (addr + (align-1)) & ~(align-1)
11809 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
11810 .addReg(OverflowAddrReg)
11811 .addImm(Align-1);
11812
11813 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
11814 .addReg(TmpReg)
11815 .addImm(~(uint64_t)(Align-1));
11816 } else {
11817 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
11818 .addReg(OverflowAddrReg);
11819 }
11820
11821 // Compute the next overflow address after this argument.
11822 // (the overflow address should be kept 8-byte aligned)
11823 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
11824 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
11825 .addReg(OverflowDestReg)
11826 .addImm(ArgSizeA8);
11827
11828 // Store the new overflow address.
11829 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
11830 .addOperand(Base)
11831 .addOperand(Scale)
11832 .addOperand(Index)
11833 .addDisp(Disp, 8)
11834 .addOperand(Segment)
11835 .addReg(NextAddrReg)
11836 .setMemRefs(MMOBegin, MMOEnd);
11837
11838 // If we branched, emit the PHI to the front of endMBB.
11839 if (offsetMBB) {
11840 BuildMI(*endMBB, endMBB->begin(), DL,
11841 TII->get(X86::PHI), DestReg)
11842 .addReg(OffsetDestReg).addMBB(offsetMBB)
11843 .addReg(OverflowDestReg).addMBB(overflowMBB);
11844 }
11845
11846 // Erase the pseudo instruction
11847 MI->eraseFromParent();
11848
11849 return endMBB;
11850}
11851
11852MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000011853X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
11854 MachineInstr *MI,
11855 MachineBasicBlock *MBB) const {
11856 // Emit code to save XMM registers to the stack. The ABI says that the
11857 // number of registers to save is given in %al, so it's theoretically
11858 // possible to do an indirect jump trick to avoid saving all of them,
11859 // however this code takes a simpler approach and just executes all
11860 // of the stores if %al is non-zero. It's less code, and it's probably
11861 // easier on the hardware branch predictor, and stores aren't all that
11862 // expensive anyway.
11863
11864 // Create the new basic blocks. One block contains all the XMM stores,
11865 // and one block is the final destination regardless of whether any
11866 // stores were performed.
11867 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11868 MachineFunction *F = MBB->getParent();
11869 MachineFunction::iterator MBBIter = MBB;
11870 ++MBBIter;
11871 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
11872 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
11873 F->insert(MBBIter, XMMSaveMBB);
11874 F->insert(MBBIter, EndMBB);
11875
Dan Gohman14152b42010-07-06 20:24:04 +000011876 // Transfer the remainder of MBB and its successor edges to EndMBB.
11877 EndMBB->splice(EndMBB->begin(), MBB,
11878 llvm::next(MachineBasicBlock::iterator(MI)),
11879 MBB->end());
11880 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
11881
Dan Gohmand6708ea2009-08-15 01:38:56 +000011882 // The original block will now fall through to the XMM save block.
11883 MBB->addSuccessor(XMMSaveMBB);
11884 // The XMMSaveMBB will fall through to the end block.
11885 XMMSaveMBB->addSuccessor(EndMBB);
11886
11887 // Now add the instructions.
11888 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11889 DebugLoc DL = MI->getDebugLoc();
11890
11891 unsigned CountReg = MI->getOperand(0).getReg();
11892 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
11893 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
11894
11895 if (!Subtarget->isTargetWin64()) {
11896 // If %al is 0, branch around the XMM save block.
11897 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011898 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011899 MBB->addSuccessor(EndMBB);
11900 }
11901
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011902 unsigned MOVOpc = Subtarget->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000011903 // In the XMM save block, save all the XMM argument registers.
11904 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
11905 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000011906 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000011907 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000011908 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000011909 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000011910 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011911 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000011912 .addFrameIndex(RegSaveFrameIndex)
11913 .addImm(/*Scale=*/1)
11914 .addReg(/*IndexReg=*/0)
11915 .addImm(/*Disp=*/Offset)
11916 .addReg(/*Segment=*/0)
11917 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000011918 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011919 }
11920
Dan Gohman14152b42010-07-06 20:24:04 +000011921 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011922
11923 return EndMBB;
11924}
Mon P Wang63307c32008-05-05 19:05:59 +000011925
Evan Cheng60c07e12006-07-05 22:17:51 +000011926MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000011927X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011928 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000011929 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11930 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000011931
Chris Lattner52600972009-09-02 05:57:00 +000011932 // To "insert" a SELECT_CC instruction, we actually have to insert the
11933 // diamond control-flow pattern. The incoming instruction knows the
11934 // destination vreg to set, the condition code register to branch on, the
11935 // true/false values to select between, and a branch opcode to use.
11936 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11937 MachineFunction::iterator It = BB;
11938 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000011939
Chris Lattner52600972009-09-02 05:57:00 +000011940 // thisMBB:
11941 // ...
11942 // TrueVal = ...
11943 // cmpTY ccX, r1, r2
11944 // bCC copy1MBB
11945 // fallthrough --> copy0MBB
11946 MachineBasicBlock *thisMBB = BB;
11947 MachineFunction *F = BB->getParent();
11948 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
11949 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000011950 F->insert(It, copy0MBB);
11951 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000011952
Bill Wendling730c07e2010-06-25 20:48:10 +000011953 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11954 // live into the sink and copy blocks.
Jakob Stoklund Olesen4a1b9d82011-09-02 23:52:49 +000011955 if (!MI->killsRegister(X86::EFLAGS)) {
11956 copy0MBB->addLiveIn(X86::EFLAGS);
11957 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000011958 }
11959
Dan Gohman14152b42010-07-06 20:24:04 +000011960 // Transfer the remainder of BB and its successor edges to sinkMBB.
11961 sinkMBB->splice(sinkMBB->begin(), BB,
11962 llvm::next(MachineBasicBlock::iterator(MI)),
11963 BB->end());
11964 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11965
11966 // Add the true and fallthrough blocks as its successors.
11967 BB->addSuccessor(copy0MBB);
11968 BB->addSuccessor(sinkMBB);
11969
11970 // Create the conditional branch instruction.
11971 unsigned Opc =
11972 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11973 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11974
Chris Lattner52600972009-09-02 05:57:00 +000011975 // copy0MBB:
11976 // %FalseValue = ...
11977 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011978 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011979
Chris Lattner52600972009-09-02 05:57:00 +000011980 // sinkMBB:
11981 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11982 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011983 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11984 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011985 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11986 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11987
Dan Gohman14152b42010-07-06 20:24:04 +000011988 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011989 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011990}
11991
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011992MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000011993X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
11994 bool Is64Bit) const {
11995 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11996 DebugLoc DL = MI->getDebugLoc();
11997 MachineFunction *MF = BB->getParent();
11998 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11999
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012000 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000012001
12002 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
12003 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
12004
12005 // BB:
12006 // ... [Till the alloca]
12007 // If stacklet is not large enough, jump to mallocMBB
12008 //
12009 // bumpMBB:
12010 // Allocate by subtracting from RSP
12011 // Jump to continueMBB
12012 //
12013 // mallocMBB:
12014 // Allocate by call to runtime
12015 //
12016 // continueMBB:
12017 // ...
12018 // [rest of original BB]
12019 //
12020
12021 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12022 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12023 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12024
12025 MachineRegisterInfo &MRI = MF->getRegInfo();
12026 const TargetRegisterClass *AddrRegClass =
12027 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
12028
12029 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
12030 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
12031 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000012032 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000012033 sizeVReg = MI->getOperand(1).getReg(),
12034 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
12035
12036 MachineFunction::iterator MBBIter = BB;
12037 ++MBBIter;
12038
12039 MF->insert(MBBIter, bumpMBB);
12040 MF->insert(MBBIter, mallocMBB);
12041 MF->insert(MBBIter, continueMBB);
12042
12043 continueMBB->splice(continueMBB->begin(), BB, llvm::next
12044 (MachineBasicBlock::iterator(MI)), BB->end());
12045 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
12046
12047 // Add code to the main basic block to check if the stack limit has been hit,
12048 // and if so, jump to mallocMBB otherwise to bumpMBB.
12049 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000012050 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000012051 .addReg(tmpSPVReg).addReg(sizeVReg);
12052 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
12053 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000012054 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000012055 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
12056
12057 // bumpMBB simply decreases the stack pointer, since we know the current
12058 // stacklet has enough space.
12059 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000012060 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000012061 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000012062 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000012063 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
12064
12065 // Calls into a routine in libgcc to allocate more space from the heap.
12066 if (Is64Bit) {
12067 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
12068 .addReg(sizeVReg);
12069 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
12070 .addExternalSymbol("__morestack_allocate_stack_space").addReg(X86::RDI);
12071 } else {
12072 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
12073 .addImm(12);
12074 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
12075 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
12076 .addExternalSymbol("__morestack_allocate_stack_space");
12077 }
12078
12079 if (!Is64Bit)
12080 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
12081 .addImm(16);
12082
12083 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
12084 .addReg(Is64Bit ? X86::RAX : X86::EAX);
12085 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
12086
12087 // Set up the CFG correctly.
12088 BB->addSuccessor(bumpMBB);
12089 BB->addSuccessor(mallocMBB);
12090 mallocMBB->addSuccessor(continueMBB);
12091 bumpMBB->addSuccessor(continueMBB);
12092
12093 // Take care of the PHI nodes.
12094 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
12095 MI->getOperand(0).getReg())
12096 .addReg(mallocPtrVReg).addMBB(mallocMBB)
12097 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
12098
12099 // Delete the original pseudo instruction.
12100 MI->eraseFromParent();
12101
12102 // And we're done.
12103 return continueMBB;
12104}
12105
12106MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000012107X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000012108 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000012109 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12110 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000012111
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000012112 assert(!Subtarget->isTargetEnvMacho());
12113
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000012114 // The lowering is pretty easy: we're just emitting the call to _alloca. The
12115 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000012116
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000012117 if (Subtarget->isTargetWin64()) {
12118 if (Subtarget->isTargetCygMing()) {
12119 // ___chkstk(Mingw64):
12120 // Clobbers R10, R11, RAX and EFLAGS.
12121 // Updates RSP.
12122 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
12123 .addExternalSymbol("___chkstk")
12124 .addReg(X86::RAX, RegState::Implicit)
12125 .addReg(X86::RSP, RegState::Implicit)
12126 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
12127 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
12128 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12129 } else {
12130 // __chkstk(MSVCRT): does not update stack pointer.
12131 // Clobbers R10, R11 and EFLAGS.
12132 // FIXME: RAX(allocated size) might be reused and not killed.
12133 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
12134 .addExternalSymbol("__chkstk")
12135 .addReg(X86::RAX, RegState::Implicit)
12136 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12137 // RAX has the offset to subtracted from RSP.
12138 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
12139 .addReg(X86::RSP)
12140 .addReg(X86::RAX);
12141 }
12142 } else {
12143 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000012144 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
12145
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000012146 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
12147 .addExternalSymbol(StackProbeSymbol)
12148 .addReg(X86::EAX, RegState::Implicit)
12149 .addReg(X86::ESP, RegState::Implicit)
12150 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
12151 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
12152 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12153 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000012154
Dan Gohman14152b42010-07-06 20:24:04 +000012155 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000012156 return BB;
12157}
Chris Lattner52600972009-09-02 05:57:00 +000012158
12159MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000012160X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
12161 MachineBasicBlock *BB) const {
12162 // This is pretty easy. We're taking the value that we received from
12163 // our load from the relocation, sticking it in either RDI (x86-64)
12164 // or EAX and doing an indirect call. The return value will then
12165 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000012166 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000012167 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000012168 DebugLoc DL = MI->getDebugLoc();
12169 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000012170
12171 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000012172 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000012173
Eric Christopher30ef0e52010-06-03 04:07:48 +000012174 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000012175 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12176 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000012177 .addReg(X86::RIP)
12178 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000012179 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000012180 MI->getOperand(3).getTargetFlags())
12181 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000012182 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000012183 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000012184 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000012185 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12186 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000012187 .addReg(0)
12188 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000012189 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000012190 MI->getOperand(3).getTargetFlags())
12191 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000012192 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000012193 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000012194 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000012195 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12196 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000012197 .addReg(TII->getGlobalBaseReg(F))
12198 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000012199 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000012200 MI->getOperand(3).getTargetFlags())
12201 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000012202 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000012203 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000012204 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000012205
Dan Gohman14152b42010-07-06 20:24:04 +000012206 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000012207 return BB;
12208}
12209
12210MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000012211X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000012212 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000012213 switch (MI->getOpcode()) {
Richard Trieu23946fc2011-09-21 03:09:09 +000012214 default: assert(0 && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000012215 case X86::TAILJMPd64:
12216 case X86::TAILJMPr64:
12217 case X86::TAILJMPm64:
Richard Trieu23946fc2011-09-21 03:09:09 +000012218 assert(0 && "TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000012219 case X86::TCRETURNdi64:
12220 case X86::TCRETURNri64:
12221 case X86::TCRETURNmi64:
12222 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
12223 // On AMD64, additional defs should be added before register allocation.
12224 if (!Subtarget->isTargetWin64()) {
12225 MI->addRegisterDefined(X86::RSI);
12226 MI->addRegisterDefined(X86::RDI);
12227 MI->addRegisterDefined(X86::XMM6);
12228 MI->addRegisterDefined(X86::XMM7);
12229 MI->addRegisterDefined(X86::XMM8);
12230 MI->addRegisterDefined(X86::XMM9);
12231 MI->addRegisterDefined(X86::XMM10);
12232 MI->addRegisterDefined(X86::XMM11);
12233 MI->addRegisterDefined(X86::XMM12);
12234 MI->addRegisterDefined(X86::XMM13);
12235 MI->addRegisterDefined(X86::XMM14);
12236 MI->addRegisterDefined(X86::XMM15);
12237 }
12238 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000012239 case X86::WIN_ALLOCA:
12240 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000012241 case X86::SEG_ALLOCA_32:
12242 return EmitLoweredSegAlloca(MI, BB, false);
12243 case X86::SEG_ALLOCA_64:
12244 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000012245 case X86::TLSCall_32:
12246 case X86::TLSCall_64:
12247 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000012248 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000012249 case X86::CMOV_FR32:
12250 case X86::CMOV_FR64:
12251 case X86::CMOV_V4F32:
12252 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000012253 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000012254 case X86::CMOV_V8F32:
12255 case X86::CMOV_V4F64:
12256 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000012257 case X86::CMOV_GR16:
12258 case X86::CMOV_GR32:
12259 case X86::CMOV_RFP32:
12260 case X86::CMOV_RFP64:
12261 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000012262 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000012263
Dale Johannesen849f2142007-07-03 00:53:03 +000012264 case X86::FP32_TO_INT16_IN_MEM:
12265 case X86::FP32_TO_INT32_IN_MEM:
12266 case X86::FP32_TO_INT64_IN_MEM:
12267 case X86::FP64_TO_INT16_IN_MEM:
12268 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000012269 case X86::FP64_TO_INT64_IN_MEM:
12270 case X86::FP80_TO_INT16_IN_MEM:
12271 case X86::FP80_TO_INT32_IN_MEM:
12272 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000012273 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12274 DebugLoc DL = MI->getDebugLoc();
12275
Evan Cheng60c07e12006-07-05 22:17:51 +000012276 // Change the floating point control register to use "round towards zero"
12277 // mode when truncating to an integer value.
12278 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000012279 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000012280 addFrameReference(BuildMI(*BB, MI, DL,
12281 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012282
12283 // Load the old value of the high byte of the control word...
12284 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000012285 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000012286 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000012287 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012288
12289 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000012290 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000012291 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000012292
12293 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000012294 addFrameReference(BuildMI(*BB, MI, DL,
12295 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012296
12297 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000012298 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000012299 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000012300
12301 // Get the X86 opcode to use.
12302 unsigned Opc;
12303 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012304 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000012305 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
12306 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
12307 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
12308 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
12309 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
12310 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000012311 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
12312 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
12313 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000012314 }
12315
12316 X86AddressMode AM;
12317 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000012318 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000012319 AM.BaseType = X86AddressMode::RegBase;
12320 AM.Base.Reg = Op.getReg();
12321 } else {
12322 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000012323 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000012324 }
12325 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000012326 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000012327 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012328 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000012329 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000012330 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012331 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000012332 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000012333 AM.GV = Op.getGlobal();
12334 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000012335 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012336 }
Dan Gohman14152b42010-07-06 20:24:04 +000012337 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000012338 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000012339
12340 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000012341 addFrameReference(BuildMI(*BB, MI, DL,
12342 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012343
Dan Gohman14152b42010-07-06 20:24:04 +000012344 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000012345 return BB;
12346 }
Eric Christopherb120ab42009-08-18 22:50:32 +000012347 // String/text processing lowering.
12348 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012349 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000012350 return EmitPCMP(MI, BB, 3, false /* in-mem */);
12351 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012352 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000012353 return EmitPCMP(MI, BB, 3, true /* in-mem */);
12354 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012355 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000012356 return EmitPCMP(MI, BB, 5, false /* in mem */);
12357 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012358 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000012359 return EmitPCMP(MI, BB, 5, true /* in mem */);
12360
Eric Christopher228232b2010-11-30 07:20:12 +000012361 // Thread synchronization.
12362 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012363 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000012364 case X86::MWAIT:
12365 return EmitMwait(MI, BB);
12366
Eric Christopherb120ab42009-08-18 22:50:32 +000012367 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000012368 case X86::ATOMAND32:
12369 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012370 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012371 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012372 X86::NOT32r, X86::EAX,
12373 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000012374 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000012375 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
12376 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012377 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012378 X86::NOT32r, X86::EAX,
12379 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000012380 case X86::ATOMXOR32:
12381 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012382 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012383 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012384 X86::NOT32r, X86::EAX,
12385 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000012386 case X86::ATOMNAND32:
12387 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012388 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012389 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012390 X86::NOT32r, X86::EAX,
12391 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000012392 case X86::ATOMMIN32:
12393 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
12394 case X86::ATOMMAX32:
12395 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
12396 case X86::ATOMUMIN32:
12397 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
12398 case X86::ATOMUMAX32:
12399 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000012400
12401 case X86::ATOMAND16:
12402 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12403 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012404 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012405 X86::NOT16r, X86::AX,
12406 X86::GR16RegisterClass);
12407 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000012408 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012409 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012410 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012411 X86::NOT16r, X86::AX,
12412 X86::GR16RegisterClass);
12413 case X86::ATOMXOR16:
12414 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
12415 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012416 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012417 X86::NOT16r, X86::AX,
12418 X86::GR16RegisterClass);
12419 case X86::ATOMNAND16:
12420 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12421 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012422 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012423 X86::NOT16r, X86::AX,
12424 X86::GR16RegisterClass, true);
12425 case X86::ATOMMIN16:
12426 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
12427 case X86::ATOMMAX16:
12428 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
12429 case X86::ATOMUMIN16:
12430 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
12431 case X86::ATOMUMAX16:
12432 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
12433
12434 case X86::ATOMAND8:
12435 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12436 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012437 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012438 X86::NOT8r, X86::AL,
12439 X86::GR8RegisterClass);
12440 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000012441 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012442 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012443 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012444 X86::NOT8r, X86::AL,
12445 X86::GR8RegisterClass);
12446 case X86::ATOMXOR8:
12447 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
12448 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012449 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012450 X86::NOT8r, X86::AL,
12451 X86::GR8RegisterClass);
12452 case X86::ATOMNAND8:
12453 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12454 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012455 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012456 X86::NOT8r, X86::AL,
12457 X86::GR8RegisterClass, true);
12458 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012459 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000012460 case X86::ATOMAND64:
12461 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012462 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012463 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012464 X86::NOT64r, X86::RAX,
12465 X86::GR64RegisterClass);
12466 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000012467 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
12468 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012469 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012470 X86::NOT64r, X86::RAX,
12471 X86::GR64RegisterClass);
12472 case X86::ATOMXOR64:
12473 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012474 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012475 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012476 X86::NOT64r, X86::RAX,
12477 X86::GR64RegisterClass);
12478 case X86::ATOMNAND64:
12479 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
12480 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012481 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012482 X86::NOT64r, X86::RAX,
12483 X86::GR64RegisterClass, true);
12484 case X86::ATOMMIN64:
12485 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
12486 case X86::ATOMMAX64:
12487 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
12488 case X86::ATOMUMIN64:
12489 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
12490 case X86::ATOMUMAX64:
12491 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012492
12493 // This group does 64-bit operations on a 32-bit host.
12494 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012495 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012496 X86::AND32rr, X86::AND32rr,
12497 X86::AND32ri, X86::AND32ri,
12498 false);
12499 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012500 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012501 X86::OR32rr, X86::OR32rr,
12502 X86::OR32ri, X86::OR32ri,
12503 false);
12504 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012505 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012506 X86::XOR32rr, X86::XOR32rr,
12507 X86::XOR32ri, X86::XOR32ri,
12508 false);
12509 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012510 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012511 X86::AND32rr, X86::AND32rr,
12512 X86::AND32ri, X86::AND32ri,
12513 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012514 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012515 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012516 X86::ADD32rr, X86::ADC32rr,
12517 X86::ADD32ri, X86::ADC32ri,
12518 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012519 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012520 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012521 X86::SUB32rr, X86::SBB32rr,
12522 X86::SUB32ri, X86::SBB32ri,
12523 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000012524 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012525 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000012526 X86::MOV32rr, X86::MOV32rr,
12527 X86::MOV32ri, X86::MOV32ri,
12528 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000012529 case X86::VASTART_SAVE_XMM_REGS:
12530 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000012531
12532 case X86::VAARG_64:
12533 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000012534 }
12535}
12536
12537//===----------------------------------------------------------------------===//
12538// X86 Optimization Hooks
12539//===----------------------------------------------------------------------===//
12540
Dan Gohman475871a2008-07-27 21:46:04 +000012541void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000012542 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012543 APInt &KnownZero,
12544 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000012545 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000012546 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012547 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000012548 assert((Opc >= ISD::BUILTIN_OP_END ||
12549 Opc == ISD::INTRINSIC_WO_CHAIN ||
12550 Opc == ISD::INTRINSIC_W_CHAIN ||
12551 Opc == ISD::INTRINSIC_VOID) &&
12552 "Should use MaskedValueIsZero if you don't know whether Op"
12553 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012554
Dan Gohmanf4f92f52008-02-13 23:07:24 +000012555 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012556 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000012557 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012558 case X86ISD::ADD:
12559 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000012560 case X86ISD::ADC:
12561 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012562 case X86ISD::SMUL:
12563 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000012564 case X86ISD::INC:
12565 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000012566 case X86ISD::OR:
12567 case X86ISD::XOR:
12568 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012569 // These nodes' second result is a boolean.
12570 if (Op.getResNo() == 0)
12571 break;
12572 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012573 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012574 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
12575 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000012576 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000012577 case ISD::INTRINSIC_WO_CHAIN: {
12578 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12579 unsigned NumLoBits = 0;
12580 switch (IntId) {
12581 default: break;
12582 case Intrinsic::x86_sse_movmsk_ps:
12583 case Intrinsic::x86_avx_movmsk_ps_256:
12584 case Intrinsic::x86_sse2_movmsk_pd:
12585 case Intrinsic::x86_avx_movmsk_pd_256:
12586 case Intrinsic::x86_mmx_pmovmskb:
12587 case Intrinsic::x86_sse2_pmovmskb_128: {
12588 // High bits of movmskp{s|d}, pmovmskb are known zero.
12589 switch (IntId) {
12590 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
12591 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
12592 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
12593 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
12594 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
12595 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
12596 }
12597 KnownZero = APInt::getHighBitsSet(Mask.getBitWidth(),
12598 Mask.getBitWidth() - NumLoBits);
12599 break;
12600 }
12601 }
12602 break;
12603 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012604 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012605}
Chris Lattner259e97c2006-01-31 19:43:35 +000012606
Owen Andersonbc146b02010-09-21 20:42:50 +000012607unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
12608 unsigned Depth) const {
12609 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
12610 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
12611 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000012612
Owen Andersonbc146b02010-09-21 20:42:50 +000012613 // Fallback case.
12614 return 1;
12615}
12616
Evan Cheng206ee9d2006-07-07 08:33:52 +000012617/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000012618/// node is a GlobalAddress + offset.
12619bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000012620 const GlobalValue* &GA,
12621 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000012622 if (N->getOpcode() == X86ISD::Wrapper) {
12623 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012624 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000012625 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012626 return true;
12627 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000012628 }
Evan Chengad4196b2008-05-12 19:56:52 +000012629 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012630}
12631
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012632/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
12633/// same as extracting the high 128-bit part of 256-bit vector and then
12634/// inserting the result into the low part of a new 256-bit vector
12635static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
12636 EVT VT = SVOp->getValueType(0);
12637 int NumElems = VT.getVectorNumElements();
12638
12639 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12640 for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
12641 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12642 SVOp->getMaskElt(j) >= 0)
12643 return false;
12644
12645 return true;
12646}
12647
12648/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
12649/// same as extracting the low 128-bit part of 256-bit vector and then
12650/// inserting the result into the high part of a new 256-bit vector
12651static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
12652 EVT VT = SVOp->getValueType(0);
12653 int NumElems = VT.getVectorNumElements();
12654
12655 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12656 for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
12657 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12658 SVOp->getMaskElt(j) >= 0)
12659 return false;
12660
12661 return true;
12662}
12663
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012664/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
12665static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
12666 TargetLowering::DAGCombinerInfo &DCI) {
12667 DebugLoc dl = N->getDebugLoc();
12668 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
12669 SDValue V1 = SVOp->getOperand(0);
12670 SDValue V2 = SVOp->getOperand(1);
12671 EVT VT = SVOp->getValueType(0);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012672 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012673
12674 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
12675 V2.getOpcode() == ISD::CONCAT_VECTORS) {
12676 //
12677 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000012678 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012679 // V UNDEF BUILD_VECTOR UNDEF
12680 // \ / \ /
12681 // CONCAT_VECTOR CONCAT_VECTOR
12682 // \ /
12683 // \ /
12684 // RESULT: V + zero extended
12685 //
12686 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
12687 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
12688 V1.getOperand(1).getOpcode() != ISD::UNDEF)
12689 return SDValue();
12690
12691 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
12692 return SDValue();
12693
12694 // To match the shuffle mask, the first half of the mask should
12695 // be exactly the first vector, and all the rest a splat with the
12696 // first element of the second one.
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012697 for (int i = 0; i < NumElems/2; ++i)
12698 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
12699 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
12700 return SDValue();
12701
12702 // Emit a zeroed vector and insert the desired subvector on its
12703 // first half.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000012704 SDValue Zeros = getZeroVector(VT, true /* HasXMMInt */, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012705 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
12706 DAG.getConstant(0, MVT::i32), DAG, dl);
12707 return DCI.CombineTo(N, InsV);
12708 }
12709
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012710 //===--------------------------------------------------------------------===//
12711 // Combine some shuffles into subvector extracts and inserts:
12712 //
12713
12714 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12715 if (isShuffleHigh128VectorInsertLow(SVOp)) {
12716 SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
12717 DAG, dl);
12718 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12719 V, DAG.getConstant(0, MVT::i32), DAG, dl);
12720 return DCI.CombineTo(N, InsV);
12721 }
12722
12723 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12724 if (isShuffleLow128VectorInsertHigh(SVOp)) {
12725 SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
12726 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12727 V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
12728 return DCI.CombineTo(N, InsV);
12729 }
12730
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012731 return SDValue();
12732}
12733
12734/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000012735static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012736 TargetLowering::DAGCombinerInfo &DCI,
12737 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000012738 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000012739 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000012740
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012741 // Don't create instructions with illegal types after legalize types has run.
12742 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12743 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
12744 return SDValue();
12745
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012746 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
12747 if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
12748 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012749 return PerformShuffleCombine256(N, DAG, DCI);
12750
12751 // Only handle 128 wide vector from here on.
12752 if (VT.getSizeInBits() != 128)
12753 return SDValue();
12754
12755 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
12756 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
12757 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000012758 SmallVector<SDValue, 16> Elts;
12759 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012760 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000012761
Nate Begemanfdea31a2010-03-24 20:49:50 +000012762 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000012763}
Evan Chengd880b972008-05-09 21:53:03 +000012764
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000012765/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
12766/// generation and convert it from being a bunch of shuffles and extracts
12767/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012768static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
12769 const TargetLowering &TLI) {
12770 SDValue InputVector = N->getOperand(0);
12771
12772 // Only operate on vectors of 4 elements, where the alternative shuffling
12773 // gets to be more expensive.
12774 if (InputVector.getValueType() != MVT::v4i32)
12775 return SDValue();
12776
12777 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
12778 // single use which is a sign-extend or zero-extend, and all elements are
12779 // used.
12780 SmallVector<SDNode *, 4> Uses;
12781 unsigned ExtractedElements = 0;
12782 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
12783 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
12784 if (UI.getUse().getResNo() != InputVector.getResNo())
12785 return SDValue();
12786
12787 SDNode *Extract = *UI;
12788 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
12789 return SDValue();
12790
12791 if (Extract->getValueType(0) != MVT::i32)
12792 return SDValue();
12793 if (!Extract->hasOneUse())
12794 return SDValue();
12795 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
12796 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
12797 return SDValue();
12798 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
12799 return SDValue();
12800
12801 // Record which element was extracted.
12802 ExtractedElements |=
12803 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
12804
12805 Uses.push_back(Extract);
12806 }
12807
12808 // If not all the elements were used, this may not be worthwhile.
12809 if (ExtractedElements != 15)
12810 return SDValue();
12811
12812 // Ok, we've now decided to do the transformation.
12813 DebugLoc dl = InputVector.getDebugLoc();
12814
12815 // Store the value to a temporary stack slot.
12816 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000012817 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
12818 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012819
12820 // Replace each use (extract) with a load of the appropriate element.
12821 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
12822 UE = Uses.end(); UI != UE; ++UI) {
12823 SDNode *Extract = *UI;
12824
Nadav Rotem86694292011-05-17 08:31:57 +000012825 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012826 SDValue Idx = Extract->getOperand(1);
12827 unsigned EltSize =
12828 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
12829 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
12830 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
12831
Nadav Rotem86694292011-05-17 08:31:57 +000012832 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012833 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012834
12835 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000012836 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000012837 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000012838 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012839
12840 // Replace the exact with the load.
12841 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
12842 }
12843
12844 // The replacement was made in place; don't return anything.
12845 return SDValue();
12846}
12847
Duncan Sands6bcd2192011-09-17 16:49:39 +000012848/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
12849/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012850static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000012851 const X86Subtarget *Subtarget) {
12852 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000012853 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000012854 // Get the LHS/RHS of the select.
12855 SDValue LHS = N->getOperand(1);
12856 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000012857 EVT VT = LHS.getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +000012858
Dan Gohman670e5392009-09-21 18:03:22 +000012859 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000012860 // instructions match the semantics of the common C idiom x<y?x:y but not
12861 // x<=y?x:y, because of how they handle negative zero (which can be
12862 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000012863 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
12864 VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
12865 (Subtarget->hasXMMInt() ||
12866 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012867 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012868
Chris Lattner47b4ce82009-03-11 05:48:52 +000012869 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000012870 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000012871 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
12872 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012873 switch (CC) {
12874 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012875 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012876 // Converting this to a min would handle NaNs incorrectly, and swapping
12877 // the operands would cause it to handle comparisons between positive
12878 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012879 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012880 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000012881 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12882 break;
12883 std::swap(LHS, RHS);
12884 }
Dan Gohman670e5392009-09-21 18:03:22 +000012885 Opcode = X86ISD::FMIN;
12886 break;
12887 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012888 // Converting this to a min would handle comparisons between positive
12889 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012890 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000012891 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
12892 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012893 Opcode = X86ISD::FMIN;
12894 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012895 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012896 // Converting this to a min would handle both negative zeros and NaNs
12897 // incorrectly, but we can swap the operands to fix both.
12898 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012899 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012900 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012901 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012902 Opcode = X86ISD::FMIN;
12903 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012904
Dan Gohman670e5392009-09-21 18:03:22 +000012905 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012906 // Converting this to a max would handle comparisons between positive
12907 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012908 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000012909 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012910 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012911 Opcode = X86ISD::FMAX;
12912 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012913 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012914 // Converting this to a max would handle NaNs incorrectly, and swapping
12915 // the operands would cause it to handle comparisons between positive
12916 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012917 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012918 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000012919 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12920 break;
12921 std::swap(LHS, RHS);
12922 }
Dan Gohman670e5392009-09-21 18:03:22 +000012923 Opcode = X86ISD::FMAX;
12924 break;
12925 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012926 // Converting this to a max would handle both negative zeros and NaNs
12927 // incorrectly, but we can swap the operands to fix both.
12928 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012929 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012930 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012931 case ISD::SETGE:
12932 Opcode = X86ISD::FMAX;
12933 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000012934 }
Dan Gohman670e5392009-09-21 18:03:22 +000012935 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000012936 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
12937 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012938 switch (CC) {
12939 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012940 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012941 // Converting this to a min would handle comparisons between positive
12942 // and negative zero incorrectly, and swapping the operands would
12943 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012944 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000012945 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000012946 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012947 break;
12948 std::swap(LHS, RHS);
12949 }
Dan Gohman670e5392009-09-21 18:03:22 +000012950 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000012951 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012952 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012953 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012954 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000012955 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
12956 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012957 Opcode = X86ISD::FMIN;
12958 break;
12959 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012960 // Converting this to a min would handle both negative zeros and NaNs
12961 // incorrectly, but we can swap the operands to fix both.
12962 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012963 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012964 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012965 case ISD::SETGE:
12966 Opcode = X86ISD::FMIN;
12967 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012968
Dan Gohman670e5392009-09-21 18:03:22 +000012969 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012970 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012971 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012972 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012973 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000012974 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012975 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012976 // Converting this to a max would handle comparisons between positive
12977 // and negative zero incorrectly, and swapping the operands would
12978 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000012979 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000012980 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000012981 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012982 break;
12983 std::swap(LHS, RHS);
12984 }
Dan Gohman670e5392009-09-21 18:03:22 +000012985 Opcode = X86ISD::FMAX;
12986 break;
12987 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012988 // Converting this to a max would handle both negative zeros and NaNs
12989 // incorrectly, but we can swap the operands to fix both.
12990 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012991 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012992 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012993 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012994 Opcode = X86ISD::FMAX;
12995 break;
12996 }
Chris Lattner83e6c992006-10-04 06:57:07 +000012997 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012998
Chris Lattner47b4ce82009-03-11 05:48:52 +000012999 if (Opcode)
13000 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000013001 }
Eric Christopherfd179292009-08-27 18:07:15 +000013002
Chris Lattnerd1980a52009-03-12 06:52:53 +000013003 // If this is a select between two integer constants, try to do some
13004 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000013005 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
13006 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000013007 // Don't do this for crazy integer types.
13008 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
13009 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000013010 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000013011 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000013012
Chris Lattnercee56e72009-03-13 05:53:31 +000013013 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000013014 // Efficiently invertible.
13015 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
13016 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
13017 isa<ConstantSDNode>(Cond.getOperand(1))))) {
13018 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000013019 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000013020 }
Eric Christopherfd179292009-08-27 18:07:15 +000013021
Chris Lattnerd1980a52009-03-12 06:52:53 +000013022 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000013023 if (FalseC->getAPIntValue() == 0 &&
13024 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000013025 if (NeedsCondInvert) // Invert the condition if needed.
13026 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13027 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000013028
Chris Lattnerd1980a52009-03-12 06:52:53 +000013029 // Zero extend the condition if needed.
13030 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000013031
Chris Lattnercee56e72009-03-13 05:53:31 +000013032 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000013033 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000013034 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000013035 }
Eric Christopherfd179292009-08-27 18:07:15 +000013036
Chris Lattner97a29a52009-03-13 05:22:11 +000013037 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000013038 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000013039 if (NeedsCondInvert) // Invert the condition if needed.
13040 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13041 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000013042
Chris Lattner97a29a52009-03-13 05:22:11 +000013043 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000013044 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
13045 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000013046 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000013047 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000013048 }
Eric Christopherfd179292009-08-27 18:07:15 +000013049
Chris Lattnercee56e72009-03-13 05:53:31 +000013050 // Optimize cases that will turn into an LEA instruction. This requires
13051 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000013052 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000013053 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000013054 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000013055
Chris Lattnercee56e72009-03-13 05:53:31 +000013056 bool isFastMultiplier = false;
13057 if (Diff < 10) {
13058 switch ((unsigned char)Diff) {
13059 default: break;
13060 case 1: // result = add base, cond
13061 case 2: // result = lea base( , cond*2)
13062 case 3: // result = lea base(cond, cond*2)
13063 case 4: // result = lea base( , cond*4)
13064 case 5: // result = lea base(cond, cond*4)
13065 case 8: // result = lea base( , cond*8)
13066 case 9: // result = lea base(cond, cond*8)
13067 isFastMultiplier = true;
13068 break;
13069 }
13070 }
Eric Christopherfd179292009-08-27 18:07:15 +000013071
Chris Lattnercee56e72009-03-13 05:53:31 +000013072 if (isFastMultiplier) {
13073 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
13074 if (NeedsCondInvert) // Invert the condition if needed.
13075 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13076 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000013077
Chris Lattnercee56e72009-03-13 05:53:31 +000013078 // Zero extend the condition if needed.
13079 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
13080 Cond);
13081 // Scale the condition by the difference.
13082 if (Diff != 1)
13083 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
13084 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000013085
Chris Lattnercee56e72009-03-13 05:53:31 +000013086 // Add the base if non-zero.
13087 if (FalseC->getAPIntValue() != 0)
13088 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13089 SDValue(FalseC, 0));
13090 return Cond;
13091 }
Eric Christopherfd179292009-08-27 18:07:15 +000013092 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000013093 }
13094 }
Eric Christopherfd179292009-08-27 18:07:15 +000013095
Dan Gohman475871a2008-07-27 21:46:04 +000013096 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000013097}
13098
Chris Lattnerd1980a52009-03-12 06:52:53 +000013099/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
13100static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
13101 TargetLowering::DAGCombinerInfo &DCI) {
13102 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000013103
Chris Lattnerd1980a52009-03-12 06:52:53 +000013104 // If the flag operand isn't dead, don't touch this CMOV.
13105 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
13106 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000013107
Evan Chengb5a55d92011-05-24 01:48:22 +000013108 SDValue FalseOp = N->getOperand(0);
13109 SDValue TrueOp = N->getOperand(1);
13110 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
13111 SDValue Cond = N->getOperand(3);
13112 if (CC == X86::COND_E || CC == X86::COND_NE) {
13113 switch (Cond.getOpcode()) {
13114 default: break;
13115 case X86ISD::BSR:
13116 case X86ISD::BSF:
13117 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
13118 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
13119 return (CC == X86::COND_E) ? FalseOp : TrueOp;
13120 }
13121 }
13122
Chris Lattnerd1980a52009-03-12 06:52:53 +000013123 // If this is a select between two integer constants, try to do some
13124 // optimizations. Note that the operands are ordered the opposite of SELECT
13125 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000013126 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
13127 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000013128 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
13129 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000013130 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
13131 CC = X86::GetOppositeBranchCondition(CC);
13132 std::swap(TrueC, FalseC);
13133 }
Eric Christopherfd179292009-08-27 18:07:15 +000013134
Chris Lattnerd1980a52009-03-12 06:52:53 +000013135 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000013136 // This is efficient for any integer data type (including i8/i16) and
13137 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000013138 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013139 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13140 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000013141
Chris Lattnerd1980a52009-03-12 06:52:53 +000013142 // Zero extend the condition if needed.
13143 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000013144
Chris Lattnerd1980a52009-03-12 06:52:53 +000013145 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
13146 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000013147 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000013148 if (N->getNumValues() == 2) // Dead flag value?
13149 return DCI.CombineTo(N, Cond, SDValue());
13150 return Cond;
13151 }
Eric Christopherfd179292009-08-27 18:07:15 +000013152
Chris Lattnercee56e72009-03-13 05:53:31 +000013153 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
13154 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000013155 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013156 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13157 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000013158
Chris Lattner97a29a52009-03-13 05:22:11 +000013159 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000013160 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
13161 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000013162 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13163 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000013164
Chris Lattner97a29a52009-03-13 05:22:11 +000013165 if (N->getNumValues() == 2) // Dead flag value?
13166 return DCI.CombineTo(N, Cond, SDValue());
13167 return Cond;
13168 }
Eric Christopherfd179292009-08-27 18:07:15 +000013169
Chris Lattnercee56e72009-03-13 05:53:31 +000013170 // Optimize cases that will turn into an LEA instruction. This requires
13171 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000013172 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000013173 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000013174 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000013175
Chris Lattnercee56e72009-03-13 05:53:31 +000013176 bool isFastMultiplier = false;
13177 if (Diff < 10) {
13178 switch ((unsigned char)Diff) {
13179 default: break;
13180 case 1: // result = add base, cond
13181 case 2: // result = lea base( , cond*2)
13182 case 3: // result = lea base(cond, cond*2)
13183 case 4: // result = lea base( , cond*4)
13184 case 5: // result = lea base(cond, cond*4)
13185 case 8: // result = lea base( , cond*8)
13186 case 9: // result = lea base(cond, cond*8)
13187 isFastMultiplier = true;
13188 break;
13189 }
13190 }
Eric Christopherfd179292009-08-27 18:07:15 +000013191
Chris Lattnercee56e72009-03-13 05:53:31 +000013192 if (isFastMultiplier) {
13193 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000013194 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13195 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000013196 // Zero extend the condition if needed.
13197 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
13198 Cond);
13199 // Scale the condition by the difference.
13200 if (Diff != 1)
13201 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
13202 DAG.getConstant(Diff, Cond.getValueType()));
13203
13204 // Add the base if non-zero.
13205 if (FalseC->getAPIntValue() != 0)
13206 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13207 SDValue(FalseC, 0));
13208 if (N->getNumValues() == 2) // Dead flag value?
13209 return DCI.CombineTo(N, Cond, SDValue());
13210 return Cond;
13211 }
Eric Christopherfd179292009-08-27 18:07:15 +000013212 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000013213 }
13214 }
13215 return SDValue();
13216}
13217
13218
Evan Cheng0b0cd912009-03-28 05:57:29 +000013219/// PerformMulCombine - Optimize a single multiply with constant into two
13220/// in order to implement it with two cheaper instructions, e.g.
13221/// LEA + SHL, LEA + LEA.
13222static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
13223 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000013224 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
13225 return SDValue();
13226
Owen Andersone50ed302009-08-10 22:56:29 +000013227 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000013228 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000013229 return SDValue();
13230
13231 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
13232 if (!C)
13233 return SDValue();
13234 uint64_t MulAmt = C->getZExtValue();
13235 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
13236 return SDValue();
13237
13238 uint64_t MulAmt1 = 0;
13239 uint64_t MulAmt2 = 0;
13240 if ((MulAmt % 9) == 0) {
13241 MulAmt1 = 9;
13242 MulAmt2 = MulAmt / 9;
13243 } else if ((MulAmt % 5) == 0) {
13244 MulAmt1 = 5;
13245 MulAmt2 = MulAmt / 5;
13246 } else if ((MulAmt % 3) == 0) {
13247 MulAmt1 = 3;
13248 MulAmt2 = MulAmt / 3;
13249 }
13250 if (MulAmt2 &&
13251 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
13252 DebugLoc DL = N->getDebugLoc();
13253
13254 if (isPowerOf2_64(MulAmt2) &&
13255 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
13256 // If second multiplifer is pow2, issue it first. We want the multiply by
13257 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
13258 // is an add.
13259 std::swap(MulAmt1, MulAmt2);
13260
13261 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000013262 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000013263 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000013264 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000013265 else
Evan Cheng73f24c92009-03-30 21:36:47 +000013266 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000013267 DAG.getConstant(MulAmt1, VT));
13268
Eric Christopherfd179292009-08-27 18:07:15 +000013269 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000013270 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000013271 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000013272 else
Evan Cheng73f24c92009-03-30 21:36:47 +000013273 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000013274 DAG.getConstant(MulAmt2, VT));
13275
13276 // Do not add new nodes to DAG combiner worklist.
13277 DCI.CombineTo(N, NewMul, false);
13278 }
13279 return SDValue();
13280}
13281
Evan Chengad9c0a32009-12-15 00:53:42 +000013282static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
13283 SDValue N0 = N->getOperand(0);
13284 SDValue N1 = N->getOperand(1);
13285 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
13286 EVT VT = N0.getValueType();
13287
13288 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
13289 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000013290 if (VT.isInteger() && !VT.isVector() &&
13291 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000013292 N0.getOperand(1).getOpcode() == ISD::Constant) {
13293 SDValue N00 = N0.getOperand(0);
13294 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
13295 ((N00.getOpcode() == ISD::ANY_EXTEND ||
13296 N00.getOpcode() == ISD::ZERO_EXTEND) &&
13297 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
13298 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
13299 APInt ShAmt = N1C->getAPIntValue();
13300 Mask = Mask.shl(ShAmt);
13301 if (Mask != 0)
13302 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
13303 N00, DAG.getConstant(Mask, VT));
13304 }
13305 }
13306
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000013307
13308 // Hardware support for vector shifts is sparse which makes us scalarize the
13309 // vector operations in many cases. Also, on sandybridge ADD is faster than
13310 // shl.
13311 // (shl V, 1) -> add V,V
13312 if (isSplatVector(N1.getNode())) {
13313 assert(N0.getValueType().isVector() && "Invalid vector shift type");
13314 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
13315 // We shift all of the values by one. In many cases we do not have
13316 // hardware support for this operation. This is better expressed as an ADD
13317 // of two values.
13318 if (N1C && (1 == N1C->getZExtValue())) {
13319 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N0);
13320 }
13321 }
13322
Evan Chengad9c0a32009-12-15 00:53:42 +000013323 return SDValue();
13324}
Evan Cheng0b0cd912009-03-28 05:57:29 +000013325
Nate Begeman740ab032009-01-26 00:52:55 +000013326/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
13327/// when possible.
13328static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
13329 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000013330 EVT VT = N->getValueType(0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000013331 if (N->getOpcode() == ISD::SHL) {
13332 SDValue V = PerformSHLCombine(N, DAG);
13333 if (V.getNode()) return V;
13334 }
Evan Chengad9c0a32009-12-15 00:53:42 +000013335
Nate Begeman740ab032009-01-26 00:52:55 +000013336 // On X86 with SSE2 support, we can transform this to a vector shift if
13337 // all elements are shifted by the same amount. We can't do this in legalize
13338 // because the a constant vector is typically transformed to a constant pool
13339 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000013340 if (!Subtarget->hasXMMInt())
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013341 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000013342
Craig Topper7be5dfd2011-11-12 09:58:49 +000013343 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
13344 (!Subtarget->hasAVX2() ||
13345 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013346 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000013347
Mon P Wang3becd092009-01-28 08:12:05 +000013348 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000013349 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000013350 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000013351 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000013352 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
13353 unsigned NumElts = VT.getVectorNumElements();
13354 unsigned i = 0;
13355 for (; i != NumElts; ++i) {
13356 SDValue Arg = ShAmtOp.getOperand(i);
13357 if (Arg.getOpcode() == ISD::UNDEF) continue;
13358 BaseShAmt = Arg;
13359 break;
13360 }
13361 for (; i != NumElts; ++i) {
13362 SDValue Arg = ShAmtOp.getOperand(i);
13363 if (Arg.getOpcode() == ISD::UNDEF) continue;
13364 if (Arg != BaseShAmt) {
13365 return SDValue();
13366 }
13367 }
13368 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000013369 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000013370 SDValue InVec = ShAmtOp.getOperand(0);
13371 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13372 unsigned NumElts = InVec.getValueType().getVectorNumElements();
13373 unsigned i = 0;
13374 for (; i != NumElts; ++i) {
13375 SDValue Arg = InVec.getOperand(i);
13376 if (Arg.getOpcode() == ISD::UNDEF) continue;
13377 BaseShAmt = Arg;
13378 break;
13379 }
13380 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13381 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000013382 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000013383 if (C->getZExtValue() == SplatIdx)
13384 BaseShAmt = InVec.getOperand(1);
13385 }
13386 }
13387 if (BaseShAmt.getNode() == 0)
13388 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
13389 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000013390 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013391 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000013392
Mon P Wangefa42202009-09-03 19:56:25 +000013393 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000013394 if (EltVT.bitsGT(MVT::i32))
13395 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
13396 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000013397 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000013398
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013399 // The shift amount is identical so we can do a vector shift.
13400 SDValue ValOp = N->getOperand(0);
13401 switch (N->getOpcode()) {
13402 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000013403 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013404 break;
13405 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000013406 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013407 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013408 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013409 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013410 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013411 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013412 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013413 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013414 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013415 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013416 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013417 ValOp, BaseShAmt);
Craig Topper7be5dfd2011-11-12 09:58:49 +000013418 if (VT == MVT::v4i64)
13419 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13420 DAG.getConstant(Intrinsic::x86_avx2_pslli_q, MVT::i32),
13421 ValOp, BaseShAmt);
13422 if (VT == MVT::v8i32)
13423 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13424 DAG.getConstant(Intrinsic::x86_avx2_pslli_d, MVT::i32),
13425 ValOp, BaseShAmt);
13426 if (VT == MVT::v16i16)
13427 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13428 DAG.getConstant(Intrinsic::x86_avx2_pslli_w, MVT::i32),
13429 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013430 break;
13431 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000013432 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013433 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013434 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013435 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013436 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013437 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013438 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013439 ValOp, BaseShAmt);
Craig Topper7be5dfd2011-11-12 09:58:49 +000013440 if (VT == MVT::v8i32)
13441 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13442 DAG.getConstant(Intrinsic::x86_avx2_psrai_d, MVT::i32),
13443 ValOp, BaseShAmt);
13444 if (VT == MVT::v16i16)
13445 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13446 DAG.getConstant(Intrinsic::x86_avx2_psrai_w, MVT::i32),
13447 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013448 break;
13449 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000013450 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013451 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013452 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013453 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013454 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013455 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013456 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013457 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013458 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013459 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013460 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013461 ValOp, BaseShAmt);
Craig Topper7be5dfd2011-11-12 09:58:49 +000013462 if (VT == MVT::v4i64)
13463 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13464 DAG.getConstant(Intrinsic::x86_avx2_psrli_q, MVT::i32),
13465 ValOp, BaseShAmt);
13466 if (VT == MVT::v8i32)
13467 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13468 DAG.getConstant(Intrinsic::x86_avx2_psrli_d, MVT::i32),
13469 ValOp, BaseShAmt);
13470 if (VT == MVT::v16i16)
13471 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13472 DAG.getConstant(Intrinsic::x86_avx2_psrli_w, MVT::i32),
13473 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013474 break;
Nate Begeman740ab032009-01-26 00:52:55 +000013475 }
13476 return SDValue();
13477}
13478
Nate Begemanb65c1752010-12-17 22:55:37 +000013479
Stuart Hastings865f0932011-06-03 23:53:54 +000013480// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
13481// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
13482// and friends. Likewise for OR -> CMPNEQSS.
13483static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
13484 TargetLowering::DAGCombinerInfo &DCI,
13485 const X86Subtarget *Subtarget) {
13486 unsigned opcode;
13487
13488 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
13489 // we're requiring SSE2 for both.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000013490 if (Subtarget->hasXMMInt() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000013491 SDValue N0 = N->getOperand(0);
13492 SDValue N1 = N->getOperand(1);
13493 SDValue CMP0 = N0->getOperand(1);
13494 SDValue CMP1 = N1->getOperand(1);
13495 DebugLoc DL = N->getDebugLoc();
13496
13497 // The SETCCs should both refer to the same CMP.
13498 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
13499 return SDValue();
13500
13501 SDValue CMP00 = CMP0->getOperand(0);
13502 SDValue CMP01 = CMP0->getOperand(1);
13503 EVT VT = CMP00.getValueType();
13504
13505 if (VT == MVT::f32 || VT == MVT::f64) {
13506 bool ExpectingFlags = false;
13507 // Check for any users that want flags:
13508 for (SDNode::use_iterator UI = N->use_begin(),
13509 UE = N->use_end();
13510 !ExpectingFlags && UI != UE; ++UI)
13511 switch (UI->getOpcode()) {
13512 default:
13513 case ISD::BR_CC:
13514 case ISD::BRCOND:
13515 case ISD::SELECT:
13516 ExpectingFlags = true;
13517 break;
13518 case ISD::CopyToReg:
13519 case ISD::SIGN_EXTEND:
13520 case ISD::ZERO_EXTEND:
13521 case ISD::ANY_EXTEND:
13522 break;
13523 }
13524
13525 if (!ExpectingFlags) {
13526 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
13527 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
13528
13529 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
13530 X86::CondCode tmp = cc0;
13531 cc0 = cc1;
13532 cc1 = tmp;
13533 }
13534
13535 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
13536 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
13537 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
13538 X86ISD::NodeType NTOperator = is64BitFP ?
13539 X86ISD::FSETCCsd : X86ISD::FSETCCss;
13540 // FIXME: need symbolic constants for these magic numbers.
13541 // See X86ATTInstPrinter.cpp:printSSECC().
13542 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
13543 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
13544 DAG.getConstant(x86cc, MVT::i8));
13545 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
13546 OnesOrZeroesF);
13547 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
13548 DAG.getConstant(1, MVT::i32));
13549 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
13550 return OneBitOfTruth;
13551 }
13552 }
13553 }
13554 }
13555 return SDValue();
13556}
13557
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013558/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
13559/// so it can be folded inside ANDNP.
13560static bool CanFoldXORWithAllOnes(const SDNode *N) {
13561 EVT VT = N->getValueType(0);
13562
13563 // Match direct AllOnes for 128 and 256-bit vectors
13564 if (ISD::isBuildVectorAllOnes(N))
13565 return true;
13566
13567 // Look through a bit convert.
13568 if (N->getOpcode() == ISD::BITCAST)
13569 N = N->getOperand(0).getNode();
13570
13571 // Sometimes the operand may come from a insert_subvector building a 256-bit
13572 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013573 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000013574 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
13575 SDValue V1 = N->getOperand(0);
13576 SDValue V2 = N->getOperand(1);
13577
13578 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
13579 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
13580 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
13581 ISD::isBuildVectorAllOnes(V2.getNode()))
13582 return true;
13583 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013584
13585 return false;
13586}
13587
Nate Begemanb65c1752010-12-17 22:55:37 +000013588static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
13589 TargetLowering::DAGCombinerInfo &DCI,
13590 const X86Subtarget *Subtarget) {
13591 if (DCI.isBeforeLegalizeOps())
13592 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013593
Stuart Hastings865f0932011-06-03 23:53:54 +000013594 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13595 if (R.getNode())
13596 return R;
13597
Craig Topper54a11172011-10-14 07:06:56 +000013598 EVT VT = N->getValueType(0);
13599
Craig Topperb4c94572011-10-21 06:55:01 +000013600 // Create ANDN, BLSI, and BLSR instructions
13601 // BLSI is X & (-X)
13602 // BLSR is X & (X-1)
Craig Topper54a11172011-10-14 07:06:56 +000013603 if (Subtarget->hasBMI() && (VT == MVT::i32 || VT == MVT::i64)) {
13604 SDValue N0 = N->getOperand(0);
13605 SDValue N1 = N->getOperand(1);
13606 DebugLoc DL = N->getDebugLoc();
13607
13608 // Check LHS for not
13609 if (N0.getOpcode() == ISD::XOR && isAllOnes(N0.getOperand(1)))
13610 return DAG.getNode(X86ISD::ANDN, DL, VT, N0.getOperand(0), N1);
13611 // Check RHS for not
13612 if (N1.getOpcode() == ISD::XOR && isAllOnes(N1.getOperand(1)))
13613 return DAG.getNode(X86ISD::ANDN, DL, VT, N1.getOperand(0), N0);
13614
Craig Topperb4c94572011-10-21 06:55:01 +000013615 // Check LHS for neg
13616 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
13617 isZero(N0.getOperand(0)))
13618 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
13619
13620 // Check RHS for neg
13621 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
13622 isZero(N1.getOperand(0)))
13623 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
13624
13625 // Check LHS for X-1
13626 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
13627 isAllOnes(N0.getOperand(1)))
13628 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
13629
13630 // Check RHS for X-1
13631 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
13632 isAllOnes(N1.getOperand(1)))
13633 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
13634
Craig Topper54a11172011-10-14 07:06:56 +000013635 return SDValue();
13636 }
13637
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013638 // Want to form ANDNP nodes:
13639 // 1) In the hopes of then easily combining them with OR and AND nodes
13640 // to form PBLEND/PSIGN.
13641 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013642 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000013643 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013644
Nate Begemanb65c1752010-12-17 22:55:37 +000013645 SDValue N0 = N->getOperand(0);
13646 SDValue N1 = N->getOperand(1);
13647 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013648
Nate Begemanb65c1752010-12-17 22:55:37 +000013649 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013650 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013651 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
13652 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013653 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000013654
13655 // Check RHS for vnot
13656 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013657 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
13658 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013659 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013660
Nate Begemanb65c1752010-12-17 22:55:37 +000013661 return SDValue();
13662}
13663
Evan Cheng760d1942010-01-04 21:22:48 +000013664static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000013665 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000013666 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000013667 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000013668 return SDValue();
13669
Stuart Hastings865f0932011-06-03 23:53:54 +000013670 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13671 if (R.getNode())
13672 return R;
13673
Evan Cheng760d1942010-01-04 21:22:48 +000013674 EVT VT = N->getValueType(0);
Evan Cheng760d1942010-01-04 21:22:48 +000013675
Evan Cheng760d1942010-01-04 21:22:48 +000013676 SDValue N0 = N->getOperand(0);
13677 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013678
Nate Begemanb65c1752010-12-17 22:55:37 +000013679 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000013680 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperc0d82852011-11-22 00:44:41 +000013681 if (!Subtarget->hasSSSE3orAVX() ||
Craig Topper1666cb62011-11-19 07:07:26 +000013682 (VT == MVT::v4i64 && !Subtarget->hasAVX2()))
13683 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013684
Craig Topper1666cb62011-11-19 07:07:26 +000013685 // Canonicalize pandn to RHS
13686 if (N0.getOpcode() == X86ISD::ANDNP)
13687 std::swap(N0, N1);
13688 // or (and (m, x), (pandn m, y))
13689 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
13690 SDValue Mask = N1.getOperand(0);
13691 SDValue X = N1.getOperand(1);
13692 SDValue Y;
13693 if (N0.getOperand(0) == Mask)
13694 Y = N0.getOperand(1);
13695 if (N0.getOperand(1) == Mask)
13696 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013697
Craig Topper1666cb62011-11-19 07:07:26 +000013698 // Check to see if the mask appeared in both the AND and ANDNP and
13699 if (!Y.getNode())
13700 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013701
Craig Topper1666cb62011-11-19 07:07:26 +000013702 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
13703 if (Mask.getOpcode() != ISD::BITCAST ||
13704 X.getOpcode() != ISD::BITCAST ||
13705 Y.getOpcode() != ISD::BITCAST)
13706 return SDValue();
Nate Begemanb65c1752010-12-17 22:55:37 +000013707
Craig Topper1666cb62011-11-19 07:07:26 +000013708 // Look through mask bitcast.
13709 Mask = Mask.getOperand(0);
13710 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013711
Craig Topper1666cb62011-11-19 07:07:26 +000013712 // Validate that the Mask operand is a vector sra node. The sra node
13713 // will be an intrinsic.
13714 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
13715 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013716
Craig Topper1666cb62011-11-19 07:07:26 +000013717 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
13718 // there is no psrai.b
13719 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
13720 case Intrinsic::x86_sse2_psrai_w:
13721 case Intrinsic::x86_sse2_psrai_d:
13722 case Intrinsic::x86_avx2_psrai_w:
13723 case Intrinsic::x86_avx2_psrai_d:
13724 break;
13725 default: return SDValue();
Nate Begemanb65c1752010-12-17 22:55:37 +000013726 }
Craig Topper1666cb62011-11-19 07:07:26 +000013727
13728 // Check that the SRA is all signbits.
13729 SDValue SraC = Mask.getOperand(2);
13730 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
13731 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
13732 if ((SraAmt + 1) != EltBits)
13733 return SDValue();
13734
13735 DebugLoc DL = N->getDebugLoc();
13736
13737 // Now we know we at least have a plendvb with the mask val. See if
13738 // we can form a psignb/w/d.
13739 // psign = x.type == y.type == mask.type && y = sub(0, x);
13740 X = X.getOperand(0);
13741 Y = Y.getOperand(0);
13742 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
13743 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Topper31133842011-11-19 07:33:10 +000013744 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType() &&
13745 (EltBits == 8 || EltBits == 16 || EltBits == 32)) {
13746 SDValue Sign = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X,
13747 Mask.getOperand(1));
13748 return DAG.getNode(ISD::BITCAST, DL, VT, Sign);
Craig Topper1666cb62011-11-19 07:07:26 +000013749 }
13750 // PBLENDVB only available on SSE 4.1
Craig Topperc0d82852011-11-22 00:44:41 +000013751 if (!Subtarget->hasSSE41orAVX())
Craig Topper1666cb62011-11-19 07:07:26 +000013752 return SDValue();
13753
13754 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
13755
13756 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
13757 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
13758 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000013759 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000013760 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000013761 }
13762 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013763
Craig Topper1666cb62011-11-19 07:07:26 +000013764 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
13765 return SDValue();
13766
Nate Begemanb65c1752010-12-17 22:55:37 +000013767 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000013768 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
13769 std::swap(N0, N1);
13770 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
13771 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000013772 if (!N0.hasOneUse() || !N1.hasOneUse())
13773 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000013774
13775 SDValue ShAmt0 = N0.getOperand(1);
13776 if (ShAmt0.getValueType() != MVT::i8)
13777 return SDValue();
13778 SDValue ShAmt1 = N1.getOperand(1);
13779 if (ShAmt1.getValueType() != MVT::i8)
13780 return SDValue();
13781 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
13782 ShAmt0 = ShAmt0.getOperand(0);
13783 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
13784 ShAmt1 = ShAmt1.getOperand(0);
13785
13786 DebugLoc DL = N->getDebugLoc();
13787 unsigned Opc = X86ISD::SHLD;
13788 SDValue Op0 = N0.getOperand(0);
13789 SDValue Op1 = N1.getOperand(0);
13790 if (ShAmt0.getOpcode() == ISD::SUB) {
13791 Opc = X86ISD::SHRD;
13792 std::swap(Op0, Op1);
13793 std::swap(ShAmt0, ShAmt1);
13794 }
13795
Evan Cheng8b1190a2010-04-28 01:18:01 +000013796 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000013797 if (ShAmt1.getOpcode() == ISD::SUB) {
13798 SDValue Sum = ShAmt1.getOperand(0);
13799 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000013800 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
13801 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
13802 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
13803 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000013804 return DAG.getNode(Opc, DL, VT,
13805 Op0, Op1,
13806 DAG.getNode(ISD::TRUNCATE, DL,
13807 MVT::i8, ShAmt0));
13808 }
13809 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
13810 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
13811 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000013812 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000013813 return DAG.getNode(Opc, DL, VT,
13814 N0.getOperand(0), N1.getOperand(0),
13815 DAG.getNode(ISD::TRUNCATE, DL,
13816 MVT::i8, ShAmt0));
13817 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013818
Evan Cheng760d1942010-01-04 21:22:48 +000013819 return SDValue();
13820}
13821
Craig Topperb4c94572011-10-21 06:55:01 +000013822static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
13823 TargetLowering::DAGCombinerInfo &DCI,
13824 const X86Subtarget *Subtarget) {
13825 if (DCI.isBeforeLegalizeOps())
13826 return SDValue();
13827
13828 EVT VT = N->getValueType(0);
13829
13830 if (VT != MVT::i32 && VT != MVT::i64)
13831 return SDValue();
13832
13833 // Create BLSMSK instructions by finding X ^ (X-1)
13834 SDValue N0 = N->getOperand(0);
13835 SDValue N1 = N->getOperand(1);
13836 DebugLoc DL = N->getDebugLoc();
13837
13838 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
13839 isAllOnes(N0.getOperand(1)))
13840 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
13841
13842 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
13843 isAllOnes(N1.getOperand(1)))
13844 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
13845
13846 return SDValue();
13847}
13848
Nadav Rotem91e43fd2011-09-18 10:39:32 +000013849/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
13850static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
13851 const X86Subtarget *Subtarget) {
13852 LoadSDNode *Ld = cast<LoadSDNode>(N);
13853 EVT RegVT = Ld->getValueType(0);
13854 EVT MemVT = Ld->getMemoryVT();
13855 DebugLoc dl = Ld->getDebugLoc();
13856 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13857
13858 ISD::LoadExtType Ext = Ld->getExtensionType();
13859
Nadav Rotemca6f2962011-09-18 19:00:23 +000013860 // If this is a vector EXT Load then attempt to optimize it using a
Nadav Rotem91e43fd2011-09-18 10:39:32 +000013861 // shuffle. We need SSE4 for the shuffles.
13862 // TODO: It is possible to support ZExt by zeroing the undef values
13863 // during the shuffle phase or after the shuffle.
13864 if (RegVT.isVector() && Ext == ISD::EXTLOAD && Subtarget->hasSSE41()) {
13865 assert(MemVT != RegVT && "Cannot extend to the same type");
13866 assert(MemVT.isVector() && "Must load a vector from memory");
13867
13868 unsigned NumElems = RegVT.getVectorNumElements();
13869 unsigned RegSz = RegVT.getSizeInBits();
13870 unsigned MemSz = MemVT.getSizeInBits();
13871 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotemca6f2962011-09-18 19:00:23 +000013872 // All sizes must be a power of two
Nadav Rotem91e43fd2011-09-18 10:39:32 +000013873 if (!isPowerOf2_32(RegSz * MemSz * NumElems)) return SDValue();
13874
13875 // Attempt to load the original value using a single load op.
13876 // Find a scalar type which is equal to the loaded word size.
13877 MVT SclrLoadTy = MVT::i8;
13878 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
13879 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
13880 MVT Tp = (MVT::SimpleValueType)tp;
13881 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() == MemSz) {
13882 SclrLoadTy = Tp;
13883 break;
13884 }
13885 }
13886
13887 // Proceed if a load word is found.
13888 if (SclrLoadTy.getSizeInBits() != MemSz) return SDValue();
13889
13890 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
13891 RegSz/SclrLoadTy.getSizeInBits());
13892
13893 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
13894 RegSz/MemVT.getScalarType().getSizeInBits());
13895 // Can't shuffle using an illegal type.
13896 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
13897
13898 // Perform a single load.
13899 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
13900 Ld->getBasePtr(),
13901 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000013902 Ld->isNonTemporal(), Ld->isInvariant(),
13903 Ld->getAlignment());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000013904
13905 // Insert the word loaded into a vector.
13906 SDValue ScalarInVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
13907 LoadUnitVecVT, ScalarLoad);
13908
13909 // Bitcast the loaded value to a vector of the original element type, in
13910 // the size of the target vector type.
13911 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, ScalarInVector);
13912 unsigned SizeRatio = RegSz/MemSz;
13913
13914 // Redistribute the loaded elements into the different locations.
13915 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13916 for (unsigned i = 0; i < NumElems; i++) ShuffleVec[i*SizeRatio] = i;
13917
13918 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
13919 DAG.getUNDEF(SlicedVec.getValueType()),
13920 ShuffleVec.data());
13921
13922 // Bitcast to the requested type.
13923 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
13924 // Replace the original load with the new sequence
13925 // and return the new chain.
13926 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Shuff);
13927 return SDValue(ScalarLoad.getNode(), 1);
13928 }
13929
13930 return SDValue();
13931}
13932
Chris Lattner149a4e52008-02-22 02:09:43 +000013933/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013934static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000013935 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000013936 StoreSDNode *St = cast<StoreSDNode>(N);
13937 EVT VT = St->getValue().getValueType();
13938 EVT StVT = St->getMemoryVT();
13939 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000013940 SDValue StoredVal = St->getOperand(1);
13941 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13942
Nick Lewycky8a8d4792011-12-02 22:16:29 +000013943 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem6236f7f2011-08-11 17:05:47 +000013944 // This is better in Sandy Bridge cause one 256-bit mem op is done via two
13945 // 128-bit ones. If in the future the cost becomes only one memory access the
13946 // first version would be better.
Nadav Rotem5e742a32011-08-11 16:41:21 +000013947 if (VT.getSizeInBits() == 256 &&
13948 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
13949 StoredVal.getNumOperands() == 2) {
13950
13951 SDValue Value0 = StoredVal.getOperand(0);
13952 SDValue Value1 = StoredVal.getOperand(1);
13953
13954 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
13955 SDValue Ptr0 = St->getBasePtr();
13956 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
13957
13958 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
13959 St->getPointerInfo(), St->isVolatile(),
13960 St->isNonTemporal(), St->getAlignment());
13961 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
13962 St->getPointerInfo(), St->isVolatile(),
13963 St->isNonTemporal(), St->getAlignment());
13964 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
13965 }
Nadav Rotem614061b2011-08-10 19:30:14 +000013966
13967 // Optimize trunc store (of multiple scalars) to shuffle and store.
13968 // First, pack all of the elements in one place. Next, store to memory
13969 // in fewer chunks.
13970 if (St->isTruncatingStore() && VT.isVector()) {
13971 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13972 unsigned NumElems = VT.getVectorNumElements();
13973 assert(StVT != VT && "Cannot truncate to the same type");
13974 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
13975 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
13976
13977 // From, To sizes and ElemCount must be pow of two
13978 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000013979 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000013980 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000013981 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000013982
Nadav Rotem614061b2011-08-10 19:30:14 +000013983 unsigned SizeRatio = FromSz / ToSz;
13984
13985 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
13986
13987 // Create a type on which we perform the shuffle
13988 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
13989 StVT.getScalarType(), NumElems*SizeRatio);
13990
13991 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
13992
13993 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
13994 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13995 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
13996
13997 // Can't shuffle using an illegal type
13998 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
13999
14000 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
14001 DAG.getUNDEF(WideVec.getValueType()),
14002 ShuffleVec.data());
14003 // At this point all of the data is stored at the bottom of the
14004 // register. We now need to save it to mem.
14005
14006 // Find the largest store unit
14007 MVT StoreType = MVT::i8;
14008 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
14009 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
14010 MVT Tp = (MVT::SimpleValueType)tp;
14011 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
14012 StoreType = Tp;
14013 }
14014
14015 // Bitcast the original vector into a vector of store-size units
14016 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
14017 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
14018 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
14019 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
14020 SmallVector<SDValue, 8> Chains;
14021 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
14022 TLI.getPointerTy());
14023 SDValue Ptr = St->getBasePtr();
14024
14025 // Perform one or more big stores into memory.
14026 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
14027 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
14028 StoreType, ShuffWide,
14029 DAG.getIntPtrConstant(i));
14030 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
14031 St->getPointerInfo(), St->isVolatile(),
14032 St->isNonTemporal(), St->getAlignment());
14033 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
14034 Chains.push_back(Ch);
14035 }
14036
14037 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
14038 Chains.size());
14039 }
14040
14041
Chris Lattner149a4e52008-02-22 02:09:43 +000014042 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
14043 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000014044 // A preferable solution to the general problem is to figure out the right
14045 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000014046
14047 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000014048 if (VT.getSizeInBits() != 64)
14049 return SDValue();
14050
Devang Patel578efa92009-06-05 21:57:13 +000014051 const Function *F = DAG.getMachineFunction().getFunction();
14052 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000014053 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000014054 && Subtarget->hasXMMInt();
Evan Cheng536e6672009-03-12 05:59:15 +000014055 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000014056 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000014057 isa<LoadSDNode>(St->getValue()) &&
14058 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
14059 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000014060 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000014061 LoadSDNode *Ld = 0;
14062 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000014063 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000014064 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000014065 // Must be a store of a load. We currently handle two cases: the load
14066 // is a direct child, and it's under an intervening TokenFactor. It is
14067 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000014068 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000014069 Ld = cast<LoadSDNode>(St->getChain());
14070 else if (St->getValue().hasOneUse() &&
14071 ChainVal->getOpcode() == ISD::TokenFactor) {
14072 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000014073 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000014074 TokenFactorIndex = i;
14075 Ld = cast<LoadSDNode>(St->getValue());
14076 } else
14077 Ops.push_back(ChainVal->getOperand(i));
14078 }
14079 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000014080
Evan Cheng536e6672009-03-12 05:59:15 +000014081 if (!Ld || !ISD::isNormalLoad(Ld))
14082 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000014083
Evan Cheng536e6672009-03-12 05:59:15 +000014084 // If this is not the MMX case, i.e. we are just turning i64 load/store
14085 // into f64 load/store, avoid the transformation if there are multiple
14086 // uses of the loaded value.
14087 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
14088 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000014089
Evan Cheng536e6672009-03-12 05:59:15 +000014090 DebugLoc LdDL = Ld->getDebugLoc();
14091 DebugLoc StDL = N->getDebugLoc();
14092 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
14093 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
14094 // pair instead.
14095 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000014096 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000014097 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
14098 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000014099 Ld->isNonTemporal(), Ld->isInvariant(),
14100 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000014101 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000014102 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000014103 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000014104 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000014105 Ops.size());
14106 }
Evan Cheng536e6672009-03-12 05:59:15 +000014107 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000014108 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000014109 St->isVolatile(), St->isNonTemporal(),
14110 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000014111 }
Evan Cheng536e6672009-03-12 05:59:15 +000014112
14113 // Otherwise, lower to two pairs of 32-bit loads / stores.
14114 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000014115 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
14116 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000014117
Owen Anderson825b72b2009-08-11 20:47:22 +000014118 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000014119 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000014120 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000014121 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000014122 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000014123 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000014124 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000014125 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000014126 MinAlign(Ld->getAlignment(), 4));
14127
14128 SDValue NewChain = LoLd.getValue(1);
14129 if (TokenFactorIndex != -1) {
14130 Ops.push_back(LoLd);
14131 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000014132 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000014133 Ops.size());
14134 }
14135
14136 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000014137 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
14138 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000014139
14140 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000014141 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000014142 St->isVolatile(), St->isNonTemporal(),
14143 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000014144 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000014145 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000014146 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000014147 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000014148 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000014149 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000014150 }
Dan Gohman475871a2008-07-27 21:46:04 +000014151 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000014152}
14153
Duncan Sands17470be2011-09-22 20:15:48 +000014154/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
14155/// and return the operands for the horizontal operation in LHS and RHS. A
14156/// horizontal operation performs the binary operation on successive elements
14157/// of its first operand, then on successive elements of its second operand,
14158/// returning the resulting values in a vector. For example, if
14159/// A = < float a0, float a1, float a2, float a3 >
14160/// and
14161/// B = < float b0, float b1, float b2, float b3 >
14162/// then the result of doing a horizontal operation on A and B is
14163/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
14164/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
14165/// A horizontal-op B, for some already available A and B, and if so then LHS is
14166/// set to A, RHS to B, and the routine returns 'true'.
14167/// Note that the binary operation should have the property that if one of the
14168/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000014169static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000014170 // Look for the following pattern: if
14171 // A = < float a0, float a1, float a2, float a3 >
14172 // B = < float b0, float b1, float b2, float b3 >
14173 // and
14174 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
14175 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
14176 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
14177 // which is A horizontal-op B.
14178
14179 // At least one of the operands should be a vector shuffle.
14180 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
14181 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
14182 return false;
14183
14184 EVT VT = LHS.getValueType();
Craig Topperf8363302011-12-02 08:18:41 +000014185
14186 assert((VT.is128BitVector() || VT.is256BitVector()) &&
14187 "Unsupported vector type for horizontal add/sub");
14188
14189 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
14190 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000014191 unsigned NumElts = VT.getVectorNumElements();
14192 unsigned NumLanes = VT.getSizeInBits()/128;
14193 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000014194 assert((NumLaneElts % 2 == 0) &&
14195 "Vector type should have an even number of elements in each lane");
14196 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000014197
14198 // View LHS in the form
14199 // LHS = VECTOR_SHUFFLE A, B, LMask
14200 // If LHS is not a shuffle then pretend it is the shuffle
14201 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
14202 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
14203 // type VT.
14204 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000014205 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000014206 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
14207 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
14208 A = LHS.getOperand(0);
14209 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
14210 B = LHS.getOperand(1);
14211 cast<ShuffleVectorSDNode>(LHS.getNode())->getMask(LMask);
14212 } else {
14213 if (LHS.getOpcode() != ISD::UNDEF)
14214 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000014215 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000014216 LMask[i] = i;
14217 }
14218
14219 // Likewise, view RHS in the form
14220 // RHS = VECTOR_SHUFFLE C, D, RMask
14221 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000014222 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000014223 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
14224 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
14225 C = RHS.getOperand(0);
14226 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
14227 D = RHS.getOperand(1);
14228 cast<ShuffleVectorSDNode>(RHS.getNode())->getMask(RMask);
14229 } else {
14230 if (RHS.getOpcode() != ISD::UNDEF)
14231 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000014232 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000014233 RMask[i] = i;
14234 }
14235
14236 // Check that the shuffles are both shuffling the same vectors.
14237 if (!(A == C && B == D) && !(A == D && B == C))
14238 return false;
14239
14240 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
14241 if (!A.getNode() && !B.getNode())
14242 return false;
14243
14244 // If A and B occur in reverse order in RHS, then "swap" them (which means
14245 // rewriting the mask).
14246 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000014247 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000014248
14249 // At this point LHS and RHS are equivalent to
14250 // LHS = VECTOR_SHUFFLE A, B, LMask
14251 // RHS = VECTOR_SHUFFLE A, B, RMask
14252 // Check that the masks correspond to performing a horizontal operation.
Craig Topperf8363302011-12-02 08:18:41 +000014253 for (unsigned i = 0; i != NumElts; ++i) {
Craig Topperbeabc6c2011-12-05 06:56:46 +000014254 int LIdx = LMask[i], RIdx = RMask[i];
Duncan Sands17470be2011-09-22 20:15:48 +000014255
Craig Topperf8363302011-12-02 08:18:41 +000014256 // Ignore any UNDEF components.
Craig Topperbeabc6c2011-12-05 06:56:46 +000014257 if (LIdx < 0 || RIdx < 0 ||
14258 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
14259 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
Craig Topperf8363302011-12-02 08:18:41 +000014260 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000014261
Craig Topperf8363302011-12-02 08:18:41 +000014262 // Check that successive elements are being operated on. If not, this is
14263 // not a horizontal operation.
14264 unsigned Src = (i/HalfLaneElts) % 2; // each lane is split between srcs
14265 unsigned LaneStart = (i/NumLaneElts) * NumLaneElts;
Craig Topperbeabc6c2011-12-05 06:56:46 +000014266 int Index = 2*(i%HalfLaneElts) + NumElts*Src + LaneStart;
Craig Topperf8363302011-12-02 08:18:41 +000014267 if (!(LIdx == Index && RIdx == Index + 1) &&
Craig Topperbeabc6c2011-12-05 06:56:46 +000014268 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
Craig Topperf8363302011-12-02 08:18:41 +000014269 return false;
Duncan Sands17470be2011-09-22 20:15:48 +000014270 }
14271
14272 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
14273 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
14274 return true;
14275}
14276
14277/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
14278static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
14279 const X86Subtarget *Subtarget) {
14280 EVT VT = N->getValueType(0);
14281 SDValue LHS = N->getOperand(0);
14282 SDValue RHS = N->getOperand(1);
14283
14284 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topper138a5c62011-12-02 07:16:01 +000014285 if (((Subtarget->hasSSE3orAVX() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
14286 (Subtarget->hasAVX() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000014287 isHorizontalBinOp(LHS, RHS, true))
14288 return DAG.getNode(X86ISD::FHADD, N->getDebugLoc(), VT, LHS, RHS);
14289 return SDValue();
14290}
14291
14292/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
14293static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
14294 const X86Subtarget *Subtarget) {
14295 EVT VT = N->getValueType(0);
14296 SDValue LHS = N->getOperand(0);
14297 SDValue RHS = N->getOperand(1);
14298
14299 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topper138a5c62011-12-02 07:16:01 +000014300 if (((Subtarget->hasSSE3orAVX() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
14301 (Subtarget->hasAVX() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000014302 isHorizontalBinOp(LHS, RHS, false))
14303 return DAG.getNode(X86ISD::FHSUB, N->getDebugLoc(), VT, LHS, RHS);
14304 return SDValue();
14305}
14306
Chris Lattner6cf73262008-01-25 06:14:17 +000014307/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
14308/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000014309static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000014310 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
14311 // F[X]OR(0.0, x) -> x
14312 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000014313 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
14314 if (C->getValueAPF().isPosZero())
14315 return N->getOperand(1);
14316 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
14317 if (C->getValueAPF().isPosZero())
14318 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000014319 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000014320}
14321
14322/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000014323static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000014324 // FAND(0.0, x) -> 0.0
14325 // FAND(x, 0.0) -> 0.0
14326 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
14327 if (C->getValueAPF().isPosZero())
14328 return N->getOperand(0);
14329 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
14330 if (C->getValueAPF().isPosZero())
14331 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000014332 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000014333}
14334
Dan Gohmane5af2d32009-01-29 01:59:02 +000014335static SDValue PerformBTCombine(SDNode *N,
14336 SelectionDAG &DAG,
14337 TargetLowering::DAGCombinerInfo &DCI) {
14338 // BT ignores high bits in the bit index operand.
14339 SDValue Op1 = N->getOperand(1);
14340 if (Op1.hasOneUse()) {
14341 unsigned BitWidth = Op1.getValueSizeInBits();
14342 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
14343 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000014344 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
14345 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000014346 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000014347 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
14348 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
14349 DCI.CommitTargetLoweringOpt(TLO);
14350 }
14351 return SDValue();
14352}
Chris Lattner83e6c992006-10-04 06:57:07 +000014353
Eli Friedman7a5e5552009-06-07 06:52:44 +000014354static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
14355 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000014356 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000014357 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000014358 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000014359 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000014360 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000014361 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000014362 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000014363 }
14364 return SDValue();
14365}
14366
Evan Cheng2e489c42009-12-16 00:53:11 +000014367static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
14368 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
14369 // (and (i32 x86isd::setcc_carry), 1)
14370 // This eliminates the zext. This transformation is necessary because
14371 // ISD::SETCC is always legalized to i8.
14372 DebugLoc dl = N->getDebugLoc();
14373 SDValue N0 = N->getOperand(0);
14374 EVT VT = N->getValueType(0);
14375 if (N0.getOpcode() == ISD::AND &&
14376 N0.hasOneUse() &&
14377 N0.getOperand(0).hasOneUse()) {
14378 SDValue N00 = N0.getOperand(0);
14379 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
14380 return SDValue();
14381 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
14382 if (!C || C->getZExtValue() != 1)
14383 return SDValue();
14384 return DAG.getNode(ISD::AND, dl, VT,
14385 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
14386 N00.getOperand(0), N00.getOperand(1)),
14387 DAG.getConstant(1, VT));
14388 }
14389
14390 return SDValue();
14391}
14392
Chris Lattnerc19d1c32010-12-19 22:08:31 +000014393// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
14394static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
14395 unsigned X86CC = N->getConstantOperandVal(0);
14396 SDValue EFLAG = N->getOperand(1);
14397 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014398
Chris Lattnerc19d1c32010-12-19 22:08:31 +000014399 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
14400 // a zext and produces an all-ones bit which is more useful than 0/1 in some
14401 // cases.
14402 if (X86CC == X86::COND_B)
14403 return DAG.getNode(ISD::AND, DL, MVT::i8,
14404 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
14405 DAG.getConstant(X86CC, MVT::i8), EFLAG),
14406 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014407
Chris Lattnerc19d1c32010-12-19 22:08:31 +000014408 return SDValue();
14409}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014410
Benjamin Kramer1396c402011-06-18 11:09:41 +000014411static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
14412 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000014413 SDValue Op0 = N->getOperand(0);
14414 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
14415 // a 32-bit target where SSE doesn't support i64->FP operations.
14416 if (Op0.getOpcode() == ISD::LOAD) {
14417 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
14418 EVT VT = Ld->getValueType(0);
14419 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
14420 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
14421 !XTLI->getSubtarget()->is64Bit() &&
14422 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000014423 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
14424 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000014425 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
14426 return FILDChain;
14427 }
14428 }
14429 return SDValue();
14430}
14431
Chris Lattner23a01992010-12-20 01:37:09 +000014432// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
14433static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
14434 X86TargetLowering::DAGCombinerInfo &DCI) {
14435 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
14436 // the result is either zero or one (depending on the input carry bit).
14437 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
14438 if (X86::isZeroNode(N->getOperand(0)) &&
14439 X86::isZeroNode(N->getOperand(1)) &&
14440 // We don't have a good way to replace an EFLAGS use, so only do this when
14441 // dead right now.
14442 SDValue(N, 1).use_empty()) {
14443 DebugLoc DL = N->getDebugLoc();
14444 EVT VT = N->getValueType(0);
14445 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
14446 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
14447 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
14448 DAG.getConstant(X86::COND_B,MVT::i8),
14449 N->getOperand(2)),
14450 DAG.getConstant(1, VT));
14451 return DCI.CombineTo(N, Res1, CarryOut);
14452 }
14453
14454 return SDValue();
14455}
14456
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000014457// fold (add Y, (sete X, 0)) -> adc 0, Y
14458// (add Y, (setne X, 0)) -> sbb -1, Y
14459// (sub (sete X, 0), Y) -> sbb 0, Y
14460// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000014461static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000014462 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014463
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000014464 // Look through ZExts.
14465 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
14466 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
14467 return SDValue();
14468
14469 SDValue SetCC = Ext.getOperand(0);
14470 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
14471 return SDValue();
14472
14473 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
14474 if (CC != X86::COND_E && CC != X86::COND_NE)
14475 return SDValue();
14476
14477 SDValue Cmp = SetCC.getOperand(1);
14478 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000014479 !X86::isZeroNode(Cmp.getOperand(1)) ||
14480 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000014481 return SDValue();
14482
14483 SDValue CmpOp0 = Cmp.getOperand(0);
14484 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
14485 DAG.getConstant(1, CmpOp0.getValueType()));
14486
14487 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
14488 if (CC == X86::COND_NE)
14489 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
14490 DL, OtherVal.getValueType(), OtherVal,
14491 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
14492 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
14493 DL, OtherVal.getValueType(), OtherVal,
14494 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
14495}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000014496
Craig Topper54f952a2011-11-19 09:02:40 +000014497/// PerformADDCombine - Do target-specific dag combines on integer adds.
14498static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
14499 const X86Subtarget *Subtarget) {
14500 EVT VT = N->getValueType(0);
14501 SDValue Op0 = N->getOperand(0);
14502 SDValue Op1 = N->getOperand(1);
14503
14504 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperb72039c2011-11-30 09:10:50 +000014505 if (((Subtarget->hasSSSE3orAVX() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
14506 (Subtarget->hasAVX2() && (VT == MVT::v16i16 || MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000014507 isHorizontalBinOp(Op0, Op1, true))
14508 return DAG.getNode(X86ISD::HADD, N->getDebugLoc(), VT, Op0, Op1);
14509
14510 return OptimizeConditionalInDecrement(N, DAG);
14511}
14512
14513static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
14514 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000014515 SDValue Op0 = N->getOperand(0);
14516 SDValue Op1 = N->getOperand(1);
14517
14518 // X86 can't encode an immediate LHS of a sub. See if we can push the
14519 // negation into a preceding instruction.
14520 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000014521 // If the RHS of the sub is a XOR with one use and a constant, invert the
14522 // immediate. Then add one to the LHS of the sub so we can turn
14523 // X-Y -> X+~Y+1, saving one register.
14524 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
14525 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000014526 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000014527 EVT VT = Op0.getValueType();
14528 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
14529 Op1.getOperand(0),
14530 DAG.getConstant(~XorC, VT));
14531 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000014532 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000014533 }
14534 }
14535
Craig Topper54f952a2011-11-19 09:02:40 +000014536 // Try to synthesize horizontal adds from adds of shuffles.
14537 EVT VT = N->getValueType(0);
Craig Topperb72039c2011-11-30 09:10:50 +000014538 if (((Subtarget->hasSSSE3orAVX() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
14539 (Subtarget->hasAVX2() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
14540 isHorizontalBinOp(Op0, Op1, true))
Craig Topper54f952a2011-11-19 09:02:40 +000014541 return DAG.getNode(X86ISD::HSUB, N->getDebugLoc(), VT, Op0, Op1);
14542
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000014543 return OptimizeConditionalInDecrement(N, DAG);
14544}
14545
Dan Gohman475871a2008-07-27 21:46:04 +000014546SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000014547 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000014548 SelectionDAG &DAG = DCI.DAG;
14549 switch (N->getOpcode()) {
14550 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000014551 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000014552 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Duncan Sands6bcd2192011-09-17 16:49:39 +000014553 case ISD::VSELECT:
Chris Lattneraf723b92008-01-25 05:46:26 +000014554 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000014555 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Craig Topper54f952a2011-11-19 09:02:40 +000014556 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
14557 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000014558 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000014559 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000014560 case ISD::SHL:
14561 case ISD::SRA:
14562 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000014563 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000014564 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000014565 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000014566 case ISD::LOAD: return PerformLOADCombine(N, DAG, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000014567 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000014568 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000014569 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
14570 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000014571 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000014572 case X86ISD::FOR: return PerformFORCombine(N, DAG);
14573 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000014574 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000014575 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000014576 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000014577 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000014578 case X86ISD::SHUFPS: // Handle all target specific shuffles
14579 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000014580 case X86ISD::PALIGN:
Craig Topper34671b82011-12-06 08:21:25 +000014581 case X86ISD::UNPCKH:
14582 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000014583 case X86ISD::MOVHLPS:
14584 case X86ISD::MOVLHPS:
14585 case X86ISD::PSHUFD:
14586 case X86ISD::PSHUFHW:
14587 case X86ISD::PSHUFLW:
14588 case X86ISD::MOVSS:
14589 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000014590 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000014591 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000014592 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000014593 }
14594
Dan Gohman475871a2008-07-27 21:46:04 +000014595 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000014596}
14597
Evan Chenge5b51ac2010-04-17 06:13:15 +000014598/// isTypeDesirableForOp - Return true if the target has native support for
14599/// the specified value type and it is 'desirable' to use the type for the
14600/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
14601/// instruction encodings are longer and some i16 instructions are slow.
14602bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
14603 if (!isTypeLegal(VT))
14604 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000014605 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000014606 return true;
14607
14608 switch (Opc) {
14609 default:
14610 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000014611 case ISD::LOAD:
14612 case ISD::SIGN_EXTEND:
14613 case ISD::ZERO_EXTEND:
14614 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000014615 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000014616 case ISD::SRL:
14617 case ISD::SUB:
14618 case ISD::ADD:
14619 case ISD::MUL:
14620 case ISD::AND:
14621 case ISD::OR:
14622 case ISD::XOR:
14623 return false;
14624 }
14625}
14626
14627/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000014628/// beneficial for dag combiner to promote the specified node. If true, it
14629/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000014630bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000014631 EVT VT = Op.getValueType();
14632 if (VT != MVT::i16)
14633 return false;
14634
Evan Cheng4c26e932010-04-19 19:29:22 +000014635 bool Promote = false;
14636 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000014637 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000014638 default: break;
14639 case ISD::LOAD: {
14640 LoadSDNode *LD = cast<LoadSDNode>(Op);
14641 // If the non-extending load has a single use and it's not live out, then it
14642 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000014643 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
14644 Op.hasOneUse()*/) {
14645 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
14646 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
14647 // The only case where we'd want to promote LOAD (rather then it being
14648 // promoted as an operand is when it's only use is liveout.
14649 if (UI->getOpcode() != ISD::CopyToReg)
14650 return false;
14651 }
14652 }
Evan Cheng4c26e932010-04-19 19:29:22 +000014653 Promote = true;
14654 break;
14655 }
14656 case ISD::SIGN_EXTEND:
14657 case ISD::ZERO_EXTEND:
14658 case ISD::ANY_EXTEND:
14659 Promote = true;
14660 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000014661 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000014662 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000014663 SDValue N0 = Op.getOperand(0);
14664 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000014665 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000014666 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000014667 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000014668 break;
14669 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000014670 case ISD::ADD:
14671 case ISD::MUL:
14672 case ISD::AND:
14673 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000014674 case ISD::XOR:
14675 Commute = true;
14676 // fallthrough
14677 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000014678 SDValue N0 = Op.getOperand(0);
14679 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000014680 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014681 return false;
14682 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000014683 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014684 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000014685 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014686 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000014687 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000014688 }
14689 }
14690
14691 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000014692 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000014693}
14694
Evan Cheng60c07e12006-07-05 22:17:51 +000014695//===----------------------------------------------------------------------===//
14696// X86 Inline Assembly Support
14697//===----------------------------------------------------------------------===//
14698
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014699namespace {
14700 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000014701 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014702 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014703
Benjamin Kramer0581ed72011-12-18 20:51:31 +000014704 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014705 StringRef piece(*args[i]);
14706 if (!s.startswith(piece)) // Check if the piece matches.
14707 return false;
14708
14709 s = s.substr(piece.size());
14710 StringRef::size_type pos = s.find_first_not_of(" \t");
14711 if (pos == 0) // We matched a prefix.
14712 return false;
14713
14714 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014715 }
14716
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014717 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014718 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000014719 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014720}
14721
Chris Lattnerb8105652009-07-20 17:51:36 +000014722bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
14723 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000014724
14725 std::string AsmStr = IA->getAsmString();
14726
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014727 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
14728 if (!Ty || Ty->getBitWidth() % 16 != 0)
14729 return false;
14730
Chris Lattnerb8105652009-07-20 17:51:36 +000014731 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000014732 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000014733 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000014734
14735 switch (AsmPieces.size()) {
14736 default: return false;
14737 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000014738 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014739 // we will turn this bswap into something that will be lowered to logical
14740 // ops instead of emitting the bswap asm. For now, we don't support 486 or
14741 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000014742 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014743 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
14744 matchAsm(AsmPieces[0], "bswapl", "$0") ||
14745 matchAsm(AsmPieces[0], "bswapq", "$0") ||
14746 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
14747 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
14748 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000014749 // No need to check constraints, nothing other than the equivalent of
14750 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000014751 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000014752 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014753
Chris Lattnerb8105652009-07-20 17:51:36 +000014754 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000014755 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014756 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014757 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
14758 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000014759 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000014760 const std::string &ConstraintsStr = IA->getConstraintString();
14761 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000014762 std::sort(AsmPieces.begin(), AsmPieces.end());
14763 if (AsmPieces.size() == 4 &&
14764 AsmPieces[0] == "~{cc}" &&
14765 AsmPieces[1] == "~{dirflag}" &&
14766 AsmPieces[2] == "~{flags}" &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014767 AsmPieces[3] == "~{fpsr}")
14768 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000014769 }
14770 break;
14771 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000014772 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014773 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014774 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
14775 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
14776 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014777 AsmPieces.clear();
14778 const std::string &ConstraintsStr = IA->getConstraintString();
14779 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
14780 std::sort(AsmPieces.begin(), AsmPieces.end());
14781 if (AsmPieces.size() == 4 &&
14782 AsmPieces[0] == "~{cc}" &&
14783 AsmPieces[1] == "~{dirflag}" &&
14784 AsmPieces[2] == "~{flags}" &&
14785 AsmPieces[3] == "~{fpsr}")
14786 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000014787 }
Evan Cheng55d42002011-01-08 01:24:27 +000014788
14789 if (CI->getType()->isIntegerTy(64)) {
14790 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
14791 if (Constraints.size() >= 2 &&
14792 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
14793 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
14794 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000014795 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
14796 matchAsm(AsmPieces[1], "bswap", "%edx") &&
14797 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000014798 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000014799 }
14800 }
14801 break;
14802 }
14803 return false;
14804}
14805
14806
14807
Chris Lattnerf4dff842006-07-11 02:54:03 +000014808/// getConstraintType - Given a constraint letter, return the type of
14809/// constraint it is for this target.
14810X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000014811X86TargetLowering::getConstraintType(const std::string &Constraint) const {
14812 if (Constraint.size() == 1) {
14813 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000014814 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000014815 case 'q':
14816 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000014817 case 'f':
14818 case 't':
14819 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000014820 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000014821 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000014822 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000014823 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000014824 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000014825 case 'a':
14826 case 'b':
14827 case 'c':
14828 case 'd':
14829 case 'S':
14830 case 'D':
14831 case 'A':
14832 return C_Register;
14833 case 'I':
14834 case 'J':
14835 case 'K':
14836 case 'L':
14837 case 'M':
14838 case 'N':
14839 case 'G':
14840 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000014841 case 'e':
14842 case 'Z':
14843 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000014844 default:
14845 break;
14846 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000014847 }
Chris Lattner4234f572007-03-25 02:14:49 +000014848 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000014849}
14850
John Thompson44ab89e2010-10-29 17:29:13 +000014851/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000014852/// This object must already have been set up with the operand type
14853/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000014854TargetLowering::ConstraintWeight
14855 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000014856 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000014857 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014858 Value *CallOperandVal = info.CallOperandVal;
14859 // If we don't have a value, we can't do a match,
14860 // but allow it at the lowest weight.
14861 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000014862 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014863 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000014864 // Look at the constraint type.
14865 switch (*constraint) {
14866 default:
John Thompson44ab89e2010-10-29 17:29:13 +000014867 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
14868 case 'R':
14869 case 'q':
14870 case 'Q':
14871 case 'a':
14872 case 'b':
14873 case 'c':
14874 case 'd':
14875 case 'S':
14876 case 'D':
14877 case 'A':
14878 if (CallOperandVal->getType()->isIntegerTy())
14879 weight = CW_SpecificReg;
14880 break;
14881 case 'f':
14882 case 't':
14883 case 'u':
14884 if (type->isFloatingPointTy())
14885 weight = CW_SpecificReg;
14886 break;
14887 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000014888 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000014889 weight = CW_SpecificReg;
14890 break;
14891 case 'x':
14892 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014893 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000014894 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014895 break;
14896 case 'I':
14897 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
14898 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000014899 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014900 }
14901 break;
John Thompson44ab89e2010-10-29 17:29:13 +000014902 case 'J':
14903 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14904 if (C->getZExtValue() <= 63)
14905 weight = CW_Constant;
14906 }
14907 break;
14908 case 'K':
14909 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14910 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
14911 weight = CW_Constant;
14912 }
14913 break;
14914 case 'L':
14915 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14916 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
14917 weight = CW_Constant;
14918 }
14919 break;
14920 case 'M':
14921 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14922 if (C->getZExtValue() <= 3)
14923 weight = CW_Constant;
14924 }
14925 break;
14926 case 'N':
14927 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14928 if (C->getZExtValue() <= 0xff)
14929 weight = CW_Constant;
14930 }
14931 break;
14932 case 'G':
14933 case 'C':
14934 if (dyn_cast<ConstantFP>(CallOperandVal)) {
14935 weight = CW_Constant;
14936 }
14937 break;
14938 case 'e':
14939 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14940 if ((C->getSExtValue() >= -0x80000000LL) &&
14941 (C->getSExtValue() <= 0x7fffffffLL))
14942 weight = CW_Constant;
14943 }
14944 break;
14945 case 'Z':
14946 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14947 if (C->getZExtValue() <= 0xffffffff)
14948 weight = CW_Constant;
14949 }
14950 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014951 }
14952 return weight;
14953}
14954
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014955/// LowerXConstraint - try to replace an X constraint, which matches anything,
14956/// with another that has more specific requirements based on the type of the
14957/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000014958const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000014959LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000014960 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
14961 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000014962 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014963 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000014964 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014965 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000014966 return "x";
14967 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014968
Chris Lattner5e764232008-04-26 23:02:14 +000014969 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014970}
14971
Chris Lattner48884cd2007-08-25 00:47:38 +000014972/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
14973/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000014974void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000014975 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000014976 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000014977 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000014978 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000014979
Eric Christopher100c8332011-06-02 23:16:42 +000014980 // Only support length 1 constraints for now.
14981 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000014982
Eric Christopher100c8332011-06-02 23:16:42 +000014983 char ConstraintLetter = Constraint[0];
14984 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014985 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000014986 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000014987 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000014988 if (C->getZExtValue() <= 31) {
14989 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000014990 break;
14991 }
Devang Patel84f7fd22007-03-17 00:13:28 +000014992 }
Chris Lattner48884cd2007-08-25 00:47:38 +000014993 return;
Evan Cheng364091e2008-09-22 23:57:37 +000014994 case 'J':
14995 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000014996 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000014997 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14998 break;
14999 }
15000 }
15001 return;
15002 case 'K':
15003 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000015004 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000015005 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
15006 break;
15007 }
15008 }
15009 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000015010 case 'N':
15011 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000015012 if (C->getZExtValue() <= 255) {
15013 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000015014 break;
15015 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000015016 }
Chris Lattner48884cd2007-08-25 00:47:38 +000015017 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000015018 case 'e': {
15019 // 32-bit signed value
15020 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000015021 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
15022 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000015023 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000015024 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000015025 break;
15026 }
15027 // FIXME gcc accepts some relocatable values here too, but only in certain
15028 // memory models; it's complicated.
15029 }
15030 return;
15031 }
15032 case 'Z': {
15033 // 32-bit unsigned value
15034 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000015035 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
15036 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000015037 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
15038 break;
15039 }
15040 }
15041 // FIXME gcc accepts some relocatable values here too, but only in certain
15042 // memory models; it's complicated.
15043 return;
15044 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000015045 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000015046 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000015047 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000015048 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000015049 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000015050 break;
15051 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015052
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000015053 // In any sort of PIC mode addresses need to be computed at runtime by
15054 // adding in a register or some sort of table lookup. These can't
15055 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000015056 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000015057 return;
15058
Chris Lattnerdc43a882007-05-03 16:52:29 +000015059 // If we are in non-pic codegen mode, we allow the address of a global (with
15060 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000015061 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000015062 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000015063
Chris Lattner49921962009-05-08 18:23:14 +000015064 // Match either (GA), (GA+C), (GA+C1+C2), etc.
15065 while (1) {
15066 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
15067 Offset += GA->getOffset();
15068 break;
15069 } else if (Op.getOpcode() == ISD::ADD) {
15070 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
15071 Offset += C->getZExtValue();
15072 Op = Op.getOperand(0);
15073 continue;
15074 }
15075 } else if (Op.getOpcode() == ISD::SUB) {
15076 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
15077 Offset += -C->getZExtValue();
15078 Op = Op.getOperand(0);
15079 continue;
15080 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000015081 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000015082
Chris Lattner49921962009-05-08 18:23:14 +000015083 // Otherwise, this isn't something we can handle, reject it.
15084 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000015085 }
Eric Christopherfd179292009-08-27 18:07:15 +000015086
Dan Gohman46510a72010-04-15 01:51:59 +000015087 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000015088 // If we require an extra load to get this address, as in PIC mode, we
15089 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000015090 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
15091 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000015092 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000015093
Devang Patel0d881da2010-07-06 22:08:15 +000015094 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
15095 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000015096 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000015097 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000015098 }
Scott Michelfdc40a02009-02-17 22:15:04 +000015099
Gabor Greifba36cb52008-08-28 21:40:38 +000015100 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000015101 Ops.push_back(Result);
15102 return;
15103 }
Dale Johannesen1784d162010-06-25 21:55:36 +000015104 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000015105}
15106
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015107std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000015108X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000015109 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000015110 // First, see if this is a constraint that directly corresponds to an LLVM
15111 // register class.
15112 if (Constraint.size() == 1) {
15113 // GCC Constraint Letters
15114 switch (Constraint[0]) {
15115 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000015116 // TODO: Slight differences here in allocation order and leaving
15117 // RIP in the class. Do they matter any more here than they do
15118 // in the normal allocation?
15119 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
15120 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000015121 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000015122 return std::make_pair(0U, X86::GR32RegisterClass);
15123 else if (VT == MVT::i16)
15124 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000015125 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000015126 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000015127 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000015128 return std::make_pair(0U, X86::GR64RegisterClass);
15129 break;
15130 }
15131 // 32-bit fallthrough
15132 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000015133 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000015134 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
15135 else if (VT == MVT::i16)
15136 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000015137 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000015138 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
15139 else if (VT == MVT::i64)
15140 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
15141 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000015142 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000015143 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000015144 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000015145 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000015146 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000015147 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000015148 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000015149 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000015150 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000015151 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000015152 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000015153 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
15154 if (VT == MVT::i16)
15155 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
15156 if (VT == MVT::i32 || !Subtarget->is64Bit())
15157 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
15158 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000015159 case 'f': // FP Stack registers.
15160 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
15161 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000015162 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000015163 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000015164 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000015165 return std::make_pair(0U, X86::RFP64RegisterClass);
15166 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000015167 case 'y': // MMX_REGS if MMX allowed.
15168 if (!Subtarget->hasMMX()) break;
15169 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000015170 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000015171 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000015172 // FALL THROUGH.
15173 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000015174 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000015175
Owen Anderson825b72b2009-08-11 20:47:22 +000015176 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000015177 default: break;
15178 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000015179 case MVT::f32:
15180 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000015181 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000015182 case MVT::f64:
15183 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000015184 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000015185 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000015186 case MVT::v16i8:
15187 case MVT::v8i16:
15188 case MVT::v4i32:
15189 case MVT::v2i64:
15190 case MVT::v4f32:
15191 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000015192 return std::make_pair(0U, X86::VR128RegisterClass);
15193 }
Chris Lattnerad043e82007-04-09 05:11:28 +000015194 break;
15195 }
15196 }
Scott Michelfdc40a02009-02-17 22:15:04 +000015197
Chris Lattnerf76d1802006-07-31 23:26:50 +000015198 // Use the default implementation in TargetLowering to convert the register
15199 // constraint into a member of a register class.
15200 std::pair<unsigned, const TargetRegisterClass*> Res;
15201 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000015202
15203 // Not found as a standard register?
15204 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000015205 // Map st(0) -> st(7) -> ST0
15206 if (Constraint.size() == 7 && Constraint[0] == '{' &&
15207 tolower(Constraint[1]) == 's' &&
15208 tolower(Constraint[2]) == 't' &&
15209 Constraint[3] == '(' &&
15210 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
15211 Constraint[5] == ')' &&
15212 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000015213
Chris Lattner56d77c72009-09-13 22:41:48 +000015214 Res.first = X86::ST0+Constraint[4]-'0';
15215 Res.second = X86::RFP80RegisterClass;
15216 return Res;
15217 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000015218
Chris Lattner56d77c72009-09-13 22:41:48 +000015219 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000015220 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000015221 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000015222 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000015223 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000015224 }
Chris Lattner56d77c72009-09-13 22:41:48 +000015225
15226 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000015227 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000015228 Res.first = X86::EFLAGS;
15229 Res.second = X86::CCRRegisterClass;
15230 return Res;
15231 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000015232
Dale Johannesen330169f2008-11-13 21:52:36 +000015233 // 'A' means EAX + EDX.
15234 if (Constraint == "A") {
15235 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000015236 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000015237 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000015238 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000015239 return Res;
15240 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015241
Chris Lattnerf76d1802006-07-31 23:26:50 +000015242 // Otherwise, check to see if this is a register class of the wrong value
15243 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
15244 // turn into {ax},{dx}.
15245 if (Res.second->hasType(VT))
15246 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015247
Chris Lattnerf76d1802006-07-31 23:26:50 +000015248 // All of the single-register GCC register classes map their values onto
15249 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
15250 // really want an 8-bit or 32-bit register, map to the appropriate register
15251 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000015252 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000015253 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000015254 unsigned DestReg = 0;
15255 switch (Res.first) {
15256 default: break;
15257 case X86::AX: DestReg = X86::AL; break;
15258 case X86::DX: DestReg = X86::DL; break;
15259 case X86::CX: DestReg = X86::CL; break;
15260 case X86::BX: DestReg = X86::BL; break;
15261 }
15262 if (DestReg) {
15263 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000015264 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000015265 }
Owen Anderson825b72b2009-08-11 20:47:22 +000015266 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000015267 unsigned DestReg = 0;
15268 switch (Res.first) {
15269 default: break;
15270 case X86::AX: DestReg = X86::EAX; break;
15271 case X86::DX: DestReg = X86::EDX; break;
15272 case X86::CX: DestReg = X86::ECX; break;
15273 case X86::BX: DestReg = X86::EBX; break;
15274 case X86::SI: DestReg = X86::ESI; break;
15275 case X86::DI: DestReg = X86::EDI; break;
15276 case X86::BP: DestReg = X86::EBP; break;
15277 case X86::SP: DestReg = X86::ESP; break;
15278 }
15279 if (DestReg) {
15280 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000015281 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000015282 }
Owen Anderson825b72b2009-08-11 20:47:22 +000015283 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000015284 unsigned DestReg = 0;
15285 switch (Res.first) {
15286 default: break;
15287 case X86::AX: DestReg = X86::RAX; break;
15288 case X86::DX: DestReg = X86::RDX; break;
15289 case X86::CX: DestReg = X86::RCX; break;
15290 case X86::BX: DestReg = X86::RBX; break;
15291 case X86::SI: DestReg = X86::RSI; break;
15292 case X86::DI: DestReg = X86::RDI; break;
15293 case X86::BP: DestReg = X86::RBP; break;
15294 case X86::SP: DestReg = X86::RSP; break;
15295 }
15296 if (DestReg) {
15297 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000015298 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000015299 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000015300 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000015301 } else if (Res.second == X86::FR32RegisterClass ||
15302 Res.second == X86::FR64RegisterClass ||
15303 Res.second == X86::VR128RegisterClass) {
15304 // Handle references to XMM physical registers that got mapped into the
15305 // wrong class. This can happen with constraints like {xmm0} where the
15306 // target independent register mapper will just pick the first match it can
15307 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000015308 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000015309 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000015310 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000015311 Res.second = X86::FR64RegisterClass;
15312 else if (X86::VR128RegisterClass->hasType(VT))
15313 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000015314 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000015315
Chris Lattnerf76d1802006-07-31 23:26:50 +000015316 return Res;
15317}