blob: 022fa05f2a9b1155b04b63e6ee2559d7c5b4dde6 [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"
Dan Gohman69de1932008-02-06 22:27:42 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000039#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000040#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000041#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000043#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000044#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000045#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000046#include "llvm/ADT/StringExtras.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"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000054using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000055using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000056
Evan Chengb1712452010-01-27 06:25:16 +000057STATISTIC(NumTailCalls, "Number of tail calls");
58
Evan Cheng10e86422008-04-25 19:11:04 +000059// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000060static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000061 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000062
David Greenea5f26012011-02-07 19:36:54 +000063static SDValue Insert128BitVector(SDValue Result,
64 SDValue Vec,
65 SDValue Idx,
66 SelectionDAG &DAG,
67 DebugLoc dl);
David Greenef125a292011-02-08 19:04:41 +000068
David Greenea5f26012011-02-07 19:36:54 +000069static SDValue Extract128BitVector(SDValue Vec,
70 SDValue Idx,
71 SelectionDAG &DAG,
72 DebugLoc dl);
73
74/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
75/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000076/// simple subregister reference. Idx is an index in the 128 bits we
77/// want. It need not be aligned to a 128-bit bounday. That makes
78/// lowering EXTRACT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +000079static SDValue Extract128BitVector(SDValue Vec,
80 SDValue Idx,
81 SelectionDAG &DAG,
82 DebugLoc dl) {
83 EVT VT = Vec.getValueType();
84 assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
David Greenea5f26012011-02-07 19:36:54 +000085 EVT ElVT = VT.getVectorElementType();
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000086 int Factor = VT.getSizeInBits()/128;
87 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
88 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000089
90 // Extract from UNDEF is UNDEF.
91 if (Vec.getOpcode() == ISD::UNDEF)
92 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
93
94 if (isa<ConstantSDNode>(Idx)) {
95 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
96
97 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
98 // we can match to VEXTRACTF128.
99 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
100
101 // This is the index of the first element of the 128-bit chunk
102 // we want.
103 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
104 * ElemsPerChunk);
105
106 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000107 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
108 VecIdx);
109
110 return Result;
111 }
112
113 return SDValue();
114}
115
116/// Generate a DAG to put 128-bits into a vector > 128 bits. This
117/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +0000118/// simple superregister reference. Idx is an index in the 128 bits
119/// we want. It need not be aligned to a 128-bit bounday. That makes
120/// lowering INSERT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +0000121static SDValue Insert128BitVector(SDValue Result,
122 SDValue Vec,
123 SDValue Idx,
124 SelectionDAG &DAG,
125 DebugLoc dl) {
126 if (isa<ConstantSDNode>(Idx)) {
127 EVT VT = Vec.getValueType();
128 assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
129
130 EVT ElVT = VT.getVectorElementType();
David Greenea5f26012011-02-07 19:36:54 +0000131 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greenea5f26012011-02-07 19:36:54 +0000132 EVT ResultVT = Result.getValueType();
133
134 // Insert the relevant 128 bits.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000135 unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +0000136
137 // This is the index of the first element of the 128-bit chunk
138 // we want.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000139 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
David Greenea5f26012011-02-07 19:36:54 +0000140 * ElemsPerChunk);
141
142 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000143 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
144 VecIdx);
145 return Result;
146 }
147
148 return SDValue();
149}
150
Chris Lattnerf0144122009-07-28 03:13:23 +0000151static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000152 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
153 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000154
Evan Cheng2bffee22011-02-01 01:14:13 +0000155 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000156 if (is64Bit)
157 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000158 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000159 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000160
Evan Cheng203576a2011-07-20 19:50:42 +0000161 if (Subtarget->isTargetELF())
162 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000163 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000164 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000165 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000166}
167
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000168X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000169 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000170 Subtarget = &TM.getSubtarget<X86Subtarget>();
Bruno Cardoso Lopesaed890b2011-08-01 21:54:05 +0000171 X86ScalarSSEf64 = Subtarget->hasXMMInt() || Subtarget->hasAVX();
172 X86ScalarSSEf32 = Subtarget->hasXMM() || Subtarget->hasAVX();
Evan Cheng25ab6902006-09-08 06:48:29 +0000173 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000174
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000175 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000176 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000177
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000178 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000179 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000180
181 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000182 setBooleanContents(ZeroOrOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000183
Eric Christopherde5e1012011-03-11 01:05:58 +0000184 // For 64-bit since we have so many registers use the ILP scheduler, for
185 // 32-bit code use the register pressure specific scheduling.
186 if (Subtarget->is64Bit())
187 setSchedulingPreference(Sched::ILP);
188 else
189 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +0000190 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000191
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000192 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000193 // Setup Windows compiler runtime calls.
194 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000195 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000196 setLibcallName(RTLIB::SREM_I64, "_allrem");
197 setLibcallName(RTLIB::UREM_I64, "_aullrem");
198 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000199 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000200 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000201 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000202 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000203 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
204 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
205 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000206 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
207 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000208 }
209
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000210 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000211 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000212 setUseUnderscoreSetJmp(false);
213 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000214 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000215 // MS runtime is weird: it exports _setjmp, but longjmp!
216 setUseUnderscoreSetJmp(true);
217 setUseUnderscoreLongJmp(false);
218 } else {
219 setUseUnderscoreSetJmp(true);
220 setUseUnderscoreLongJmp(true);
221 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000222
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000223 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000224 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000225 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000226 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000227 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000228 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000229
Owen Anderson825b72b2009-08-11 20:47:22 +0000230 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000231
Scott Michelfdc40a02009-02-17 22:15:04 +0000232 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000233 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000234 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000236 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000237 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
238 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000239
240 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000241 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
242 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
243 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
244 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
245 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
246 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000247
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000248 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
249 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
251 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
252 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000253
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
256 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000257 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000258 // We have an algorithm for SSE2->double, and we turn this into a
259 // 64-bit FILD followed by conditional FADD for other targets.
260 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000261 // We have an algorithm for SSE2, and we turn this into a 64-bit
262 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000263 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000264 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000265
266 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
267 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
269 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000270
Devang Patel6a784892009-06-05 18:48:29 +0000271 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000272 // SSE has no i16 to fp conversion, only i32
273 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000274 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000275 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000277 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
279 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000280 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000281 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000282 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
283 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000284 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000285
Dale Johannesen73328d12007-09-19 23:55:34 +0000286 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
287 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000288 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
289 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000290
Evan Cheng02568ff2006-01-30 22:13:22 +0000291 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
292 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
294 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000295
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000296 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000297 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000298 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000300 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000301 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
302 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000303 }
304
305 // Handle FP_TO_UINT by promoting the destination to a larger signed
306 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000307 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
308 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
309 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000310
Evan Cheng25ab6902006-09-08 06:48:29 +0000311 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000312 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
313 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000314 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000315 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 // Expand FP_TO_UINT into a select.
317 // FIXME: We would like to use a Custom expander here eventually to do
318 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000319 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000320 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000321 // With SSE3 we can use fisttpll to convert to a signed i64; without
322 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000325
Chris Lattner399610a2006-12-05 18:22:22 +0000326 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000327 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000328 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
329 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000330 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000331 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000332 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000333 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000334 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000335 }
Chris Lattner21f66852005-12-23 05:15:23 +0000336
Dan Gohmanb00ee212008-02-18 19:34:53 +0000337 // Scalar integer divide and remainder are lowered to use operations that
338 // produce two results, to match the available instructions. This exposes
339 // the two-result form to trivial CSE, which is able to combine x/y and x%y
340 // into a single instruction.
341 //
342 // Scalar integer multiply-high is also lowered to use two-result
343 // operations, to match the available instructions. However, plain multiply
344 // (low) operations are left as Legal, as there are single-result
345 // instructions for this in x86. Using the two-result multiply instructions
346 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000347 for (unsigned i = 0, e = 4; i != e; ++i) {
348 MVT VT = IntVTs[i];
349 setOperationAction(ISD::MULHS, VT, Expand);
350 setOperationAction(ISD::MULHU, VT, Expand);
351 setOperationAction(ISD::SDIV, VT, Expand);
352 setOperationAction(ISD::UDIV, VT, Expand);
353 setOperationAction(ISD::SREM, VT, Expand);
354 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000355
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000356 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000357 setOperationAction(ISD::ADDC, VT, Custom);
358 setOperationAction(ISD::ADDE, VT, Custom);
359 setOperationAction(ISD::SUBC, VT, Custom);
360 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000361 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000362
Owen Anderson825b72b2009-08-11 20:47:22 +0000363 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
364 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
365 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
366 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000367 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000368 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
369 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
370 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
371 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
372 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
373 setOperationAction(ISD::FREM , MVT::f32 , Expand);
374 setOperationAction(ISD::FREM , MVT::f64 , Expand);
375 setOperationAction(ISD::FREM , MVT::f80 , Expand);
376 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000377
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
379 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000380 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
381 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000382 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
383 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000384 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000385 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
386 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000387 }
388
Benjamin Kramer1292c222010-12-04 20:32:23 +0000389 if (Subtarget->hasPOPCNT()) {
390 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
391 } else {
392 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
393 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
394 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
395 if (Subtarget->is64Bit())
396 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
397 }
398
Owen Anderson825b72b2009-08-11 20:47:22 +0000399 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
400 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000401
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000402 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000403 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000404 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000405 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000406 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000407 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
408 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
409 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
410 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
411 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000412 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000413 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
414 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
415 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
416 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000417 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000418 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000419 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000420 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000422
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000423 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
425 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
426 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
427 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000428 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000429 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
430 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000431 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000432 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
434 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
435 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
436 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000437 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000438 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000439 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000440 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
441 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
442 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000443 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
445 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
446 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000447 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000448
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000449 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000450 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000451
Eric Christopher9a9d2752010-07-22 02:48:34 +0000452 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000453 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000454
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000455 // On X86 and X86-64, atomic operations are lowered to locked instructions.
456 // Locked instructions, in turn, have implicit fence semantics (all memory
457 // operations are flushed before issuing the locked instruction, and they
458 // are not buffered), so we can fold away the common pattern of
459 // fence-atomic-fence.
460 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000461
Mon P Wang63307c32008-05-05 19:05:59 +0000462 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000463 for (unsigned i = 0, e = 4; i != e; ++i) {
464 MVT VT = IntVTs[i];
465 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
466 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000467 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000468 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000469
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000470 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000471 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
472 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
473 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
474 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
475 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
476 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
477 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000478 }
479
Evan Cheng3c992d22006-03-07 02:02:57 +0000480 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000481 if (!Subtarget->isTargetDarwin() &&
482 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000483 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000484 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000485 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000486
Owen Anderson825b72b2009-08-11 20:47:22 +0000487 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
488 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
489 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
490 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000491 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000492 setExceptionPointerRegister(X86::RAX);
493 setExceptionSelectorRegister(X86::RDX);
494 } else {
495 setExceptionPointerRegister(X86::EAX);
496 setExceptionSelectorRegister(X86::EDX);
497 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000498 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
499 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000500
Owen Anderson825b72b2009-08-11 20:47:22 +0000501 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000502
Owen Anderson825b72b2009-08-11 20:47:22 +0000503 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000504
Nate Begemanacc398c2006-01-25 18:21:52 +0000505 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000506 setOperationAction(ISD::VASTART , MVT::Other, Custom);
507 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000508 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000509 setOperationAction(ISD::VAARG , MVT::Other, Custom);
510 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000511 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000512 setOperationAction(ISD::VAARG , MVT::Other, Expand);
513 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000514 }
Evan Chengae642192007-03-02 23:16:35 +0000515
Owen Anderson825b72b2009-08-11 20:47:22 +0000516 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
517 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000518 setOperationAction(ISD::DYNAMIC_STACKALLOC,
519 (Subtarget->is64Bit() ? MVT::i64 : MVT::i32),
520 (Subtarget->isTargetCOFF()
521 && !Subtarget->isTargetEnvMacho()
522 ? Custom : Expand));
Chris Lattnerb99329e2006-01-13 02:42:53 +0000523
Evan Chengc7ce29b2009-02-13 22:36:38 +0000524 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000525 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000526 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000527 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
528 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000529
Evan Cheng223547a2006-01-31 22:28:30 +0000530 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000531 setOperationAction(ISD::FABS , MVT::f64, Custom);
532 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000533
534 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000535 setOperationAction(ISD::FNEG , MVT::f64, Custom);
536 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000537
Evan Cheng68c47cb2007-01-05 07:55:56 +0000538 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000539 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
540 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000541
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000542 // Lower this to FGETSIGNx86 plus an AND.
543 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
544 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
545
Evan Chengd25e9e82006-02-02 00:28:23 +0000546 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000547 setOperationAction(ISD::FSIN , MVT::f64, Expand);
548 setOperationAction(ISD::FCOS , MVT::f64, Expand);
549 setOperationAction(ISD::FSIN , MVT::f32, Expand);
550 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000551
Chris Lattnera54aa942006-01-29 06:26:08 +0000552 // Expand FP immediates into loads from the stack, except for the special
553 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000554 addLegalFPImmediate(APFloat(+0.0)); // xorpd
555 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000556 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000557 // Use SSE for f32, x87 for f64.
558 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000559 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
560 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000561
562 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000563 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000564
565 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000566 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000567
Owen Anderson825b72b2009-08-11 20:47:22 +0000568 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000569
570 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000571 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
572 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000573
574 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000575 setOperationAction(ISD::FSIN , MVT::f32, Expand);
576 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000577
Nate Begemane1795842008-02-14 08:57:00 +0000578 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000579 addLegalFPImmediate(APFloat(+0.0f)); // xorps
580 addLegalFPImmediate(APFloat(+0.0)); // FLD0
581 addLegalFPImmediate(APFloat(+1.0)); // FLD1
582 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
583 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
584
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000585 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000586 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
587 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000588 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000589 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000590 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000591 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000592 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
593 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000594
Owen Anderson825b72b2009-08-11 20:47:22 +0000595 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
596 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
597 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
598 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000599
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000600 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000601 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
602 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000603 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000604 addLegalFPImmediate(APFloat(+0.0)); // FLD0
605 addLegalFPImmediate(APFloat(+1.0)); // FLD1
606 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
607 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000608 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
609 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
610 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
611 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000612 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000613
Cameron Zwarich33390842011-07-08 21:39:21 +0000614 // We don't support FMA.
615 setOperationAction(ISD::FMA, MVT::f64, Expand);
616 setOperationAction(ISD::FMA, MVT::f32, Expand);
617
Dale Johannesen59a58732007-08-05 18:49:15 +0000618 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000619 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000620 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
621 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
622 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000623 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000624 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000625 addLegalFPImmediate(TmpFlt); // FLD0
626 TmpFlt.changeSign();
627 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000628
629 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000630 APFloat TmpFlt2(+1.0);
631 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
632 &ignored);
633 addLegalFPImmediate(TmpFlt2); // FLD1
634 TmpFlt2.changeSign();
635 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
636 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000637
Evan Chengc7ce29b2009-02-13 22:36:38 +0000638 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000639 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
640 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000641 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000642
643 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000644 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000645
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000646 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000647 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
648 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
649 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000650
Owen Anderson825b72b2009-08-11 20:47:22 +0000651 setOperationAction(ISD::FLOG, MVT::f80, Expand);
652 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
653 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
654 setOperationAction(ISD::FEXP, MVT::f80, Expand);
655 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000656
Mon P Wangf007a8b2008-11-06 05:31:54 +0000657 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000658 // (for widening) or expand (for scalarization). Then we will selectively
659 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000660 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
661 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
662 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
663 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
664 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
665 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
666 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
667 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
668 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
669 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
670 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
671 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
672 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
673 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
674 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
675 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
676 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000677 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000678 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
679 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
681 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
682 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
683 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
684 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
685 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
686 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
687 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
710 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000711 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000712 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
715 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
716 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
717 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
718 setTruncStoreAction((MVT::SimpleValueType)VT,
719 (MVT::SimpleValueType)InnerVT, Expand);
720 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
721 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
722 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000723 }
724
Evan Chengc7ce29b2009-02-13 22:36:38 +0000725 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
726 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000727 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000728 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000729 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000730 }
731
Dale Johannesen0488fb62010-09-30 23:57:10 +0000732 // MMX-sized vectors (other than x86mmx) are expected to be expanded
733 // into smaller operations.
734 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
735 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
736 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
737 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
738 setOperationAction(ISD::AND, MVT::v8i8, Expand);
739 setOperationAction(ISD::AND, MVT::v4i16, Expand);
740 setOperationAction(ISD::AND, MVT::v2i32, Expand);
741 setOperationAction(ISD::AND, MVT::v1i64, Expand);
742 setOperationAction(ISD::OR, MVT::v8i8, Expand);
743 setOperationAction(ISD::OR, MVT::v4i16, Expand);
744 setOperationAction(ISD::OR, MVT::v2i32, Expand);
745 setOperationAction(ISD::OR, MVT::v1i64, Expand);
746 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
747 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
748 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
749 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
750 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
751 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
752 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
753 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
754 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
755 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
756 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
757 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
758 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000759 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
760 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
761 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
762 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000763
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000764 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000765 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000766
Owen Anderson825b72b2009-08-11 20:47:22 +0000767 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
768 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
769 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
770 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
771 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
772 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
773 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
774 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
775 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
776 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
777 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
778 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000779 }
780
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000781 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000782 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000783
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000784 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
785 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000786 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
787 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
788 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
789 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000790
Owen Anderson825b72b2009-08-11 20:47:22 +0000791 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
792 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
793 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
794 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
795 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
796 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
797 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
798 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
799 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
800 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
801 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
802 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
803 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
804 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
805 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
806 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000807
Owen Anderson825b72b2009-08-11 20:47:22 +0000808 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
809 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
810 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
811 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000812
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
814 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
815 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
816 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
817 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000818
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000819 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
820 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
821 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
822 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
823 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
824
Evan Cheng2c3ae372006-04-12 21:21:57 +0000825 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000826 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
827 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000828 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000829 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000830 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000831 // Do not attempt to custom lower non-128-bit vectors
832 if (!VT.is128BitVector())
833 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000834 setOperationAction(ISD::BUILD_VECTOR,
835 VT.getSimpleVT().SimpleTy, Custom);
836 setOperationAction(ISD::VECTOR_SHUFFLE,
837 VT.getSimpleVT().SimpleTy, Custom);
838 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
839 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000840 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000841
Owen Anderson825b72b2009-08-11 20:47:22 +0000842 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
843 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
844 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
845 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
846 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
847 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000848
Nate Begemancdd1eec2008-02-12 22:51:28 +0000849 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000850 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
851 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000852 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000853
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000854 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000855 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
856 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000857 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000858
859 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000860 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000861 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000862
Owen Andersond6662ad2009-08-10 20:46:15 +0000863 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000864 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000865 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000866 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000867 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000868 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000869 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000870 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000871 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000872 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000873 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000874
Owen Anderson825b72b2009-08-11 20:47:22 +0000875 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000876
Evan Cheng2c3ae372006-04-12 21:21:57 +0000877 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000878 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
879 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
880 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
881 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000882
Owen Anderson825b72b2009-08-11 20:47:22 +0000883 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
884 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000885 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000886
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000887 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000888 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
889 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
890 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
891 setOperationAction(ISD::FRINT, MVT::f32, Legal);
892 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
893 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
894 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
895 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
896 setOperationAction(ISD::FRINT, MVT::f64, Legal);
897 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
898
Nate Begeman14d12ca2008-02-11 04:19:36 +0000899 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000900 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000901
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000902 // Can turn SHL into an integer multiply.
903 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000904 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000905
Nate Begeman14d12ca2008-02-11 04:19:36 +0000906 // i8 and i16 vectors are custom , because the source register and source
907 // source memory operand types are not the same width. f32 vectors are
908 // custom since the immediate controlling the insert encodes additional
909 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000910 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
911 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
912 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
913 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000914
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
916 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
917 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
918 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000919
920 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000921 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
922 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000923 }
924 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000925
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000926 if (Subtarget->hasSSE2() || Subtarget->hasAVX()) {
Nadav Rotem43012222011-05-11 08:12:09 +0000927 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
928 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
929 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000930 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000931
932 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
933 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
934 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
935
936 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
937 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
938 }
939
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000940 if (Subtarget->hasSSE42() || Subtarget->hasAVX())
Owen Anderson825b72b2009-08-11 20:47:22 +0000941 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000942
David Greene9b9838d2009-06-29 16:47:10 +0000943 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000944 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
945 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
946 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
947 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
948 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
949 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000950
Owen Anderson825b72b2009-08-11 20:47:22 +0000951 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000952 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
953 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000954
Owen Anderson825b72b2009-08-11 20:47:22 +0000955 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
956 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
957 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
958 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
959 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
960 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000961
Owen Anderson825b72b2009-08-11 20:47:22 +0000962 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
963 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
964 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
965 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
966 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
967 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000968
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000969 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
970 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000971 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000972
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000973 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
974 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
975 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
976 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
977 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
978 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
979
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000980 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
981 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
982 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
983 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
984
985 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
986 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
987 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
988 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
989
990 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
991 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
992
Craig Toppera5347802011-08-23 04:36:33 +0000993 setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
994 setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +0000995 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
996 setOperationAction(ISD::VSETCC, MVT::v4i64, Custom);
997
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +0000998 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
999 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1000 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1001
Craig Topper13894fa2011-08-24 06:14:18 +00001002 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1003 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1004 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1005 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1006
1007 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1008 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1009 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1010 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1011
1012 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1013 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1014 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1015 // Don't lower v32i8 because there is no 128-bit byte mul
1016
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001017 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001018 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001019 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1020 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1021 EVT VT = SVT;
1022
1023 // Extract subvector is special because the value type
1024 // (result) is 128-bit but the source is 256-bit wide.
1025 if (VT.is128BitVector())
1026 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1027
1028 // Do not attempt to custom lower other non-256-bit vectors
1029 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001030 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001031
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001032 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1033 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1034 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1035 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001036 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001037 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001038 }
1039
David Greene54d8eba2011-01-27 22:38:56 +00001040 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001041 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1042 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1043 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001044
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001045 // Do not attempt to promote non-256-bit vectors
1046 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001047 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001048
1049 setOperationAction(ISD::AND, SVT, Promote);
1050 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1051 setOperationAction(ISD::OR, SVT, Promote);
1052 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1053 setOperationAction(ISD::XOR, SVT, Promote);
1054 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1055 setOperationAction(ISD::LOAD, SVT, Promote);
1056 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1057 setOperationAction(ISD::SELECT, SVT, Promote);
1058 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001059 }
David Greene9b9838d2009-06-29 16:47:10 +00001060 }
1061
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001062 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1063 // of this type with custom code.
1064 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1065 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1066 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1067 }
1068
Evan Cheng6be2c582006-04-05 23:38:46 +00001069 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001070 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001071
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001072
Eli Friedman962f5492010-06-02 19:35:46 +00001073 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1074 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001075 //
Eli Friedman962f5492010-06-02 19:35:46 +00001076 // FIXME: We really should do custom legalization for addition and
1077 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1078 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001079 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1080 // Add/Sub/Mul with overflow operations are custom lowered.
1081 MVT VT = IntVTs[i];
1082 setOperationAction(ISD::SADDO, VT, Custom);
1083 setOperationAction(ISD::UADDO, VT, Custom);
1084 setOperationAction(ISD::SSUBO, VT, Custom);
1085 setOperationAction(ISD::USUBO, VT, Custom);
1086 setOperationAction(ISD::SMULO, VT, Custom);
1087 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001088 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001089
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001090 // There are no 8-bit 3-address imul/mul instructions
1091 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1092 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001093
Evan Chengd54f2d52009-03-31 19:38:51 +00001094 if (!Subtarget->is64Bit()) {
1095 // These libcalls are not available in 32-bit.
1096 setLibcallName(RTLIB::SHL_I128, 0);
1097 setLibcallName(RTLIB::SRL_I128, 0);
1098 setLibcallName(RTLIB::SRA_I128, 0);
1099 }
1100
Evan Cheng206ee9d2006-07-07 08:33:52 +00001101 // We have target-specific dag combine patterns for the following nodes:
1102 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001103 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001104 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001105 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001106 setTargetDAGCombine(ISD::SHL);
1107 setTargetDAGCombine(ISD::SRA);
1108 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001109 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001110 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001111 setTargetDAGCombine(ISD::ADD);
1112 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001113 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001114 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001115 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001116 if (Subtarget->is64Bit())
1117 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001118
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001119 computeRegisterProperties();
1120
Evan Cheng05219282011-01-06 06:52:41 +00001121 // On Darwin, -Os means optimize for size without hurting performance,
1122 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001123 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001124 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001125 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001126 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1127 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1128 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001129 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001130 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001131
1132 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001133}
1134
Scott Michel5b8f82e2008-03-10 15:42:14 +00001135
Owen Anderson825b72b2009-08-11 20:47:22 +00001136MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1137 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001138}
1139
1140
Evan Cheng29286502008-01-23 23:17:41 +00001141/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1142/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001143static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001144 if (MaxAlign == 16)
1145 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001146 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001147 if (VTy->getBitWidth() == 128)
1148 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001149 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001150 unsigned EltAlign = 0;
1151 getMaxByValAlign(ATy->getElementType(), EltAlign);
1152 if (EltAlign > MaxAlign)
1153 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001154 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001155 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1156 unsigned EltAlign = 0;
1157 getMaxByValAlign(STy->getElementType(i), EltAlign);
1158 if (EltAlign > MaxAlign)
1159 MaxAlign = EltAlign;
1160 if (MaxAlign == 16)
1161 break;
1162 }
1163 }
1164 return;
1165}
1166
1167/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1168/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001169/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1170/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001171unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001172 if (Subtarget->is64Bit()) {
1173 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001174 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001175 if (TyAlign > 8)
1176 return TyAlign;
1177 return 8;
1178 }
1179
Evan Cheng29286502008-01-23 23:17:41 +00001180 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001181 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001182 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001183 return Align;
1184}
Chris Lattner2b02a442007-02-25 08:29:00 +00001185
Evan Chengf0df0312008-05-15 08:39:06 +00001186/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001187/// and store operations as a result of memset, memcpy, and memmove
1188/// lowering. If DstAlign is zero that means it's safe to destination
1189/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1190/// means there isn't a need to check it against alignment requirement,
1191/// probably because the source does not need to be loaded. If
1192/// 'NonScalarIntSafe' is true, that means it's safe to return a
1193/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1194/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1195/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001196/// It returns EVT::Other if the type should be determined using generic
1197/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001198EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001199X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1200 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001201 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001202 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001203 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001204 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1205 // linux. This is because the stack realignment code can't handle certain
1206 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001207 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001208 if (NonScalarIntSafe &&
1209 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001210 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001211 (Subtarget->isUnalignedMemAccessFast() ||
1212 ((DstAlign == 0 || DstAlign >= 16) &&
1213 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001214 Subtarget->getStackAlignment() >= 16) {
1215 if (Subtarget->hasSSE2())
1216 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001217 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001218 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001219 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001220 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001221 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001222 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001223 // Do not use f64 to lower memcpy if source is string constant. It's
1224 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001225 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001226 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001227 }
Evan Chengf0df0312008-05-15 08:39:06 +00001228 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001229 return MVT::i64;
1230 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001231}
1232
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001233/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1234/// current function. The returned value is a member of the
1235/// MachineJumpTableInfo::JTEntryKind enum.
1236unsigned X86TargetLowering::getJumpTableEncoding() const {
1237 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1238 // symbol.
1239 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1240 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001241 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001242
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001243 // Otherwise, use the normal jump table encoding heuristics.
1244 return TargetLowering::getJumpTableEncoding();
1245}
1246
Chris Lattnerc64daab2010-01-26 05:02:42 +00001247const MCExpr *
1248X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1249 const MachineBasicBlock *MBB,
1250 unsigned uid,MCContext &Ctx) const{
1251 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1252 Subtarget->isPICStyleGOT());
1253 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1254 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001255 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1256 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001257}
1258
Evan Chengcc415862007-11-09 01:32:10 +00001259/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1260/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001261SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001262 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001263 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001264 // This doesn't have DebugLoc associated with it, but is not really the
1265 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001266 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001267 return Table;
1268}
1269
Chris Lattner589c6f62010-01-26 06:28:43 +00001270/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1271/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1272/// MCExpr.
1273const MCExpr *X86TargetLowering::
1274getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1275 MCContext &Ctx) const {
1276 // X86-64 uses RIP relative addressing based on the jump table label.
1277 if (Subtarget->isPICStyleRIPRel())
1278 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1279
1280 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001281 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001282}
1283
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001284// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001285std::pair<const TargetRegisterClass*, uint8_t>
1286X86TargetLowering::findRepresentativeClass(EVT VT) const{
1287 const TargetRegisterClass *RRC = 0;
1288 uint8_t Cost = 1;
1289 switch (VT.getSimpleVT().SimpleTy) {
1290 default:
1291 return TargetLowering::findRepresentativeClass(VT);
1292 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1293 RRC = (Subtarget->is64Bit()
1294 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1295 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001296 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001297 RRC = X86::VR64RegisterClass;
1298 break;
1299 case MVT::f32: case MVT::f64:
1300 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1301 case MVT::v4f32: case MVT::v2f64:
1302 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1303 case MVT::v4f64:
1304 RRC = X86::VR128RegisterClass;
1305 break;
1306 }
1307 return std::make_pair(RRC, Cost);
1308}
1309
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001310bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1311 unsigned &Offset) const {
1312 if (!Subtarget->isTargetLinux())
1313 return false;
1314
1315 if (Subtarget->is64Bit()) {
1316 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1317 Offset = 0x28;
1318 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1319 AddressSpace = 256;
1320 else
1321 AddressSpace = 257;
1322 } else {
1323 // %gs:0x14 on i386
1324 Offset = 0x14;
1325 AddressSpace = 256;
1326 }
1327 return true;
1328}
1329
1330
Chris Lattner2b02a442007-02-25 08:29:00 +00001331//===----------------------------------------------------------------------===//
1332// Return Value Calling Convention Implementation
1333//===----------------------------------------------------------------------===//
1334
Chris Lattner59ed56b2007-02-28 04:55:35 +00001335#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001336
Michael J. Spencerec38de22010-10-10 22:04:20 +00001337bool
Eric Christopher471e4222011-06-08 23:55:35 +00001338X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1339 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001340 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001341 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001342 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001343 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001344 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001345 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001346}
1347
Dan Gohman98ca4f22009-08-05 01:29:28 +00001348SDValue
1349X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001350 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001351 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001352 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001353 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001354 MachineFunction &MF = DAG.getMachineFunction();
1355 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001356
Chris Lattner9774c912007-02-27 05:28:59 +00001357 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001358 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001359 RVLocs, *DAG.getContext());
1360 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001361
Evan Chengdcea1632010-02-04 02:40:39 +00001362 // Add the regs to the liveout set for the function.
1363 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1364 for (unsigned i = 0; i != RVLocs.size(); ++i)
1365 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1366 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001367
Dan Gohman475871a2008-07-27 21:46:04 +00001368 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001369
Dan Gohman475871a2008-07-27 21:46:04 +00001370 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001371 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1372 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001373 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1374 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001375
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001376 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001377 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1378 CCValAssign &VA = RVLocs[i];
1379 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001380 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001381 EVT ValVT = ValToCopy.getValueType();
1382
Dale Johannesenc4510512010-09-24 19:05:48 +00001383 // If this is x86-64, and we disabled SSE, we can't return FP values,
1384 // or SSE or MMX vectors.
1385 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1386 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001387 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001388 report_fatal_error("SSE register return with SSE disabled");
1389 }
1390 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1391 // llvm-gcc has never done it right and no one has noticed, so this
1392 // should be OK for now.
1393 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001394 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001395 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001396
Chris Lattner447ff682008-03-11 03:23:40 +00001397 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1398 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001399 if (VA.getLocReg() == X86::ST0 ||
1400 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001401 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1402 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001403 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001404 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001405 RetOps.push_back(ValToCopy);
1406 // Don't emit a copytoreg.
1407 continue;
1408 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001409
Evan Cheng242b38b2009-02-23 09:03:22 +00001410 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1411 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001412 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001413 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001414 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001415 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001416 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1417 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001418 // If we don't have SSE2 available, convert to v4f32 so the generated
1419 // register is legal.
1420 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001421 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001422 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001423 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001424 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001425
Dale Johannesendd64c412009-02-04 00:33:20 +00001426 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001427 Flag = Chain.getValue(1);
1428 }
Dan Gohman61a92132008-04-21 23:59:07 +00001429
1430 // The x86-64 ABI for returning structs by value requires that we copy
1431 // the sret argument into %rax for the return. We saved the argument into
1432 // a virtual register in the entry block, so now we copy the value out
1433 // and into %rax.
1434 if (Subtarget->is64Bit() &&
1435 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1436 MachineFunction &MF = DAG.getMachineFunction();
1437 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1438 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001439 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001440 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001441 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001442
Dale Johannesendd64c412009-02-04 00:33:20 +00001443 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001444 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001445
1446 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001447 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001448 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001449
Chris Lattner447ff682008-03-11 03:23:40 +00001450 RetOps[0] = Chain; // Update chain.
1451
1452 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001453 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001454 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001455
1456 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001457 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001458}
1459
Evan Cheng3d2125c2010-11-30 23:55:39 +00001460bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1461 if (N->getNumValues() != 1)
1462 return false;
1463 if (!N->hasNUsesOfValue(1, 0))
1464 return false;
1465
1466 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001467 if (Copy->getOpcode() != ISD::CopyToReg &&
1468 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001469 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001470
1471 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001472 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001473 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001474 if (UI->getOpcode() != X86ISD::RET_FLAG)
1475 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001476 HasRet = true;
1477 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001478
Evan Cheng1bf891a2010-12-01 22:59:46 +00001479 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001480}
1481
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001482EVT
1483X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001484 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001485 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001486 // TODO: Is this also valid on 32-bit?
1487 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001488 ReturnMVT = MVT::i8;
1489 else
1490 ReturnMVT = MVT::i32;
1491
1492 EVT MinVT = getRegisterType(Context, ReturnMVT);
1493 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001494}
1495
Dan Gohman98ca4f22009-08-05 01:29:28 +00001496/// LowerCallResult - Lower the result values of a call into the
1497/// appropriate copies out of appropriate physical registers.
1498///
1499SDValue
1500X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001501 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001502 const SmallVectorImpl<ISD::InputArg> &Ins,
1503 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001504 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001505
Chris Lattnere32bbf62007-02-28 07:09:55 +00001506 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001507 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001508 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001509 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1510 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001511 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001512
Chris Lattner3085e152007-02-25 08:59:22 +00001513 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001514 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001515 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001516 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001517
Torok Edwin3f142c32009-02-01 18:15:56 +00001518 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001519 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001520 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001521 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001522 }
1523
Evan Cheng79fb3b42009-02-20 20:43:02 +00001524 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001525
1526 // If this is a call to a function that returns an fp value on the floating
1527 // point stack, we must guarantee the the value is popped from the stack, so
1528 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001529 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001530 // instead.
1531 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1532 // If we prefer to use the value in xmm registers, copy it out as f80 and
1533 // use a truncate to move it from fp stack reg to xmm reg.
1534 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001535 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001536 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1537 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001538 Val = Chain.getValue(0);
1539
1540 // Round the f80 to the right size, which also moves it to the appropriate
1541 // xmm register.
1542 if (CopyVT != VA.getValVT())
1543 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1544 // This truncation won't change the value.
1545 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001546 } else {
1547 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1548 CopyVT, InFlag).getValue(1);
1549 Val = Chain.getValue(0);
1550 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001551 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001552 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001553 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001554
Dan Gohman98ca4f22009-08-05 01:29:28 +00001555 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001556}
1557
1558
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001559//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001560// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001561//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001562// StdCall calling convention seems to be standard for many Windows' API
1563// routines and around. It differs from C calling convention just a little:
1564// callee should clean up the stack, not caller. Symbols should be also
1565// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001566// For info on fast calling convention see Fast Calling Convention (tail call)
1567// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001568
Dan Gohman98ca4f22009-08-05 01:29:28 +00001569/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001570/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001571static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1572 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001573 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001574
Dan Gohman98ca4f22009-08-05 01:29:28 +00001575 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001576}
1577
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001578/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001579/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001580static bool
1581ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1582 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001583 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001584
Dan Gohman98ca4f22009-08-05 01:29:28 +00001585 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001586}
1587
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001588/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1589/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001590/// the specific parameter attribute. The copy will be passed as a byval
1591/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001592static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001593CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001594 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1595 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001596 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001597
Dale Johannesendd64c412009-02-04 00:33:20 +00001598 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001599 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001600 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001601}
1602
Chris Lattner29689432010-03-11 00:22:57 +00001603/// IsTailCallConvention - Return true if the calling convention is one that
1604/// supports tail call optimization.
1605static bool IsTailCallConvention(CallingConv::ID CC) {
1606 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1607}
1608
Evan Cheng485fafc2011-03-21 01:19:09 +00001609bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1610 if (!CI->isTailCall())
1611 return false;
1612
1613 CallSite CS(CI);
1614 CallingConv::ID CalleeCC = CS.getCallingConv();
1615 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1616 return false;
1617
1618 return true;
1619}
1620
Evan Cheng0c439eb2010-01-27 00:07:07 +00001621/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1622/// a tailcall target by changing its ABI.
1623static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001624 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001625}
1626
Dan Gohman98ca4f22009-08-05 01:29:28 +00001627SDValue
1628X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001629 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001630 const SmallVectorImpl<ISD::InputArg> &Ins,
1631 DebugLoc dl, SelectionDAG &DAG,
1632 const CCValAssign &VA,
1633 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001634 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001635 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001636 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001637 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001638 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001639 EVT ValVT;
1640
1641 // If value is passed by pointer we have address passed instead of the value
1642 // itself.
1643 if (VA.getLocInfo() == CCValAssign::Indirect)
1644 ValVT = VA.getLocVT();
1645 else
1646 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001647
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001648 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001649 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001650 // In case of tail call optimization mark all arguments mutable. Since they
1651 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001652 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001653 unsigned Bytes = Flags.getByValSize();
1654 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1655 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001656 return DAG.getFrameIndex(FI, getPointerTy());
1657 } else {
1658 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001659 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001660 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1661 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001662 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001663 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001664 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001665}
1666
Dan Gohman475871a2008-07-27 21:46:04 +00001667SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001668X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001669 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001670 bool isVarArg,
1671 const SmallVectorImpl<ISD::InputArg> &Ins,
1672 DebugLoc dl,
1673 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001674 SmallVectorImpl<SDValue> &InVals)
1675 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001676 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001677 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001678
Gordon Henriksen86737662008-01-05 16:56:59 +00001679 const Function* Fn = MF.getFunction();
1680 if (Fn->hasExternalLinkage() &&
1681 Subtarget->isTargetCygMing() &&
1682 Fn->getName() == "main")
1683 FuncInfo->setForceFramePointer(true);
1684
Evan Cheng1bc78042006-04-26 01:20:17 +00001685 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001686 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001687 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001688
Chris Lattner29689432010-03-11 00:22:57 +00001689 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1690 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001691
Chris Lattner638402b2007-02-28 07:00:42 +00001692 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001693 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001694 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001695 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001696
1697 // Allocate shadow area for Win64
1698 if (IsWin64) {
1699 CCInfo.AllocateStack(32, 8);
1700 }
1701
Duncan Sands45907662010-10-31 13:21:44 +00001702 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001703
Chris Lattnerf39f7712007-02-28 05:46:49 +00001704 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001705 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001706 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1707 CCValAssign &VA = ArgLocs[i];
1708 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1709 // places.
1710 assert(VA.getValNo() != LastVal &&
1711 "Don't support value assigned to multiple locs yet");
1712 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001713
Chris Lattnerf39f7712007-02-28 05:46:49 +00001714 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001715 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001716 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001717 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001718 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001719 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001720 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001721 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001722 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001723 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001724 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001725 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1726 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001727 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001728 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001729 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001730 RC = X86::VR64RegisterClass;
1731 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001732 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001733
Devang Patel68e6bee2011-02-21 23:21:26 +00001734 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001735 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001736
Chris Lattnerf39f7712007-02-28 05:46:49 +00001737 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1738 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1739 // right size.
1740 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001741 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001742 DAG.getValueType(VA.getValVT()));
1743 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001744 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001745 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001746 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001747 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001748
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001749 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001750 // Handle MMX values passed in XMM regs.
1751 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001752 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1753 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001754 } else
1755 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001756 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001757 } else {
1758 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001759 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001760 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001761
1762 // If value is passed via pointer - do a load.
1763 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001764 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1765 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001766
Dan Gohman98ca4f22009-08-05 01:29:28 +00001767 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001768 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001769
Dan Gohman61a92132008-04-21 23:59:07 +00001770 // The x86-64 ABI for returning structs by value requires that we copy
1771 // the sret argument into %rax for the return. Save the argument into
1772 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001773 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001774 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1775 unsigned Reg = FuncInfo->getSRetReturnReg();
1776 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001777 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001778 FuncInfo->setSRetReturnReg(Reg);
1779 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001780 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001781 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001782 }
1783
Chris Lattnerf39f7712007-02-28 05:46:49 +00001784 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001785 // Align stack specially for tail calls.
1786 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001787 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001788
Evan Cheng1bc78042006-04-26 01:20:17 +00001789 // If the function takes variable number of arguments, make a frame index for
1790 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001791 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001792 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1793 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001794 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001795 }
1796 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001797 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1798
1799 // FIXME: We should really autogenerate these arrays
1800 static const unsigned GPR64ArgRegsWin64[] = {
1801 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001802 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001803 static const unsigned GPR64ArgRegs64Bit[] = {
1804 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1805 };
1806 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001807 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1808 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1809 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001810 const unsigned *GPR64ArgRegs;
1811 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001812
1813 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001814 // The XMM registers which might contain var arg parameters are shadowed
1815 // in their paired GPR. So we only need to save the GPR to their home
1816 // slots.
1817 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001818 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001819 } else {
1820 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1821 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001822
1823 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001824 }
1825 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1826 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001827
Devang Patel578efa92009-06-05 21:57:13 +00001828 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001829 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001830 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001831 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001832 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001833 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001834 // Kernel mode asks for SSE to be disabled, so don't push them
1835 // on the stack.
1836 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001837
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001838 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001839 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001840 // Get to the caller-allocated home save location. Add 8 to account
1841 // for the return address.
1842 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001843 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001844 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001845 // Fixup to set vararg frame on shadow area (4 x i64).
1846 if (NumIntRegs < 4)
1847 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001848 } else {
1849 // For X86-64, if there are vararg parameters that are passed via
1850 // registers, then we must store them to their spots on the stack so they
1851 // may be loaded by deferencing the result of va_next.
1852 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1853 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1854 FuncInfo->setRegSaveFrameIndex(
1855 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001856 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001857 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001858
Gordon Henriksen86737662008-01-05 16:56:59 +00001859 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001860 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001861 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1862 getPointerTy());
1863 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001864 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001865 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1866 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001867 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001868 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001869 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001870 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001871 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001872 MachinePointerInfo::getFixedStack(
1873 FuncInfo->getRegSaveFrameIndex(), Offset),
1874 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001875 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001876 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001877 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001878
Dan Gohmanface41a2009-08-16 21:24:25 +00001879 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1880 // Now store the XMM (fp + vector) parameter registers.
1881 SmallVector<SDValue, 11> SaveXMMOps;
1882 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001883
Devang Patel68e6bee2011-02-21 23:21:26 +00001884 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001885 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1886 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001887
Dan Gohman1e93df62010-04-17 14:41:14 +00001888 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1889 FuncInfo->getRegSaveFrameIndex()));
1890 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1891 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001892
Dan Gohmanface41a2009-08-16 21:24:25 +00001893 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001894 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001895 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001896 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1897 SaveXMMOps.push_back(Val);
1898 }
1899 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1900 MVT::Other,
1901 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001902 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001903
1904 if (!MemOps.empty())
1905 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1906 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001907 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001908 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001909
Gordon Henriksen86737662008-01-05 16:56:59 +00001910 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001911 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001912 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001913 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001914 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001915 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001916 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001917 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001918 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001919
Gordon Henriksen86737662008-01-05 16:56:59 +00001920 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001921 // RegSaveFrameIndex is X86-64 only.
1922 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001923 if (CallConv == CallingConv::X86_FastCall ||
1924 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001925 // fastcc functions can't have varargs.
1926 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001927 }
Evan Cheng25caf632006-05-23 21:06:34 +00001928
Dan Gohman98ca4f22009-08-05 01:29:28 +00001929 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001930}
1931
Dan Gohman475871a2008-07-27 21:46:04 +00001932SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001933X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1934 SDValue StackPtr, SDValue Arg,
1935 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001936 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001937 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001938 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001939 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001940 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001941 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001942 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001943
1944 return DAG.getStore(Chain, dl, Arg, PtrOff,
1945 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001946 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001947}
1948
Bill Wendling64e87322009-01-16 19:25:27 +00001949/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001950/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001951SDValue
1952X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001953 SDValue &OutRetAddr, SDValue Chain,
1954 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001955 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001956 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001957 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001958 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001959
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001960 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001961 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1962 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001963 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001964}
1965
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001966/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001967/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001968static SDValue
1969EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001970 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001971 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001972 // Store the return address to the appropriate stack slot.
1973 if (!FPDiff) return Chain;
1974 // Calculate the new stack slot for the return address.
1975 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001976 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001977 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001978 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001979 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001980 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001981 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001982 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001983 return Chain;
1984}
1985
Dan Gohman98ca4f22009-08-05 01:29:28 +00001986SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001987X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001988 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001989 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001990 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001991 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001992 const SmallVectorImpl<ISD::InputArg> &Ins,
1993 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001994 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001995 MachineFunction &MF = DAG.getMachineFunction();
1996 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001997 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001998 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001999 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002000
Evan Cheng5f941932010-02-05 02:21:12 +00002001 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002002 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002003 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2004 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00002005 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002006
2007 // Sibcalls are automatically detected tailcalls which do not require
2008 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00002009 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002010 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002011
2012 if (isTailCall)
2013 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002014 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002015
Chris Lattner29689432010-03-11 00:22:57 +00002016 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2017 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002018
Chris Lattner638402b2007-02-28 07:00:42 +00002019 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002020 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002021 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002022 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002023
2024 // Allocate shadow area for Win64
2025 if (IsWin64) {
2026 CCInfo.AllocateStack(32, 8);
2027 }
2028
Duncan Sands45907662010-10-31 13:21:44 +00002029 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002030
Chris Lattner423c5f42007-02-28 05:31:48 +00002031 // Get a count of how many bytes are to be pushed on the stack.
2032 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002033 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002034 // This is a sibcall. The memory operands are available in caller's
2035 // own caller's stack.
2036 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002037 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002038 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002039
Gordon Henriksen86737662008-01-05 16:56:59 +00002040 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002041 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002042 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002043 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002044 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2045 FPDiff = NumBytesCallerPushed - NumBytes;
2046
2047 // Set the delta of movement of the returnaddr stackslot.
2048 // But only set if delta is greater than previous delta.
2049 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2050 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2051 }
2052
Evan Chengf22f9b32010-02-06 03:28:46 +00002053 if (!IsSibcall)
2054 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002055
Dan Gohman475871a2008-07-27 21:46:04 +00002056 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002057 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002058 if (isTailCall && FPDiff)
2059 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2060 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002061
Dan Gohman475871a2008-07-27 21:46:04 +00002062 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2063 SmallVector<SDValue, 8> MemOpChains;
2064 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002065
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002066 // Walk the register/memloc assignments, inserting copies/loads. In the case
2067 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002068 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2069 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002070 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002071 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002072 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002073 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002074
Chris Lattner423c5f42007-02-28 05:31:48 +00002075 // Promote the value if needed.
2076 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002077 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002078 case CCValAssign::Full: break;
2079 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002080 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002081 break;
2082 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002083 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002084 break;
2085 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002086 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2087 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002088 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002089 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2090 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002091 } else
2092 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2093 break;
2094 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002095 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002096 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002097 case CCValAssign::Indirect: {
2098 // Store the argument.
2099 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002100 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002101 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002102 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002103 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002104 Arg = SpillSlot;
2105 break;
2106 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002107 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002108
Chris Lattner423c5f42007-02-28 05:31:48 +00002109 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002110 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2111 if (isVarArg && IsWin64) {
2112 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2113 // shadow reg if callee is a varargs function.
2114 unsigned ShadowReg = 0;
2115 switch (VA.getLocReg()) {
2116 case X86::XMM0: ShadowReg = X86::RCX; break;
2117 case X86::XMM1: ShadowReg = X86::RDX; break;
2118 case X86::XMM2: ShadowReg = X86::R8; break;
2119 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002120 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002121 if (ShadowReg)
2122 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002123 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002124 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002125 assert(VA.isMemLoc());
2126 if (StackPtr.getNode() == 0)
2127 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2128 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2129 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002130 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002131 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002132
Evan Cheng32fe1032006-05-25 00:59:30 +00002133 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002134 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002135 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002136
Evan Cheng347d5f72006-04-28 21:29:37 +00002137 // Build a sequence of copy-to-reg nodes chained together with token chain
2138 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002139 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002140 // Tail call byval lowering might overwrite argument registers so in case of
2141 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002142 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002143 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002144 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002145 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002146 InFlag = Chain.getValue(1);
2147 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002148
Chris Lattner88e1fd52009-07-09 04:24:46 +00002149 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002150 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2151 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002152 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002153 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2154 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002155 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002156 InFlag);
2157 InFlag = Chain.getValue(1);
2158 } else {
2159 // If we are tail calling and generating PIC/GOT style code load the
2160 // address of the callee into ECX. The value in ecx is used as target of
2161 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2162 // for tail calls on PIC/GOT architectures. Normally we would just put the
2163 // address of GOT into ebx and then call target@PLT. But for tail calls
2164 // ebx would be restored (since ebx is callee saved) before jumping to the
2165 // target@PLT.
2166
2167 // Note: The actual moving to ECX is done further down.
2168 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2169 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2170 !G->getGlobal()->hasProtectedVisibility())
2171 Callee = LowerGlobalAddress(Callee, DAG);
2172 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002173 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002174 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002175 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002176
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002177 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002178 // From AMD64 ABI document:
2179 // For calls that may call functions that use varargs or stdargs
2180 // (prototype-less calls or calls to functions containing ellipsis (...) in
2181 // the declaration) %al is used as hidden argument to specify the number
2182 // of SSE registers used. The contents of %al do not need to match exactly
2183 // the number of registers, but must be an ubound on the number of SSE
2184 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002185
Gordon Henriksen86737662008-01-05 16:56:59 +00002186 // Count the number of XMM registers allocated.
2187 static const unsigned XMMArgRegs[] = {
2188 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2189 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2190 };
2191 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002192 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002193 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002194
Dale Johannesendd64c412009-02-04 00:33:20 +00002195 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002196 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002197 InFlag = Chain.getValue(1);
2198 }
2199
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002200
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002201 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002202 if (isTailCall) {
2203 // Force all the incoming stack arguments to be loaded from the stack
2204 // before any new outgoing arguments are stored to the stack, because the
2205 // outgoing stack slots may alias the incoming argument stack slots, and
2206 // the alias isn't otherwise explicit. This is slightly more conservative
2207 // than necessary, because it means that each store effectively depends
2208 // on every argument instead of just those arguments it would clobber.
2209 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2210
Dan Gohman475871a2008-07-27 21:46:04 +00002211 SmallVector<SDValue, 8> MemOpChains2;
2212 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002213 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002214 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002215 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002216 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002217 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2218 CCValAssign &VA = ArgLocs[i];
2219 if (VA.isRegLoc())
2220 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002221 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002222 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002223 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002224 // Create frame index.
2225 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002226 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002227 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002228 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002229
Duncan Sands276dcbd2008-03-21 09:14:45 +00002230 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002231 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002232 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002233 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002234 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002235 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002236 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002237
Dan Gohman98ca4f22009-08-05 01:29:28 +00002238 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2239 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002240 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002241 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002242 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002243 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002244 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002245 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002246 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002247 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002248 }
2249 }
2250
2251 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002252 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002253 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002254
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002255 // Copy arguments to their registers.
2256 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002257 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002258 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002259 InFlag = Chain.getValue(1);
2260 }
Dan Gohman475871a2008-07-27 21:46:04 +00002261 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002262
Gordon Henriksen86737662008-01-05 16:56:59 +00002263 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002264 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002265 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002266 }
2267
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002268 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2269 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2270 // In the 64-bit large code model, we have to make all calls
2271 // through a register, since the call instruction's 32-bit
2272 // pc-relative offset may not be large enough to hold the whole
2273 // address.
2274 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002275 // If the callee is a GlobalAddress node (quite common, every direct call
2276 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2277 // it.
2278
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002279 // We should use extra load for direct calls to dllimported functions in
2280 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002281 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002282 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002283 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002284 bool ExtraLoad = false;
2285 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002286
Chris Lattner48a7d022009-07-09 05:02:21 +00002287 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2288 // external symbols most go through the PLT in PIC mode. If the symbol
2289 // has hidden or protected visibility, or if it is static or local, then
2290 // we don't need to use the PLT - we can directly call it.
2291 if (Subtarget->isTargetELF() &&
2292 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002293 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002294 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002295 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002296 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002297 (!Subtarget->getTargetTriple().isMacOSX() ||
2298 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002299 // PC-relative references to external symbols should go through $stub,
2300 // unless we're building with the leopard linker or later, which
2301 // automatically synthesizes these stubs.
2302 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002303 } else if (Subtarget->isPICStyleRIPRel() &&
2304 isa<Function>(GV) &&
2305 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2306 // If the function is marked as non-lazy, generate an indirect call
2307 // which loads from the GOT directly. This avoids runtime overhead
2308 // at the cost of eager binding (and one extra byte of encoding).
2309 OpFlags = X86II::MO_GOTPCREL;
2310 WrapperKind = X86ISD::WrapperRIP;
2311 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002312 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002313
Devang Patel0d881da2010-07-06 22:08:15 +00002314 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002315 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002316
2317 // Add a wrapper if needed.
2318 if (WrapperKind != ISD::DELETED_NODE)
2319 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2320 // Add extra indirection if needed.
2321 if (ExtraLoad)
2322 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2323 MachinePointerInfo::getGOT(),
2324 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002325 }
Bill Wendling056292f2008-09-16 21:48:12 +00002326 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002327 unsigned char OpFlags = 0;
2328
Evan Cheng1bf891a2010-12-01 22:59:46 +00002329 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2330 // external symbols should go through the PLT.
2331 if (Subtarget->isTargetELF() &&
2332 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2333 OpFlags = X86II::MO_PLT;
2334 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002335 (!Subtarget->getTargetTriple().isMacOSX() ||
2336 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002337 // PC-relative references to external symbols should go through $stub,
2338 // unless we're building with the leopard linker or later, which
2339 // automatically synthesizes these stubs.
2340 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002341 }
Eric Christopherfd179292009-08-27 18:07:15 +00002342
Chris Lattner48a7d022009-07-09 05:02:21 +00002343 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2344 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002345 }
2346
Chris Lattnerd96d0722007-02-25 06:40:16 +00002347 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002348 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002349 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002350
Evan Chengf22f9b32010-02-06 03:28:46 +00002351 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002352 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2353 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002354 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002355 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002356
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002357 Ops.push_back(Chain);
2358 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002359
Dan Gohman98ca4f22009-08-05 01:29:28 +00002360 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002361 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002362
Gordon Henriksen86737662008-01-05 16:56:59 +00002363 // Add argument registers to the end of the list so that they are known live
2364 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002365 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2366 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2367 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002368
Evan Cheng586ccac2008-03-18 23:36:35 +00002369 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002370 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002371 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2372
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002373 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002374 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002375 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002376
Gabor Greifba36cb52008-08-28 21:40:38 +00002377 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002378 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002379
Dan Gohman98ca4f22009-08-05 01:29:28 +00002380 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002381 // We used to do:
2382 //// If this is the first return lowered for this function, add the regs
2383 //// to the liveout set for the function.
2384 // This isn't right, although it's probably harmless on x86; liveouts
2385 // should be computed from returns not tail calls. Consider a void
2386 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002387 return DAG.getNode(X86ISD::TC_RETURN, dl,
2388 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002389 }
2390
Dale Johannesenace16102009-02-03 19:33:06 +00002391 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002392 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002393
Chris Lattner2d297092006-05-23 18:50:38 +00002394 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002395 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002396 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002397 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002398 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002399 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002400 // pops the hidden struct pointer, so we have to push it back.
2401 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002402 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002403 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002404 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002405
Gordon Henriksenae636f82008-01-03 16:47:34 +00002406 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002407 if (!IsSibcall) {
2408 Chain = DAG.getCALLSEQ_END(Chain,
2409 DAG.getIntPtrConstant(NumBytes, true),
2410 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2411 true),
2412 InFlag);
2413 InFlag = Chain.getValue(1);
2414 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002415
Chris Lattner3085e152007-02-25 08:59:22 +00002416 // Handle result values, copying them out of physregs into vregs that we
2417 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002418 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2419 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002420}
2421
Evan Cheng25ab6902006-09-08 06:48:29 +00002422
2423//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002424// Fast Calling Convention (tail call) implementation
2425//===----------------------------------------------------------------------===//
2426
2427// Like std call, callee cleans arguments, convention except that ECX is
2428// reserved for storing the tail called function address. Only 2 registers are
2429// free for argument passing (inreg). Tail call optimization is performed
2430// provided:
2431// * tailcallopt is enabled
2432// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002433// On X86_64 architecture with GOT-style position independent code only local
2434// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002435// To keep the stack aligned according to platform abi the function
2436// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2437// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002438// If a tail called function callee has more arguments than the caller the
2439// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002440// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002441// original REtADDR, but before the saved framepointer or the spilled registers
2442// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2443// stack layout:
2444// arg1
2445// arg2
2446// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002447// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002448// move area ]
2449// (possible EBP)
2450// ESI
2451// EDI
2452// local1 ..
2453
2454/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2455/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002456unsigned
2457X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2458 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002459 MachineFunction &MF = DAG.getMachineFunction();
2460 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002461 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002462 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002463 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002464 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002465 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002466 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2467 // Number smaller than 12 so just add the difference.
2468 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2469 } else {
2470 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002471 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002472 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002473 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002474 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002475}
2476
Evan Cheng5f941932010-02-05 02:21:12 +00002477/// MatchingStackOffset - Return true if the given stack call argument is
2478/// already available in the same position (relatively) of the caller's
2479/// incoming argument stack.
2480static
2481bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2482 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2483 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002484 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2485 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002486 if (Arg.getOpcode() == ISD::CopyFromReg) {
2487 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002488 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002489 return false;
2490 MachineInstr *Def = MRI->getVRegDef(VR);
2491 if (!Def)
2492 return false;
2493 if (!Flags.isByVal()) {
2494 if (!TII->isLoadFromStackSlot(Def, FI))
2495 return false;
2496 } else {
2497 unsigned Opcode = Def->getOpcode();
2498 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2499 Def->getOperand(1).isFI()) {
2500 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002501 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002502 } else
2503 return false;
2504 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002505 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2506 if (Flags.isByVal())
2507 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002508 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002509 // define @foo(%struct.X* %A) {
2510 // tail call @bar(%struct.X* byval %A)
2511 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002512 return false;
2513 SDValue Ptr = Ld->getBasePtr();
2514 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2515 if (!FINode)
2516 return false;
2517 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002518 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002519 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002520 FI = FINode->getIndex();
2521 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002522 } else
2523 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002524
Evan Cheng4cae1332010-03-05 08:38:04 +00002525 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002526 if (!MFI->isFixedObjectIndex(FI))
2527 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002528 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002529}
2530
Dan Gohman98ca4f22009-08-05 01:29:28 +00002531/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2532/// for tail call optimization. Targets which want to do tail call
2533/// optimization should implement this function.
2534bool
2535X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002536 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002537 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002538 bool isCalleeStructRet,
2539 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002540 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002541 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002542 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002543 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002544 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002545 CalleeCC != CallingConv::C)
2546 return false;
2547
Evan Cheng7096ae42010-01-29 06:45:59 +00002548 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002549 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002550 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002551 CallingConv::ID CallerCC = CallerF->getCallingConv();
2552 bool CCMatch = CallerCC == CalleeCC;
2553
Dan Gohman1797ed52010-02-08 20:27:50 +00002554 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002555 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002556 return true;
2557 return false;
2558 }
2559
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002560 // Look for obvious safe cases to perform tail call optimization that do not
2561 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002562
Evan Cheng2c12cb42010-03-26 16:26:03 +00002563 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2564 // emit a special epilogue.
2565 if (RegInfo->needsStackRealignment(MF))
2566 return false;
2567
Evan Chenga375d472010-03-15 18:54:48 +00002568 // Also avoid sibcall optimization if either caller or callee uses struct
2569 // return semantics.
2570 if (isCalleeStructRet || isCallerStructRet)
2571 return false;
2572
Chad Rosier2416da32011-06-24 21:15:36 +00002573 // An stdcall caller is expected to clean up its arguments; the callee
2574 // isn't going to do that.
2575 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2576 return false;
2577
Chad Rosier871f6642011-05-18 19:59:50 +00002578 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002579 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002580 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002581
2582 // Optimizing for varargs on Win64 is unlikely to be safe without
2583 // additional testing.
2584 if (Subtarget->isTargetWin64())
2585 return false;
2586
Chad Rosier871f6642011-05-18 19:59:50 +00002587 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002588 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2589 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002590
Chad Rosier871f6642011-05-18 19:59:50 +00002591 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2592 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2593 if (!ArgLocs[i].isRegLoc())
2594 return false;
2595 }
2596
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002597 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2598 // Therefore if it's not used by the call it is not safe to optimize this into
2599 // a sibcall.
2600 bool Unused = false;
2601 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2602 if (!Ins[i].Used) {
2603 Unused = true;
2604 break;
2605 }
2606 }
2607 if (Unused) {
2608 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002609 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2610 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002611 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002612 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002613 CCValAssign &VA = RVLocs[i];
2614 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2615 return false;
2616 }
2617 }
2618
Evan Cheng13617962010-04-30 01:12:32 +00002619 // If the calling conventions do not match, then we'd better make sure the
2620 // results are returned in the same way as what the caller expects.
2621 if (!CCMatch) {
2622 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002623 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2624 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002625 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2626
2627 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002628 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2629 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002630 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2631
2632 if (RVLocs1.size() != RVLocs2.size())
2633 return false;
2634 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2635 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2636 return false;
2637 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2638 return false;
2639 if (RVLocs1[i].isRegLoc()) {
2640 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2641 return false;
2642 } else {
2643 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2644 return false;
2645 }
2646 }
2647 }
2648
Evan Chenga6bff982010-01-30 01:22:00 +00002649 // If the callee takes no arguments then go on to check the results of the
2650 // call.
2651 if (!Outs.empty()) {
2652 // Check if stack adjustment is needed. For now, do not do this if any
2653 // argument is passed on the stack.
2654 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002655 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2656 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002657
2658 // Allocate shadow area for Win64
2659 if (Subtarget->isTargetWin64()) {
2660 CCInfo.AllocateStack(32, 8);
2661 }
2662
Duncan Sands45907662010-10-31 13:21:44 +00002663 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002664 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002665 MachineFunction &MF = DAG.getMachineFunction();
2666 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2667 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002668
2669 // Check if the arguments are already laid out in the right way as
2670 // the caller's fixed stack objects.
2671 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002672 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2673 const X86InstrInfo *TII =
2674 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002675 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2676 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002677 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002678 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002679 if (VA.getLocInfo() == CCValAssign::Indirect)
2680 return false;
2681 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002682 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2683 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002684 return false;
2685 }
2686 }
2687 }
Evan Cheng9c044672010-05-29 01:35:22 +00002688
2689 // If the tailcall address may be in a register, then make sure it's
2690 // possible to register allocate for it. In 32-bit, the call address can
2691 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002692 // callee-saved registers are restored. These happen to be the same
2693 // registers used to pass 'inreg' arguments so watch out for those.
2694 if (!Subtarget->is64Bit() &&
2695 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002696 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002697 unsigned NumInRegs = 0;
2698 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2699 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002700 if (!VA.isRegLoc())
2701 continue;
2702 unsigned Reg = VA.getLocReg();
2703 switch (Reg) {
2704 default: break;
2705 case X86::EAX: case X86::EDX: case X86::ECX:
2706 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002707 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002708 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002709 }
2710 }
2711 }
Evan Chenga6bff982010-01-30 01:22:00 +00002712 }
Evan Chengb1712452010-01-27 06:25:16 +00002713
Evan Cheng86809cc2010-02-03 03:28:02 +00002714 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002715}
2716
Dan Gohman3df24e62008-09-03 23:12:08 +00002717FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002718X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2719 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002720}
2721
2722
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002723//===----------------------------------------------------------------------===//
2724// Other Lowering Hooks
2725//===----------------------------------------------------------------------===//
2726
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002727static bool MayFoldLoad(SDValue Op) {
2728 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2729}
2730
2731static bool MayFoldIntoStore(SDValue Op) {
2732 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2733}
2734
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002735static bool isTargetShuffle(unsigned Opcode) {
2736 switch(Opcode) {
2737 default: return false;
2738 case X86ISD::PSHUFD:
2739 case X86ISD::PSHUFHW:
2740 case X86ISD::PSHUFLW:
2741 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002742 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002743 case X86ISD::SHUFPS:
2744 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002745 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002746 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002747 case X86ISD::MOVLPS:
2748 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002749 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002750 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002751 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002752 case X86ISD::MOVSS:
2753 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002754 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002755 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002756 case X86ISD::VUNPCKLPSY:
2757 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002758 case X86ISD::PUNPCKLWD:
2759 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002760 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002761 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002762 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002763 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002764 case X86ISD::VUNPCKHPSY:
2765 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002766 case X86ISD::PUNPCKHWD:
2767 case X86ISD::PUNPCKHBW:
2768 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002769 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002770 case X86ISD::VPERMILPS:
2771 case X86ISD::VPERMILPSY:
2772 case X86ISD::VPERMILPD:
2773 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002774 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002775 return true;
2776 }
2777 return false;
2778}
2779
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002780static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002781 SDValue V1, SelectionDAG &DAG) {
2782 switch(Opc) {
2783 default: llvm_unreachable("Unknown x86 shuffle node");
2784 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002785 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002786 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002787 return DAG.getNode(Opc, dl, VT, V1);
2788 }
2789
2790 return SDValue();
2791}
2792
2793static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002794 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002795 switch(Opc) {
2796 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002797 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002798 case X86ISD::PSHUFHW:
2799 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002800 case X86ISD::VPERMILPS:
2801 case X86ISD::VPERMILPSY:
2802 case X86ISD::VPERMILPD:
2803 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002804 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2805 }
2806
2807 return SDValue();
2808}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002809
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002810static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2811 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2812 switch(Opc) {
2813 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002814 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002815 case X86ISD::SHUFPD:
2816 case X86ISD::SHUFPS:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002817 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002818 return DAG.getNode(Opc, dl, VT, V1, V2,
2819 DAG.getConstant(TargetMask, MVT::i8));
2820 }
2821 return SDValue();
2822}
2823
2824static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2825 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2826 switch(Opc) {
2827 default: llvm_unreachable("Unknown x86 shuffle node");
2828 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002829 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002830 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002831 case X86ISD::MOVLPS:
2832 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002833 case X86ISD::MOVSS:
2834 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002835 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002836 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002837 case X86ISD::VUNPCKLPSY:
2838 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002839 case X86ISD::PUNPCKLWD:
2840 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002841 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002842 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002843 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002844 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002845 case X86ISD::VUNPCKHPSY:
2846 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002847 case X86ISD::PUNPCKHWD:
2848 case X86ISD::PUNPCKHBW:
2849 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002850 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002851 return DAG.getNode(Opc, dl, VT, V1, V2);
2852 }
2853 return SDValue();
2854}
2855
Dan Gohmand858e902010-04-17 15:26:15 +00002856SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002857 MachineFunction &MF = DAG.getMachineFunction();
2858 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2859 int ReturnAddrIndex = FuncInfo->getRAIndex();
2860
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002861 if (ReturnAddrIndex == 0) {
2862 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002863 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002864 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002865 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002866 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002867 }
2868
Evan Cheng25ab6902006-09-08 06:48:29 +00002869 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002870}
2871
2872
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002873bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2874 bool hasSymbolicDisplacement) {
2875 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002876 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002877 return false;
2878
2879 // If we don't have a symbolic displacement - we don't have any extra
2880 // restrictions.
2881 if (!hasSymbolicDisplacement)
2882 return true;
2883
2884 // FIXME: Some tweaks might be needed for medium code model.
2885 if (M != CodeModel::Small && M != CodeModel::Kernel)
2886 return false;
2887
2888 // For small code model we assume that latest object is 16MB before end of 31
2889 // bits boundary. We may also accept pretty large negative constants knowing
2890 // that all objects are in the positive half of address space.
2891 if (M == CodeModel::Small && Offset < 16*1024*1024)
2892 return true;
2893
2894 // For kernel code model we know that all object resist in the negative half
2895 // of 32bits address space. We may not accept negative offsets, since they may
2896 // be just off and we may accept pretty large positive ones.
2897 if (M == CodeModel::Kernel && Offset > 0)
2898 return true;
2899
2900 return false;
2901}
2902
Evan Chengef41ff62011-06-23 17:54:54 +00002903/// isCalleePop - Determines whether the callee is required to pop its
2904/// own arguments. Callee pop is necessary to support tail calls.
2905bool X86::isCalleePop(CallingConv::ID CallingConv,
2906 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2907 if (IsVarArg)
2908 return false;
2909
2910 switch (CallingConv) {
2911 default:
2912 return false;
2913 case CallingConv::X86_StdCall:
2914 return !is64Bit;
2915 case CallingConv::X86_FastCall:
2916 return !is64Bit;
2917 case CallingConv::X86_ThisCall:
2918 return !is64Bit;
2919 case CallingConv::Fast:
2920 return TailCallOpt;
2921 case CallingConv::GHC:
2922 return TailCallOpt;
2923 }
2924}
2925
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002926/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2927/// specific condition code, returning the condition code and the LHS/RHS of the
2928/// comparison to make.
2929static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2930 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002931 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002932 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2933 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2934 // X > -1 -> X == 0, jump !sign.
2935 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002936 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002937 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2938 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002939 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002940 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002941 // X < 1 -> X <= 0
2942 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002943 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002944 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002945 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002946
Evan Chengd9558e02006-01-06 00:43:03 +00002947 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002948 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002949 case ISD::SETEQ: return X86::COND_E;
2950 case ISD::SETGT: return X86::COND_G;
2951 case ISD::SETGE: return X86::COND_GE;
2952 case ISD::SETLT: return X86::COND_L;
2953 case ISD::SETLE: return X86::COND_LE;
2954 case ISD::SETNE: return X86::COND_NE;
2955 case ISD::SETULT: return X86::COND_B;
2956 case ISD::SETUGT: return X86::COND_A;
2957 case ISD::SETULE: return X86::COND_BE;
2958 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002959 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002960 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002961
Chris Lattner4c78e022008-12-23 23:42:27 +00002962 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002963
Chris Lattner4c78e022008-12-23 23:42:27 +00002964 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002965 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2966 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002967 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2968 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002969 }
2970
Chris Lattner4c78e022008-12-23 23:42:27 +00002971 switch (SetCCOpcode) {
2972 default: break;
2973 case ISD::SETOLT:
2974 case ISD::SETOLE:
2975 case ISD::SETUGT:
2976 case ISD::SETUGE:
2977 std::swap(LHS, RHS);
2978 break;
2979 }
2980
2981 // On a floating point condition, the flags are set as follows:
2982 // ZF PF CF op
2983 // 0 | 0 | 0 | X > Y
2984 // 0 | 0 | 1 | X < Y
2985 // 1 | 0 | 0 | X == Y
2986 // 1 | 1 | 1 | unordered
2987 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002988 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002989 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002990 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002991 case ISD::SETOLT: // flipped
2992 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002993 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002994 case ISD::SETOLE: // flipped
2995 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002996 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002997 case ISD::SETUGT: // flipped
2998 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002999 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003000 case ISD::SETUGE: // flipped
3001 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003002 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003003 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003004 case ISD::SETNE: return X86::COND_NE;
3005 case ISD::SETUO: return X86::COND_P;
3006 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003007 case ISD::SETOEQ:
3008 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003009 }
Evan Chengd9558e02006-01-06 00:43:03 +00003010}
3011
Evan Cheng4a460802006-01-11 00:33:36 +00003012/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3013/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003014/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003015static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003016 switch (X86CC) {
3017 default:
3018 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003019 case X86::COND_B:
3020 case X86::COND_BE:
3021 case X86::COND_E:
3022 case X86::COND_P:
3023 case X86::COND_A:
3024 case X86::COND_AE:
3025 case X86::COND_NE:
3026 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003027 return true;
3028 }
3029}
3030
Evan Chengeb2f9692009-10-27 19:56:55 +00003031/// isFPImmLegal - Returns true if the target can instruction select the
3032/// specified FP immediate natively. If false, the legalizer will
3033/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003034bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003035 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3036 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3037 return true;
3038 }
3039 return false;
3040}
3041
Nate Begeman9008ca62009-04-27 18:41:29 +00003042/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3043/// the specified range (L, H].
3044static bool isUndefOrInRange(int Val, int Low, int Hi) {
3045 return (Val < 0) || (Val >= Low && Val < Hi);
3046}
3047
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00003048/// isUndefOrInRange - Return true if every element in Mask, begining
3049/// from position Pos and ending in Pos+Size, falls within the specified
3050/// range (L, L+Pos]. or is undef.
3051static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3052 int Pos, int Size, int Low, int Hi) {
3053 for (int i = Pos, e = Pos+Size; i != e; ++i)
3054 if (!isUndefOrInRange(Mask[i], Low, Hi))
3055 return false;
3056 return true;
3057}
3058
Nate Begeman9008ca62009-04-27 18:41:29 +00003059/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3060/// specified value.
3061static bool isUndefOrEqual(int Val, int CmpVal) {
3062 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003063 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003064 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003065}
3066
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003067/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3068/// from position Pos and ending in Pos+Size, falls within the specified
3069/// sequential range (L, L+Pos]. or is undef.
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003070static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3071 int Pos, int Size, int Low) {
3072 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3073 if (!isUndefOrEqual(Mask[i], Low))
3074 return false;
3075 return true;
3076}
3077
Nate Begeman9008ca62009-04-27 18:41:29 +00003078/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3079/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3080/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003081static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003082 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003083 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003084 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003085 return (Mask[0] < 2 && Mask[1] < 2);
3086 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003087}
3088
Nate Begeman9008ca62009-04-27 18:41:29 +00003089bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003090 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003091 N->getMask(M);
3092 return ::isPSHUFDMask(M, N->getValueType(0));
3093}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003094
Nate Begeman9008ca62009-04-27 18:41:29 +00003095/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3096/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003097static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003098 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003099 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003100
Nate Begeman9008ca62009-04-27 18:41:29 +00003101 // Lower quadword copied in order or undef.
3102 for (int i = 0; i != 4; ++i)
3103 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003104 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003105
Evan Cheng506d3df2006-03-29 23:07:14 +00003106 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003107 for (int i = 4; i != 8; ++i)
3108 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003109 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003110
Evan Cheng506d3df2006-03-29 23:07:14 +00003111 return true;
3112}
3113
Nate Begeman9008ca62009-04-27 18:41:29 +00003114bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003115 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003116 N->getMask(M);
3117 return ::isPSHUFHWMask(M, N->getValueType(0));
3118}
Evan Cheng506d3df2006-03-29 23:07:14 +00003119
Nate Begeman9008ca62009-04-27 18:41:29 +00003120/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3121/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003122static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003123 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003124 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003125
Rafael Espindola15684b22009-04-24 12:40:33 +00003126 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003127 for (int i = 4; i != 8; ++i)
3128 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003129 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003130
Rafael Espindola15684b22009-04-24 12:40:33 +00003131 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003132 for (int i = 0; i != 4; ++i)
3133 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003134 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003135
Rafael Espindola15684b22009-04-24 12:40:33 +00003136 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003137}
3138
Nate Begeman9008ca62009-04-27 18:41:29 +00003139bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003140 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003141 N->getMask(M);
3142 return ::isPSHUFLWMask(M, N->getValueType(0));
3143}
3144
Nate Begemana09008b2009-10-19 02:17:23 +00003145/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3146/// is suitable for input to PALIGNR.
3147static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3148 bool hasSSSE3) {
3149 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003150 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3151 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003152
Nate Begemana09008b2009-10-19 02:17:23 +00003153 // Do not handle v2i64 / v2f64 shuffles with palignr.
3154 if (e < 4 || !hasSSSE3)
3155 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003156
Nate Begemana09008b2009-10-19 02:17:23 +00003157 for (i = 0; i != e; ++i)
3158 if (Mask[i] >= 0)
3159 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003160
Nate Begemana09008b2009-10-19 02:17:23 +00003161 // All undef, not a palignr.
3162 if (i == e)
3163 return false;
3164
Eli Friedman63f8dde2011-07-25 21:36:45 +00003165 // Make sure we're shifting in the right direction.
3166 if (Mask[i] <= i)
3167 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003168
3169 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003170
Nate Begemana09008b2009-10-19 02:17:23 +00003171 // Check the rest of the elements to see if they are consecutive.
3172 for (++i; i != e; ++i) {
3173 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003174 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003175 return false;
3176 }
3177 return true;
3178}
3179
Evan Cheng14aed5e2006-03-24 01:18:28 +00003180/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3181/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003182static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003183 int NumElems = VT.getVectorNumElements();
3184 if (NumElems != 2 && NumElems != 4)
3185 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003186
Nate Begeman9008ca62009-04-27 18:41:29 +00003187 int Half = NumElems / 2;
3188 for (int i = 0; i < Half; ++i)
3189 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003190 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003191 for (int i = Half; i < NumElems; ++i)
3192 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003193 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003194
Evan Cheng14aed5e2006-03-24 01:18:28 +00003195 return true;
3196}
3197
Nate Begeman9008ca62009-04-27 18:41:29 +00003198bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3199 SmallVector<int, 8> M;
3200 N->getMask(M);
3201 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003202}
3203
Evan Cheng213d2cf2007-05-17 18:45:50 +00003204/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003205/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3206/// half elements to come from vector 1 (which would equal the dest.) and
3207/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003208static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003209 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003210
3211 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003212 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003213
Nate Begeman9008ca62009-04-27 18:41:29 +00003214 int Half = NumElems / 2;
3215 for (int i = 0; i < Half; ++i)
3216 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003217 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003218 for (int i = Half; i < NumElems; ++i)
3219 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003220 return false;
3221 return true;
3222}
3223
Nate Begeman9008ca62009-04-27 18:41:29 +00003224static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3225 SmallVector<int, 8> M;
3226 N->getMask(M);
3227 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003228}
3229
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003230/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3231/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003232bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003233 EVT VT = N->getValueType(0);
3234 unsigned NumElems = VT.getVectorNumElements();
3235
3236 if (VT.getSizeInBits() != 128)
3237 return false;
3238
3239 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003240 return false;
3241
Evan Cheng2064a2b2006-03-28 06:50:32 +00003242 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003243 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3244 isUndefOrEqual(N->getMaskElt(1), 7) &&
3245 isUndefOrEqual(N->getMaskElt(2), 2) &&
3246 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003247}
3248
Nate Begeman0b10b912009-11-07 23:17:15 +00003249/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3250/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3251/// <2, 3, 2, 3>
3252bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003253 EVT VT = N->getValueType(0);
3254 unsigned NumElems = VT.getVectorNumElements();
3255
3256 if (VT.getSizeInBits() != 128)
3257 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003258
Nate Begeman0b10b912009-11-07 23:17:15 +00003259 if (NumElems != 4)
3260 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003261
Nate Begeman0b10b912009-11-07 23:17:15 +00003262 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003263 isUndefOrEqual(N->getMaskElt(1), 3) &&
3264 isUndefOrEqual(N->getMaskElt(2), 2) &&
3265 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003266}
3267
Evan Cheng5ced1d82006-04-06 23:23:56 +00003268/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3269/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003270bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3271 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003272
Evan Cheng5ced1d82006-04-06 23:23:56 +00003273 if (NumElems != 2 && NumElems != 4)
3274 return false;
3275
Evan Chengc5cdff22006-04-07 21:53:05 +00003276 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003277 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003278 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003279
Evan Chengc5cdff22006-04-07 21:53:05 +00003280 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003281 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003282 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003283
3284 return true;
3285}
3286
Nate Begeman0b10b912009-11-07 23:17:15 +00003287/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3288/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3289bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003290 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003291
David Greenea20244d2011-03-02 17:23:43 +00003292 if ((NumElems != 2 && NumElems != 4)
3293 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003294 return false;
3295
Evan Chengc5cdff22006-04-07 21:53:05 +00003296 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003297 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003298 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003299
Nate Begeman9008ca62009-04-27 18:41:29 +00003300 for (unsigned i = 0; i < NumElems/2; ++i)
3301 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003302 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003303
3304 return true;
3305}
3306
Evan Cheng0038e592006-03-28 00:39:58 +00003307/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3308/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003309static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003310 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003311 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003312
3313 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3314 "Unsupported vector type for unpckh");
3315
3316 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003317 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003318
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003319 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3320 // independently on 128-bit lanes.
3321 unsigned NumLanes = VT.getSizeInBits()/128;
3322 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003323
3324 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003325 unsigned End = NumLaneElts;
3326 for (unsigned s = 0; s < NumLanes; ++s) {
3327 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003328 i != End;
3329 i += 2, ++j) {
3330 int BitI = Mask[i];
3331 int BitI1 = Mask[i+1];
3332 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003333 return false;
David Greenea20244d2011-03-02 17:23:43 +00003334 if (V2IsSplat) {
3335 if (!isUndefOrEqual(BitI1, NumElts))
3336 return false;
3337 } else {
3338 if (!isUndefOrEqual(BitI1, j + NumElts))
3339 return false;
3340 }
Evan Cheng39623da2006-04-20 08:58:49 +00003341 }
David Greenea20244d2011-03-02 17:23:43 +00003342 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003343 Start += NumLaneElts;
3344 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003345 }
David Greenea20244d2011-03-02 17:23:43 +00003346
Evan Cheng0038e592006-03-28 00:39:58 +00003347 return true;
3348}
3349
Nate Begeman9008ca62009-04-27 18:41:29 +00003350bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3351 SmallVector<int, 8> M;
3352 N->getMask(M);
3353 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003354}
3355
Evan Cheng4fcb9222006-03-28 02:43:26 +00003356/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3357/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003358static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003359 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003360 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003361
3362 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3363 "Unsupported vector type for unpckh");
3364
3365 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003366 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003367
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003368 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3369 // independently on 128-bit lanes.
3370 unsigned NumLanes = VT.getSizeInBits()/128;
3371 unsigned NumLaneElts = NumElts/NumLanes;
3372
3373 unsigned Start = 0;
3374 unsigned End = NumLaneElts;
3375 for (unsigned l = 0; l != NumLanes; ++l) {
3376 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3377 i != End; i += 2, ++j) {
3378 int BitI = Mask[i];
3379 int BitI1 = Mask[i+1];
3380 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003381 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003382 if (V2IsSplat) {
3383 if (isUndefOrEqual(BitI1, NumElts))
3384 return false;
3385 } else {
3386 if (!isUndefOrEqual(BitI1, j+NumElts))
3387 return false;
3388 }
Evan Cheng39623da2006-04-20 08:58:49 +00003389 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003390 // Process the next 128 bits.
3391 Start += NumLaneElts;
3392 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003393 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003394 return true;
3395}
3396
Nate Begeman9008ca62009-04-27 18:41:29 +00003397bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3398 SmallVector<int, 8> M;
3399 N->getMask(M);
3400 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003401}
3402
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003403/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3404/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3405/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003406static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003407 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003408 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003409 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003410
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003411 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3412 // independently on 128-bit lanes.
3413 unsigned NumLanes = VT.getSizeInBits() / 128;
3414 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003415
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003416 for (unsigned s = 0; s < NumLanes; ++s) {
3417 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3418 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003419 i += 2, ++j) {
3420 int BitI = Mask[i];
3421 int BitI1 = Mask[i+1];
3422
3423 if (!isUndefOrEqual(BitI, j))
3424 return false;
3425 if (!isUndefOrEqual(BitI1, j))
3426 return false;
3427 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003428 }
David Greenea20244d2011-03-02 17:23:43 +00003429
Rafael Espindola15684b22009-04-24 12:40:33 +00003430 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003431}
3432
Nate Begeman9008ca62009-04-27 18:41:29 +00003433bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3434 SmallVector<int, 8> M;
3435 N->getMask(M);
3436 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3437}
3438
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003439/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3440/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3441/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003442static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003443 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003444 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3445 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003446
Nate Begeman9008ca62009-04-27 18:41:29 +00003447 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3448 int BitI = Mask[i];
3449 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003450 if (!isUndefOrEqual(BitI, j))
3451 return false;
3452 if (!isUndefOrEqual(BitI1, j))
3453 return false;
3454 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003455 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003456}
3457
Nate Begeman9008ca62009-04-27 18:41:29 +00003458bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3459 SmallVector<int, 8> M;
3460 N->getMask(M);
3461 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3462}
3463
Evan Cheng017dcc62006-04-21 01:05:10 +00003464/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3465/// specifies a shuffle of elements that is suitable for input to MOVSS,
3466/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003467static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003468 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003469 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003470
3471 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003472
Nate Begeman9008ca62009-04-27 18:41:29 +00003473 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003474 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003475
Nate Begeman9008ca62009-04-27 18:41:29 +00003476 for (int i = 1; i < NumElts; ++i)
3477 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003478 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003479
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003480 return true;
3481}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003482
Nate Begeman9008ca62009-04-27 18:41:29 +00003483bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3484 SmallVector<int, 8> M;
3485 N->getMask(M);
3486 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003487}
3488
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003489/// isVPERM2F128Mask - Match 256-bit shuffles where the elements are considered
3490/// as permutations between 128-bit chunks or halves. As an example: this
3491/// shuffle bellow:
3492/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3493/// The first half comes from the second half of V1 and the second half from the
3494/// the second half of V2.
3495static bool isVPERM2F128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3496 const X86Subtarget *Subtarget) {
3497 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3498 return false;
3499
3500 // The shuffle result is divided into half A and half B. In total the two
3501 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3502 // B must come from C, D, E or F.
3503 int HalfSize = VT.getVectorNumElements()/2;
3504 bool MatchA = false, MatchB = false;
3505
3506 // Check if A comes from one of C, D, E, F.
3507 for (int Half = 0; Half < 4; ++Half) {
3508 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3509 MatchA = true;
3510 break;
3511 }
3512 }
3513
3514 // Check if B comes from one of C, D, E, F.
3515 for (int Half = 0; Half < 4; ++Half) {
3516 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3517 MatchB = true;
3518 break;
3519 }
3520 }
3521
3522 return MatchA && MatchB;
3523}
3524
3525/// getShuffleVPERM2F128Immediate - Return the appropriate immediate to shuffle
3526/// the specified VECTOR_MASK mask with VPERM2F128 instructions.
3527static unsigned getShuffleVPERM2F128Immediate(SDNode *N) {
3528 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3529 EVT VT = SVOp->getValueType(0);
3530
3531 int HalfSize = VT.getVectorNumElements()/2;
3532
3533 int FstHalf = 0, SndHalf = 0;
3534 for (int i = 0; i < HalfSize; ++i) {
3535 if (SVOp->getMaskElt(i) > 0) {
3536 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3537 break;
3538 }
3539 }
3540 for (int i = HalfSize; i < HalfSize*2; ++i) {
3541 if (SVOp->getMaskElt(i) > 0) {
3542 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3543 break;
3544 }
3545 }
3546
3547 return (FstHalf | (SndHalf << 4));
3548}
3549
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003550/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3551/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3552/// Note that VPERMIL mask matching is different depending whether theunderlying
3553/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3554/// to the same elements of the low, but to the higher half of the source.
3555/// In VPERMILPD the two lanes could be shuffled independently of each other
3556/// with the same restriction that lanes can't be crossed.
3557static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3558 const X86Subtarget *Subtarget) {
3559 int NumElts = VT.getVectorNumElements();
3560 int NumLanes = VT.getSizeInBits()/128;
3561
3562 if (!Subtarget->hasAVX())
3563 return false;
3564
3565 // Match any permutation of 128-bit vector with 64-bit types
3566 if (NumLanes == 1 && NumElts != 2)
3567 return false;
3568
3569 // Only match 256-bit with 32 types
3570 if (VT.getSizeInBits() == 256 && NumElts != 4)
3571 return false;
3572
3573 // The mask on the high lane is independent of the low. Both can match
3574 // any element in inside its own lane, but can't cross.
3575 int LaneSize = NumElts/NumLanes;
3576 for (int l = 0; l < NumLanes; ++l)
3577 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3578 int LaneStart = l*LaneSize;
3579 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3580 return false;
3581 }
3582
3583 return true;
3584}
3585
3586/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3587/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3588/// Note that VPERMIL mask matching is different depending whether theunderlying
3589/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3590/// to the same elements of the low, but to the higher half of the source.
3591/// In VPERMILPD the two lanes could be shuffled independently of each other
3592/// with the same restriction that lanes can't be crossed.
3593static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3594 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003595 unsigned NumElts = VT.getVectorNumElements();
3596 unsigned NumLanes = VT.getSizeInBits()/128;
3597
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003598 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003599 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003600
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003601 // Match any permutation of 128-bit vector with 32-bit types
3602 if (NumLanes == 1 && NumElts != 4)
3603 return false;
3604
3605 // Only match 256-bit with 32 types
3606 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003607 return false;
3608
3609 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003610 // they can differ if any of the corresponding index in a lane is undef
3611 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003612 int LaneSize = NumElts/NumLanes;
3613 for (int i = 0; i < LaneSize; ++i) {
3614 int HighElt = i+LaneSize;
Bruno Cardoso Lopes155a92a2011-08-10 01:54:17 +00003615 bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3616 bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3617
3618 if (!HighValid || !LowValid)
3619 return false;
3620 if (Mask[i] < 0 || Mask[HighElt] < 0)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003621 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003622 if (Mask[HighElt]-Mask[i] != LaneSize)
3623 return false;
3624 }
3625
3626 return true;
3627}
3628
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003629/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3630/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3631static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003632 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3633 EVT VT = SVOp->getValueType(0);
3634
3635 int NumElts = VT.getVectorNumElements();
3636 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003637 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003638
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003639 // Although the mask is equal for both lanes do it twice to get the cases
3640 // where a mask will match because the same mask element is undef on the
3641 // first half but valid on the second. This would get pathological cases
3642 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003643 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003644 for (int l = 0; l < NumLanes; ++l) {
3645 for (int i = 0; i < LaneSize; ++i) {
3646 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3647 if (MaskElt < 0)
3648 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003649 if (MaskElt >= LaneSize)
3650 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003651 Mask |= MaskElt << (i*2);
3652 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003653 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003654
3655 return Mask;
3656}
3657
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003658/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3659/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3660static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3661 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3662 EVT VT = SVOp->getValueType(0);
3663
3664 int NumElts = VT.getVectorNumElements();
3665 int NumLanes = VT.getSizeInBits()/128;
3666
3667 unsigned Mask = 0;
3668 int LaneSize = NumElts/NumLanes;
3669 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003670 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3671 int MaskElt = SVOp->getMaskElt(i);
3672 if (MaskElt < 0)
3673 continue;
3674 Mask |= (MaskElt-l*LaneSize) << i;
3675 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003676
3677 return Mask;
3678}
3679
Evan Cheng017dcc62006-04-21 01:05:10 +00003680/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3681/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003682/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003683static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003684 bool V2IsSplat = false, bool V2IsUndef = false) {
3685 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003686 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003687 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003688
Nate Begeman9008ca62009-04-27 18:41:29 +00003689 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003690 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003691
Nate Begeman9008ca62009-04-27 18:41:29 +00003692 for (int i = 1; i < NumOps; ++i)
3693 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3694 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3695 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003696 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003697
Evan Cheng39623da2006-04-20 08:58:49 +00003698 return true;
3699}
3700
Nate Begeman9008ca62009-04-27 18:41:29 +00003701static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003702 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003703 SmallVector<int, 8> M;
3704 N->getMask(M);
3705 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003706}
3707
Evan Chengd9539472006-04-14 21:59:03 +00003708/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3709/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003710/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3711bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3712 const X86Subtarget *Subtarget) {
3713 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003714 return false;
3715
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003716 // The second vector must be undef
3717 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3718 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003719
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003720 EVT VT = N->getValueType(0);
3721 unsigned NumElems = VT.getVectorNumElements();
3722
3723 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3724 (VT.getSizeInBits() == 256 && NumElems != 8))
3725 return false;
3726
3727 // "i+1" is the value the indexed mask element must have
3728 for (unsigned i = 0; i < NumElems; i += 2)
3729 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3730 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003731 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003732
3733 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003734}
3735
3736/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3737/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003738/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3739bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3740 const X86Subtarget *Subtarget) {
3741 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003742 return false;
3743
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003744 // The second vector must be undef
3745 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3746 return false;
3747
3748 EVT VT = N->getValueType(0);
3749 unsigned NumElems = VT.getVectorNumElements();
3750
3751 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3752 (VT.getSizeInBits() == 256 && NumElems != 8))
3753 return false;
3754
3755 // "i" is the value the indexed mask element must have
3756 for (unsigned i = 0; i < NumElems; i += 2)
3757 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3758 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003759 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003760
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003761 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003762}
3763
Evan Cheng0b457f02008-09-25 20:50:48 +00003764/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3765/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003766bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3767 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003768
Nate Begeman9008ca62009-04-27 18:41:29 +00003769 for (int i = 0; i < e; ++i)
3770 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003771 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003772 for (int i = 0; i < e; ++i)
3773 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003774 return false;
3775 return true;
3776}
3777
David Greenec38a03e2011-02-03 15:50:00 +00003778/// isVEXTRACTF128Index - Return true if the specified
3779/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3780/// suitable for input to VEXTRACTF128.
3781bool X86::isVEXTRACTF128Index(SDNode *N) {
3782 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3783 return false;
3784
3785 // The index should be aligned on a 128-bit boundary.
3786 uint64_t Index =
3787 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3788
3789 unsigned VL = N->getValueType(0).getVectorNumElements();
3790 unsigned VBits = N->getValueType(0).getSizeInBits();
3791 unsigned ElSize = VBits / VL;
3792 bool Result = (Index * ElSize) % 128 == 0;
3793
3794 return Result;
3795}
3796
David Greeneccacdc12011-02-04 16:08:29 +00003797/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3798/// operand specifies a subvector insert that is suitable for input to
3799/// VINSERTF128.
3800bool X86::isVINSERTF128Index(SDNode *N) {
3801 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3802 return false;
3803
3804 // The index should be aligned on a 128-bit boundary.
3805 uint64_t Index =
3806 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3807
3808 unsigned VL = N->getValueType(0).getVectorNumElements();
3809 unsigned VBits = N->getValueType(0).getSizeInBits();
3810 unsigned ElSize = VBits / VL;
3811 bool Result = (Index * ElSize) % 128 == 0;
3812
3813 return Result;
3814}
3815
Evan Cheng63d33002006-03-22 08:01:21 +00003816/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003817/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003818unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003819 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3820 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3821
Evan Chengb9df0ca2006-03-22 02:53:00 +00003822 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3823 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003824 for (int i = 0; i < NumOperands; ++i) {
3825 int Val = SVOp->getMaskElt(NumOperands-i-1);
3826 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003827 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003828 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003829 if (i != NumOperands - 1)
3830 Mask <<= Shift;
3831 }
Evan Cheng63d33002006-03-22 08:01:21 +00003832 return Mask;
3833}
3834
Evan Cheng506d3df2006-03-29 23:07:14 +00003835/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003836/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003837unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003838 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003839 unsigned Mask = 0;
3840 // 8 nodes, but we only care about the last 4.
3841 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003842 int Val = SVOp->getMaskElt(i);
3843 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003844 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003845 if (i != 4)
3846 Mask <<= 2;
3847 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003848 return Mask;
3849}
3850
3851/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003852/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003853unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003854 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003855 unsigned Mask = 0;
3856 // 8 nodes, but we only care about the first 4.
3857 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003858 int Val = SVOp->getMaskElt(i);
3859 if (Val >= 0)
3860 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003861 if (i != 0)
3862 Mask <<= 2;
3863 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003864 return Mask;
3865}
3866
Nate Begemana09008b2009-10-19 02:17:23 +00003867/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3868/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3869unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3870 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3871 EVT VVT = N->getValueType(0);
3872 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3873 int Val = 0;
3874
3875 unsigned i, e;
3876 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3877 Val = SVOp->getMaskElt(i);
3878 if (Val >= 0)
3879 break;
3880 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003881 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003882 return (Val - i) * EltSize;
3883}
3884
David Greenec38a03e2011-02-03 15:50:00 +00003885/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3886/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3887/// instructions.
3888unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3889 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3890 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3891
3892 uint64_t Index =
3893 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3894
3895 EVT VecVT = N->getOperand(0).getValueType();
3896 EVT ElVT = VecVT.getVectorElementType();
3897
3898 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003899 return Index / NumElemsPerChunk;
3900}
3901
David Greeneccacdc12011-02-04 16:08:29 +00003902/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3903/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3904/// instructions.
3905unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3906 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3907 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3908
3909 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003910 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003911
3912 EVT VecVT = N->getValueType(0);
3913 EVT ElVT = VecVT.getVectorElementType();
3914
3915 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003916 return Index / NumElemsPerChunk;
3917}
3918
Evan Cheng37b73872009-07-30 08:33:02 +00003919/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3920/// constant +0.0.
3921bool X86::isZeroNode(SDValue Elt) {
3922 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003923 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003924 (isa<ConstantFPSDNode>(Elt) &&
3925 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3926}
3927
Nate Begeman9008ca62009-04-27 18:41:29 +00003928/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3929/// their permute mask.
3930static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3931 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003932 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003933 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003934 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003935
Nate Begeman5a5ca152009-04-29 05:20:52 +00003936 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003937 int idx = SVOp->getMaskElt(i);
3938 if (idx < 0)
3939 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003940 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003941 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003942 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003943 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003944 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003945 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3946 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003947}
3948
Evan Cheng779ccea2007-12-07 21:30:01 +00003949/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3950/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003951static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003952 unsigned NumElems = VT.getVectorNumElements();
3953 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003954 int idx = Mask[i];
3955 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003956 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003957 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003958 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003959 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003960 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003961 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003962}
3963
Evan Cheng533a0aa2006-04-19 20:35:22 +00003964/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3965/// match movhlps. The lower half elements should come from upper half of
3966/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003967/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003968static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00003969 EVT VT = Op->getValueType(0);
3970 if (VT.getSizeInBits() != 128)
3971 return false;
3972 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003973 return false;
3974 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003975 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003976 return false;
3977 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003978 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003979 return false;
3980 return true;
3981}
3982
Evan Cheng5ced1d82006-04-06 23:23:56 +00003983/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003984/// is promoted to a vector. It also returns the LoadSDNode by reference if
3985/// required.
3986static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003987 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3988 return false;
3989 N = N->getOperand(0).getNode();
3990 if (!ISD::isNON_EXTLoad(N))
3991 return false;
3992 if (LD)
3993 *LD = cast<LoadSDNode>(N);
3994 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003995}
3996
Evan Cheng533a0aa2006-04-19 20:35:22 +00003997/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3998/// match movlp{s|d}. The lower half elements should come from lower half of
3999/// V1 (and in order), and the upper half elements should come from the upper
4000/// half of V2 (and in order). And since V1 will become the source of the
4001/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004002static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4003 ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004004 EVT VT = Op->getValueType(0);
4005 if (VT.getSizeInBits() != 128)
4006 return false;
4007
Evan Cheng466685d2006-10-09 20:57:25 +00004008 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004009 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004010 // Is V2 is a vector load, don't do this transformation. We will try to use
4011 // load folding shufps op.
4012 if (ISD::isNON_EXTLoad(V2))
4013 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004014
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004015 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004016
Evan Cheng533a0aa2006-04-19 20:35:22 +00004017 if (NumElems != 2 && NumElems != 4)
4018 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004019 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004020 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004021 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004022 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004023 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004024 return false;
4025 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004026}
4027
Evan Cheng39623da2006-04-20 08:58:49 +00004028/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4029/// all the same.
4030static bool isSplatVector(SDNode *N) {
4031 if (N->getOpcode() != ISD::BUILD_VECTOR)
4032 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004033
Dan Gohman475871a2008-07-27 21:46:04 +00004034 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004035 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4036 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004037 return false;
4038 return true;
4039}
4040
Evan Cheng213d2cf2007-05-17 18:45:50 +00004041/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004042/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004043/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004044static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004045 SDValue V1 = N->getOperand(0);
4046 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004047 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4048 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004049 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004050 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004051 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004052 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4053 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004054 if (Opc != ISD::BUILD_VECTOR ||
4055 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004056 return false;
4057 } else if (Idx >= 0) {
4058 unsigned Opc = V1.getOpcode();
4059 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4060 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004061 if (Opc != ISD::BUILD_VECTOR ||
4062 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004063 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004064 }
4065 }
4066 return true;
4067}
4068
4069/// getZeroVector - Returns a vector of specified type with all zero elements.
4070///
Owen Andersone50ed302009-08-10 22:56:29 +00004071static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004072 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004073 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004074
Dale Johannesen0488fb62010-09-30 23:57:10 +00004075 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004076 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004077 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00004078 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004079 if (HasSSE2) { // SSE2
4080 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4081 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4082 } else { // SSE1
4083 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4084 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4085 }
4086 } else if (VT.getSizeInBits() == 256) { // AVX
4087 // 256-bit logic and arithmetic instructions in AVX are
4088 // all floating-point, no support for integer ops. Default
4089 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00004090 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004091 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4092 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00004093 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004094 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004095}
4096
Chris Lattner8a594482007-11-25 00:24:49 +00004097/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004098/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
4099/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
4100/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00004101static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004102 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004103 assert((VT.is128BitVector() || VT.is256BitVector())
4104 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004105
Owen Anderson825b72b2009-08-11 20:47:22 +00004106 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004107 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
4108 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004109
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004110 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004111 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4112 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4113 Vec = Insert128BitVector(InsV, Vec,
4114 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4115 }
4116
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004117 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004118}
4119
Evan Cheng39623da2006-04-20 08:58:49 +00004120/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4121/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004122static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004123 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004124 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004125
Evan Cheng39623da2006-04-20 08:58:49 +00004126 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004127 SmallVector<int, 8> MaskVec;
4128 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004129
Nate Begeman5a5ca152009-04-29 05:20:52 +00004130 for (unsigned i = 0; i != NumElems; ++i) {
4131 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004132 MaskVec[i] = NumElems;
4133 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004134 }
Evan Cheng39623da2006-04-20 08:58:49 +00004135 }
Evan Cheng39623da2006-04-20 08:58:49 +00004136 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004137 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4138 SVOp->getOperand(1), &MaskVec[0]);
4139 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004140}
4141
Evan Cheng017dcc62006-04-21 01:05:10 +00004142/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4143/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004144static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004145 SDValue V2) {
4146 unsigned NumElems = VT.getVectorNumElements();
4147 SmallVector<int, 8> Mask;
4148 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004149 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004150 Mask.push_back(i);
4151 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004152}
4153
Nate Begeman9008ca62009-04-27 18:41:29 +00004154/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004155static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004156 SDValue V2) {
4157 unsigned NumElems = VT.getVectorNumElements();
4158 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004159 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004160 Mask.push_back(i);
4161 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004162 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004163 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004164}
4165
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004166/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004167static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004168 SDValue V2) {
4169 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004170 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004171 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004172 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004173 Mask.push_back(i + Half);
4174 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004175 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004176 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004177}
4178
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004179// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004180// a generic shuffle instruction because the target has no such instructions.
4181// Generate shuffles which repeat i16 and i8 several times until they can be
4182// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004183static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004184 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004185 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004186 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004187
Nate Begeman9008ca62009-04-27 18:41:29 +00004188 while (NumElems > 4) {
4189 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004190 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004191 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004192 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004193 EltNo -= NumElems/2;
4194 }
4195 NumElems >>= 1;
4196 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004197 return V;
4198}
Eric Christopherfd179292009-08-27 18:07:15 +00004199
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004200/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4201static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4202 EVT VT = V.getValueType();
4203 DebugLoc dl = V.getDebugLoc();
4204 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4205 && "Vector size not supported");
4206
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004207 if (VT.getSizeInBits() == 128) {
4208 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004209 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004210 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4211 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004212 } else {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004213 // To use VPERMILPS to splat scalars, the second half of indicies must
4214 // refer to the higher part, which is a duplication of the lower one,
4215 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004216 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4217 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004218
4219 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4220 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4221 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004222 }
4223
4224 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4225}
4226
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004227/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004228static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4229 EVT SrcVT = SV->getValueType(0);
4230 SDValue V1 = SV->getOperand(0);
4231 DebugLoc dl = SV->getDebugLoc();
4232
4233 int EltNo = SV->getSplatIndex();
4234 int NumElems = SrcVT.getVectorNumElements();
4235 unsigned Size = SrcVT.getSizeInBits();
4236
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004237 assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4238 "Unknown how to promote splat for type");
4239
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004240 // Extract the 128-bit part containing the splat element and update
4241 // the splat element index when it refers to the higher register.
4242 if (Size == 256) {
4243 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4244 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4245 if (Idx > 0)
4246 EltNo -= NumElems/2;
4247 }
4248
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004249 // All i16 and i8 vector types can't be used directly by a generic shuffle
4250 // instruction because the target has no such instruction. Generate shuffles
4251 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004252 // be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004253 EVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004254 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004255 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004256
4257 // Recreate the 256-bit vector and place the same 128-bit vector
4258 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004259 // to use VPERM* to shuffle the vectors
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004260 if (Size == 256) {
4261 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4262 DAG.getConstant(0, MVT::i32), DAG, dl);
4263 V1 = Insert128BitVector(InsV, V1,
4264 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4265 }
4266
4267 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004268}
4269
Evan Chengba05f722006-04-21 23:03:30 +00004270/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004271/// vector of zero or undef vector. This produces a shuffle where the low
4272/// element of V2 is swizzled into the zero/undef vector, landing at element
4273/// 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 +00004274static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004275 bool isZero, bool HasSSE2,
4276 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004277 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004278 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004279 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4280 unsigned NumElems = VT.getVectorNumElements();
4281 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004282 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004283 // If this is the insertion idx, put the low elt of V2 here.
4284 MaskVec.push_back(i == Idx ? NumElems : i);
4285 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004286}
4287
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004288/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4289/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004290static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4291 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004292 if (Depth == 6)
4293 return SDValue(); // Limit search depth.
4294
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004295 SDValue V = SDValue(N, 0);
4296 EVT VT = V.getValueType();
4297 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004298
4299 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4300 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4301 Index = SV->getMaskElt(Index);
4302
4303 if (Index < 0)
4304 return DAG.getUNDEF(VT.getVectorElementType());
4305
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004306 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004307 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004308 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004309 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004310
4311 // Recurse into target specific vector shuffles to find scalars.
4312 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004313 int NumElems = VT.getVectorNumElements();
4314 SmallVector<unsigned, 16> ShuffleMask;
4315 SDValue ImmN;
4316
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004317 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004318 case X86ISD::SHUFPS:
4319 case X86ISD::SHUFPD:
4320 ImmN = N->getOperand(N->getNumOperands()-1);
4321 DecodeSHUFPSMask(NumElems,
4322 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4323 ShuffleMask);
4324 break;
4325 case X86ISD::PUNPCKHBW:
4326 case X86ISD::PUNPCKHWD:
4327 case X86ISD::PUNPCKHDQ:
4328 case X86ISD::PUNPCKHQDQ:
4329 DecodePUNPCKHMask(NumElems, ShuffleMask);
4330 break;
4331 case X86ISD::UNPCKHPS:
4332 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004333 case X86ISD::VUNPCKHPSY:
4334 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004335 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4336 break;
4337 case X86ISD::PUNPCKLBW:
4338 case X86ISD::PUNPCKLWD:
4339 case X86ISD::PUNPCKLDQ:
4340 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004341 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004342 break;
4343 case X86ISD::UNPCKLPS:
4344 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004345 case X86ISD::VUNPCKLPSY:
4346 case X86ISD::VUNPCKLPDY:
4347 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004348 break;
4349 case X86ISD::MOVHLPS:
4350 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4351 break;
4352 case X86ISD::MOVLHPS:
4353 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4354 break;
4355 case X86ISD::PSHUFD:
4356 ImmN = N->getOperand(N->getNumOperands()-1);
4357 DecodePSHUFMask(NumElems,
4358 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4359 ShuffleMask);
4360 break;
4361 case X86ISD::PSHUFHW:
4362 ImmN = N->getOperand(N->getNumOperands()-1);
4363 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4364 ShuffleMask);
4365 break;
4366 case X86ISD::PSHUFLW:
4367 ImmN = N->getOperand(N->getNumOperands()-1);
4368 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4369 ShuffleMask);
4370 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004371 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004372 case X86ISD::MOVSD: {
4373 // The index 0 always comes from the first element of the second source,
4374 // this is why MOVSS and MOVSD are used in the first place. The other
4375 // elements come from the other positions of the first source vector.
4376 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004377 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4378 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004379 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004380 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004381 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004382 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004383 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004384 break;
4385 case X86ISD::VPERMILPSY:
4386 ImmN = N->getOperand(N->getNumOperands()-1);
4387 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4388 ShuffleMask);
4389 break;
4390 case X86ISD::VPERMILPD:
4391 ImmN = N->getOperand(N->getNumOperands()-1);
4392 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4393 ShuffleMask);
4394 break;
4395 case X86ISD::VPERMILPDY:
4396 ImmN = N->getOperand(N->getNumOperands()-1);
4397 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4398 ShuffleMask);
4399 break;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004400 case X86ISD::VPERM2F128:
4401 ImmN = N->getOperand(N->getNumOperands()-1);
4402 DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4403 ShuffleMask);
4404 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004405 default:
4406 assert("not implemented for target shuffle node");
4407 return SDValue();
4408 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004409
4410 Index = ShuffleMask[Index];
4411 if (Index < 0)
4412 return DAG.getUNDEF(VT.getVectorElementType());
4413
4414 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4415 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4416 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004417 }
4418
4419 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004420 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004421 V = V.getOperand(0);
4422 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004423 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004424
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004425 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004426 return SDValue();
4427 }
4428
4429 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4430 return (Index == 0) ? V.getOperand(0)
4431 : DAG.getUNDEF(VT.getVectorElementType());
4432
4433 if (V.getOpcode() == ISD::BUILD_VECTOR)
4434 return V.getOperand(Index);
4435
4436 return SDValue();
4437}
4438
4439/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4440/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004441/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004442static
4443unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4444 bool ZerosFromLeft, SelectionDAG &DAG) {
4445 int i = 0;
4446
4447 while (i < NumElems) {
4448 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004449 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004450 if (!(Elt.getNode() &&
4451 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4452 break;
4453 ++i;
4454 }
4455
4456 return i;
4457}
4458
4459/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4460/// MaskE correspond consecutively to elements from one of the vector operands,
4461/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4462static
4463bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4464 int OpIdx, int NumElems, unsigned &OpNum) {
4465 bool SeenV1 = false;
4466 bool SeenV2 = false;
4467
4468 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4469 int Idx = SVOp->getMaskElt(i);
4470 // Ignore undef indicies
4471 if (Idx < 0)
4472 continue;
4473
4474 if (Idx < NumElems)
4475 SeenV1 = true;
4476 else
4477 SeenV2 = true;
4478
4479 // Only accept consecutive elements from the same vector
4480 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4481 return false;
4482 }
4483
4484 OpNum = SeenV1 ? 0 : 1;
4485 return true;
4486}
4487
4488/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4489/// logical left shift of a vector.
4490static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4491 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4492 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4493 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4494 false /* check zeros from right */, DAG);
4495 unsigned OpSrc;
4496
4497 if (!NumZeros)
4498 return false;
4499
4500 // Considering the elements in the mask that are not consecutive zeros,
4501 // check if they consecutively come from only one of the source vectors.
4502 //
4503 // V1 = {X, A, B, C} 0
4504 // \ \ \ /
4505 // vector_shuffle V1, V2 <1, 2, 3, X>
4506 //
4507 if (!isShuffleMaskConsecutive(SVOp,
4508 0, // Mask Start Index
4509 NumElems-NumZeros-1, // Mask End Index
4510 NumZeros, // Where to start looking in the src vector
4511 NumElems, // Number of elements in vector
4512 OpSrc)) // Which source operand ?
4513 return false;
4514
4515 isLeft = false;
4516 ShAmt = NumZeros;
4517 ShVal = SVOp->getOperand(OpSrc);
4518 return true;
4519}
4520
4521/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4522/// logical left shift of a vector.
4523static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4524 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4525 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4526 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4527 true /* check zeros from left */, DAG);
4528 unsigned OpSrc;
4529
4530 if (!NumZeros)
4531 return false;
4532
4533 // Considering the elements in the mask that are not consecutive zeros,
4534 // check if they consecutively come from only one of the source vectors.
4535 //
4536 // 0 { A, B, X, X } = V2
4537 // / \ / /
4538 // vector_shuffle V1, V2 <X, X, 4, 5>
4539 //
4540 if (!isShuffleMaskConsecutive(SVOp,
4541 NumZeros, // Mask Start Index
4542 NumElems-1, // Mask End Index
4543 0, // Where to start looking in the src vector
4544 NumElems, // Number of elements in vector
4545 OpSrc)) // Which source operand ?
4546 return false;
4547
4548 isLeft = true;
4549 ShAmt = NumZeros;
4550 ShVal = SVOp->getOperand(OpSrc);
4551 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004552}
4553
4554/// isVectorShift - Returns true if the shuffle can be implemented as a
4555/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004556static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004557 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004558 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4559 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4560 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004561
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004562 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004563}
4564
Evan Chengc78d3b42006-04-24 18:01:45 +00004565/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4566///
Dan Gohman475871a2008-07-27 21:46:04 +00004567static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004568 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004569 SelectionDAG &DAG,
4570 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004571 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004572 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004573
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004574 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004575 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004576 bool First = true;
4577 for (unsigned i = 0; i < 16; ++i) {
4578 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4579 if (ThisIsNonZero && First) {
4580 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004581 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004582 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004583 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004584 First = false;
4585 }
4586
4587 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004588 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004589 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4590 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004591 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004592 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004593 }
4594 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004595 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4596 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4597 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004598 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004599 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004600 } else
4601 ThisElt = LastElt;
4602
Gabor Greifba36cb52008-08-28 21:40:38 +00004603 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004604 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004605 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004606 }
4607 }
4608
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004609 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004610}
4611
Bill Wendlinga348c562007-03-22 18:42:45 +00004612/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004613///
Dan Gohman475871a2008-07-27 21:46:04 +00004614static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004615 unsigned NumNonZero, unsigned NumZero,
4616 SelectionDAG &DAG,
4617 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004618 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004619 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004620
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004621 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004622 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004623 bool First = true;
4624 for (unsigned i = 0; i < 8; ++i) {
4625 bool isNonZero = (NonZeros & (1 << i)) != 0;
4626 if (isNonZero) {
4627 if (First) {
4628 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004629 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004630 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004631 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004632 First = false;
4633 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004634 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004635 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004636 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004637 }
4638 }
4639
4640 return V;
4641}
4642
Evan Chengf26ffe92008-05-29 08:22:04 +00004643/// getVShift - Return a vector logical shift node.
4644///
Owen Andersone50ed302009-08-10 22:56:29 +00004645static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004646 unsigned NumBits, SelectionDAG &DAG,
4647 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004648 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004649 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004650 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4651 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004652 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004653 DAG.getConstant(NumBits,
4654 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004655}
4656
Dan Gohman475871a2008-07-27 21:46:04 +00004657SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004658X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004659 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004660
Evan Chengc3630942009-12-09 21:00:30 +00004661 // Check if the scalar load can be widened into a vector load. And if
4662 // the address is "base + cst" see if the cst can be "absorbed" into
4663 // the shuffle mask.
4664 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4665 SDValue Ptr = LD->getBasePtr();
4666 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4667 return SDValue();
4668 EVT PVT = LD->getValueType(0);
4669 if (PVT != MVT::i32 && PVT != MVT::f32)
4670 return SDValue();
4671
4672 int FI = -1;
4673 int64_t Offset = 0;
4674 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4675 FI = FINode->getIndex();
4676 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004677 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004678 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4679 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4680 Offset = Ptr.getConstantOperandVal(1);
4681 Ptr = Ptr.getOperand(0);
4682 } else {
4683 return SDValue();
4684 }
4685
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004686 // FIXME: 256-bit vector instructions don't require a strict alignment,
4687 // improve this code to support it better.
4688 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004689 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004690 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004691 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004692 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004693 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004694 // Can't change the alignment. FIXME: It's possible to compute
4695 // the exact stack offset and reference FI + adjust offset instead.
4696 // If someone *really* cares about this. That's the way to implement it.
4697 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004698 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004699 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004700 }
4701 }
4702
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004703 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004704 // Ptr + (Offset & ~15).
4705 if (Offset < 0)
4706 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004707 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004708 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004709 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004710 if (StartOffset)
4711 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4712 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4713
4714 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004715 int NumElems = VT.getVectorNumElements();
4716
4717 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4718 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4719 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004720 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004721 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004722
4723 // Canonicalize it to a v4i32 or v8i32 shuffle.
4724 SmallVector<int, 8> Mask;
4725 for (int i = 0; i < NumElems; ++i)
4726 Mask.push_back(EltNo);
4727
4728 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4729 return DAG.getNode(ISD::BITCAST, dl, NVT,
4730 DAG.getVectorShuffle(CanonVT, dl, V1,
4731 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004732 }
4733
4734 return SDValue();
4735}
4736
Michael J. Spencerec38de22010-10-10 22:04:20 +00004737/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4738/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004739/// load which has the same value as a build_vector whose operands are 'elts'.
4740///
4741/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004742///
Nate Begeman1449f292010-03-24 22:19:06 +00004743/// FIXME: we'd also like to handle the case where the last elements are zero
4744/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4745/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004746static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004747 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004748 EVT EltVT = VT.getVectorElementType();
4749 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004750
Nate Begemanfdea31a2010-03-24 20:49:50 +00004751 LoadSDNode *LDBase = NULL;
4752 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004753
Nate Begeman1449f292010-03-24 22:19:06 +00004754 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004755 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004756 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004757 for (unsigned i = 0; i < NumElems; ++i) {
4758 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004759
Nate Begemanfdea31a2010-03-24 20:49:50 +00004760 if (!Elt.getNode() ||
4761 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4762 return SDValue();
4763 if (!LDBase) {
4764 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4765 return SDValue();
4766 LDBase = cast<LoadSDNode>(Elt.getNode());
4767 LastLoadedElt = i;
4768 continue;
4769 }
4770 if (Elt.getOpcode() == ISD::UNDEF)
4771 continue;
4772
4773 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4774 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4775 return SDValue();
4776 LastLoadedElt = i;
4777 }
Nate Begeman1449f292010-03-24 22:19:06 +00004778
4779 // If we have found an entire vector of loads and undefs, then return a large
4780 // load of the entire vector width starting at the base pointer. If we found
4781 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004782 if (LastLoadedElt == NumElems - 1) {
4783 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004784 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004785 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004786 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004787 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004788 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004789 LDBase->isVolatile(), LDBase->isNonTemporal(),
4790 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004791 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4792 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004793 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4794 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004795 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4796 Ops, 2, MVT::i32,
4797 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004798 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004799 }
4800 return SDValue();
4801}
4802
Evan Chengc3630942009-12-09 21:00:30 +00004803SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004804X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004805 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004806
David Greenef125a292011-02-08 19:04:41 +00004807 EVT VT = Op.getValueType();
4808 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004809 unsigned NumElems = Op.getNumOperands();
4810
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004811 // Vectors containing all zeros can be matched by pxor and xorps later
4812 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
4813 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
4814 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004815 if (Op.getValueType() == MVT::v4i32 ||
4816 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004817 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004818
Dale Johannesenace16102009-02-03 19:33:06 +00004819 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004820 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004821
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004822 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
4823 // vectors or broken into v4i32 operations on 256-bit vectors.
4824 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
4825 if (Op.getValueType() == MVT::v4i32)
4826 return Op;
4827
4828 return getOnesVector(Op.getValueType(), DAG, dl);
4829 }
4830
Owen Andersone50ed302009-08-10 22:56:29 +00004831 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004832
Evan Cheng0db9fe62006-04-25 20:13:52 +00004833 unsigned NumZero = 0;
4834 unsigned NumNonZero = 0;
4835 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004836 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004837 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004838 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004839 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004840 if (Elt.getOpcode() == ISD::UNDEF)
4841 continue;
4842 Values.insert(Elt);
4843 if (Elt.getOpcode() != ISD::Constant &&
4844 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004845 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004846 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004847 NumZero++;
4848 else {
4849 NonZeros |= (1 << i);
4850 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004851 }
4852 }
4853
Chris Lattner97a2a562010-08-26 05:24:29 +00004854 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4855 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004856 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004857
Chris Lattner67f453a2008-03-09 05:42:06 +00004858 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004859 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004860 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004861 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004862
Chris Lattner62098042008-03-09 01:05:04 +00004863 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4864 // the value are obviously zero, truncate the value to i32 and do the
4865 // insertion that way. Only do this if the value is non-constant or if the
4866 // value is a constant being inserted into element 0. It is cheaper to do
4867 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004868 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004869 (!IsAllConstants || Idx == 0)) {
4870 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004871 // Handle SSE only.
4872 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4873 EVT VecVT = MVT::v4i32;
4874 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004875
Chris Lattner62098042008-03-09 01:05:04 +00004876 // Truncate the value (which may itself be a constant) to i32, and
4877 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004878 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004879 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004880 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4881 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004882
Chris Lattner62098042008-03-09 01:05:04 +00004883 // Now we have our 32-bit value zero extended in the low element of
4884 // a vector. If Idx != 0, swizzle it into place.
4885 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004886 SmallVector<int, 4> Mask;
4887 Mask.push_back(Idx);
4888 for (unsigned i = 1; i != VecElts; ++i)
4889 Mask.push_back(i);
4890 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004891 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004892 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004893 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004894 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004895 }
4896 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004897
Chris Lattner19f79692008-03-08 22:59:52 +00004898 // If we have a constant or non-constant insertion into the low element of
4899 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4900 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004901 // depending on what the source datatype is.
4902 if (Idx == 0) {
4903 if (NumZero == 0) {
4904 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004905 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4906 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004907 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4908 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4909 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4910 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004911 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4912 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004913 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4914 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004915 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4916 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4917 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004918 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004919 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004920 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004921
4922 // Is it a vector logical left shift?
4923 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004924 X86::isZeroNode(Op.getOperand(0)) &&
4925 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004926 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004927 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004928 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004929 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004930 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004931 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004932
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004933 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004934 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004935
Chris Lattner19f79692008-03-08 22:59:52 +00004936 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4937 // is a non-constant being inserted into an element other than the low one,
4938 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4939 // movd/movss) to move this into the low element, then shuffle it into
4940 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004941 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004942 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004943
Evan Cheng0db9fe62006-04-25 20:13:52 +00004944 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004945 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4946 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004947 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004948 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004949 MaskVec.push_back(i == Idx ? 0 : 1);
4950 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004951 }
4952 }
4953
Chris Lattner67f453a2008-03-09 05:42:06 +00004954 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004955 if (Values.size() == 1) {
4956 if (EVTBits == 32) {
4957 // Instead of a shuffle like this:
4958 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4959 // Check if it's possible to issue this instead.
4960 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4961 unsigned Idx = CountTrailingZeros_32(NonZeros);
4962 SDValue Item = Op.getOperand(Idx);
4963 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4964 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4965 }
Dan Gohman475871a2008-07-27 21:46:04 +00004966 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004967 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004968
Dan Gohmana3941172007-07-24 22:55:08 +00004969 // A vector full of immediates; various special cases are already
4970 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004971 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004972 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004973
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004974 // For AVX-length vectors, build the individual 128-bit pieces and use
4975 // shuffles to put them in place.
4976 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4977 SmallVector<SDValue, 32> V;
4978 for (unsigned i = 0; i < NumElems; ++i)
4979 V.push_back(Op.getOperand(i));
4980
4981 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4982
4983 // Build both the lower and upper subvector.
4984 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4985 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4986 NumElems/2);
4987
4988 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00004989 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4990 DAG.getConstant(0, MVT::i32), DAG, dl);
4991 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004992 DAG, dl);
4993 }
4994
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004995 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004996 if (EVTBits == 64) {
4997 if (NumNonZero == 1) {
4998 // One half is zero or undef.
4999 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005000 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005001 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00005002 return getShuffleVectorZeroOrUndef(V2, Idx, true,
5003 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005004 }
Dan Gohman475871a2008-07-27 21:46:04 +00005005 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005006 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005007
5008 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005009 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005010 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00005011 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005012 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005013 }
5014
Bill Wendling826f36f2007-03-28 00:57:11 +00005015 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005016 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00005017 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005018 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005019 }
5020
5021 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005022 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00005023 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005024 if (NumElems == 4 && NumZero > 0) {
5025 for (unsigned i = 0; i < 4; ++i) {
5026 bool isZero = !(NonZeros & (1 << i));
5027 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00005028 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005029 else
Dale Johannesenace16102009-02-03 19:33:06 +00005030 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005031 }
5032
5033 for (unsigned i = 0; i < 2; ++i) {
5034 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5035 default: break;
5036 case 0:
5037 V[i] = V[i*2]; // Must be a zero vector.
5038 break;
5039 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005040 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005041 break;
5042 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005043 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005044 break;
5045 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005046 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005047 break;
5048 }
5049 }
5050
Nate Begeman9008ca62009-04-27 18:41:29 +00005051 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005052 bool Reverse = (NonZeros & 0x3) == 2;
5053 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005054 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005055 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5056 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005057 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5058 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005059 }
5060
Nate Begemanfdea31a2010-03-24 20:49:50 +00005061 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5062 // Check for a build vector of consecutive loads.
5063 for (unsigned i = 0; i < NumElems; ++i)
5064 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005065
Nate Begemanfdea31a2010-03-24 20:49:50 +00005066 // Check for elements which are consecutive loads.
5067 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5068 if (LD.getNode())
5069 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005070
5071 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005072 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005073 SDValue Result;
5074 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5075 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5076 else
5077 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005078
Chris Lattner24faf612010-08-28 17:59:08 +00005079 for (unsigned i = 1; i < NumElems; ++i) {
5080 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5081 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005082 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005083 }
5084 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005085 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005086
Chris Lattner6e80e442010-08-28 17:15:43 +00005087 // Otherwise, expand into a number of unpckl*, start by extending each of
5088 // our (non-undef) elements to the full vector width with the element in the
5089 // bottom slot of the vector (which generates no code for SSE).
5090 for (unsigned i = 0; i < NumElems; ++i) {
5091 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5092 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5093 else
5094 V[i] = DAG.getUNDEF(VT);
5095 }
5096
5097 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005098 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5099 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5100 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005101 unsigned EltStride = NumElems >> 1;
5102 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005103 for (unsigned i = 0; i < EltStride; ++i) {
5104 // If V[i+EltStride] is undef and this is the first round of mixing,
5105 // then it is safe to just drop this shuffle: V[i] is already in the
5106 // right place, the one element (since it's the first round) being
5107 // inserted as undef can be dropped. This isn't safe for successive
5108 // rounds because they will permute elements within both vectors.
5109 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5110 EltStride == NumElems/2)
5111 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005112
Chris Lattner6e80e442010-08-28 17:15:43 +00005113 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005114 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005115 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005116 }
5117 return V[0];
5118 }
Dan Gohman475871a2008-07-27 21:46:04 +00005119 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005120}
5121
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005122// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5123// them in a MMX register. This is better than doing a stack convert.
5124static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005125 DebugLoc dl = Op.getDebugLoc();
5126 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005127
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005128 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5129 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5130 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005131 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005132 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5133 InVec = Op.getOperand(1);
5134 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5135 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005136 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005137 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5138 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5139 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005140 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005141 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5142 Mask[0] = 0; Mask[1] = 2;
5143 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5144 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005145 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005146}
5147
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005148// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5149// to create 256-bit vectors from two other 128-bit ones.
5150static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5151 DebugLoc dl = Op.getDebugLoc();
5152 EVT ResVT = Op.getValueType();
5153
5154 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5155
5156 SDValue V1 = Op.getOperand(0);
5157 SDValue V2 = Op.getOperand(1);
5158 unsigned NumElems = ResVT.getVectorNumElements();
5159
5160 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5161 DAG.getConstant(0, MVT::i32), DAG, dl);
5162 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5163 DAG, dl);
5164}
5165
5166SDValue
5167X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005168 EVT ResVT = Op.getValueType();
5169
5170 assert(Op.getNumOperands() == 2);
5171 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5172 "Unsupported CONCAT_VECTORS for value type");
5173
5174 // We support concatenate two MMX registers and place them in a MMX register.
5175 // This is better than doing a stack convert.
5176 if (ResVT.is128BitVector())
5177 return LowerMMXCONCAT_VECTORS(Op, DAG);
5178
5179 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5180 // from two other 128-bit ones.
5181 return LowerAVXCONCAT_VECTORS(Op, DAG);
5182}
5183
Nate Begemanb9a47b82009-02-23 08:49:38 +00005184// v8i16 shuffles - Prefer shuffles in the following order:
5185// 1. [all] pshuflw, pshufhw, optional move
5186// 2. [ssse3] 1 x pshufb
5187// 3. [ssse3] 2 x pshufb + 1 x por
5188// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005189SDValue
5190X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5191 SelectionDAG &DAG) const {
5192 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005193 SDValue V1 = SVOp->getOperand(0);
5194 SDValue V2 = SVOp->getOperand(1);
5195 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005196 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005197
Nate Begemanb9a47b82009-02-23 08:49:38 +00005198 // Determine if more than 1 of the words in each of the low and high quadwords
5199 // of the result come from the same quadword of one of the two inputs. Undef
5200 // mask values count as coming from any quadword, for better codegen.
5201 SmallVector<unsigned, 4> LoQuad(4);
5202 SmallVector<unsigned, 4> HiQuad(4);
5203 BitVector InputQuads(4);
5204 for (unsigned i = 0; i < 8; ++i) {
5205 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005206 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005207 MaskVals.push_back(EltIdx);
5208 if (EltIdx < 0) {
5209 ++Quad[0];
5210 ++Quad[1];
5211 ++Quad[2];
5212 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005213 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005214 }
5215 ++Quad[EltIdx / 4];
5216 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005217 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005218
Nate Begemanb9a47b82009-02-23 08:49:38 +00005219 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005220 unsigned MaxQuad = 1;
5221 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005222 if (LoQuad[i] > MaxQuad) {
5223 BestLoQuad = i;
5224 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005225 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005226 }
5227
Nate Begemanb9a47b82009-02-23 08:49:38 +00005228 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005229 MaxQuad = 1;
5230 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005231 if (HiQuad[i] > MaxQuad) {
5232 BestHiQuad = i;
5233 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005234 }
5235 }
5236
Nate Begemanb9a47b82009-02-23 08:49:38 +00005237 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005238 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005239 // single pshufb instruction is necessary. If There are more than 2 input
5240 // quads, disable the next transformation since it does not help SSSE3.
5241 bool V1Used = InputQuads[0] || InputQuads[1];
5242 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005243 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005244 if (InputQuads.count() == 2 && V1Used && V2Used) {
5245 BestLoQuad = InputQuads.find_first();
5246 BestHiQuad = InputQuads.find_next(BestLoQuad);
5247 }
5248 if (InputQuads.count() > 2) {
5249 BestLoQuad = -1;
5250 BestHiQuad = -1;
5251 }
5252 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005253
Nate Begemanb9a47b82009-02-23 08:49:38 +00005254 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5255 // the shuffle mask. If a quad is scored as -1, that means that it contains
5256 // words from all 4 input quadwords.
5257 SDValue NewV;
5258 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005259 SmallVector<int, 8> MaskV;
5260 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5261 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005262 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005263 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5264 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5265 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005266
Nate Begemanb9a47b82009-02-23 08:49:38 +00005267 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5268 // source words for the shuffle, to aid later transformations.
5269 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005270 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005271 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005272 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005273 if (idx != (int)i)
5274 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005275 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005276 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005277 AllWordsInNewV = false;
5278 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005279 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005280
Nate Begemanb9a47b82009-02-23 08:49:38 +00005281 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5282 if (AllWordsInNewV) {
5283 for (int i = 0; i != 8; ++i) {
5284 int idx = MaskVals[i];
5285 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005286 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005287 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005288 if ((idx != i) && idx < 4)
5289 pshufhw = false;
5290 if ((idx != i) && idx > 3)
5291 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005292 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005293 V1 = NewV;
5294 V2Used = false;
5295 BestLoQuad = 0;
5296 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005297 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005298
Nate Begemanb9a47b82009-02-23 08:49:38 +00005299 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5300 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005301 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005302 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5303 unsigned TargetMask = 0;
5304 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005305 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005306 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5307 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5308 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005309 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005310 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005311 }
Eric Christopherfd179292009-08-27 18:07:15 +00005312
Nate Begemanb9a47b82009-02-23 08:49:38 +00005313 // If we have SSSE3, and all words of the result are from 1 input vector,
5314 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5315 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005316 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005317 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005318
Nate Begemanb9a47b82009-02-23 08:49:38 +00005319 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005320 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005321 // mask, and elements that come from V1 in the V2 mask, so that the two
5322 // results can be OR'd together.
5323 bool TwoInputs = V1Used && V2Used;
5324 for (unsigned i = 0; i != 8; ++i) {
5325 int EltIdx = MaskVals[i] * 2;
5326 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005327 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5328 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005329 continue;
5330 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005331 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5332 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005333 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005334 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005335 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005336 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005337 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005338 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005339 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005340
Nate Begemanb9a47b82009-02-23 08:49:38 +00005341 // Calculate the shuffle mask for the second input, shuffle it, and
5342 // OR it with the first shuffled input.
5343 pshufbMask.clear();
5344 for (unsigned i = 0; i != 8; ++i) {
5345 int EltIdx = MaskVals[i] * 2;
5346 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005347 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5348 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005349 continue;
5350 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005351 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5352 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005353 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005354 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005355 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005356 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005357 MVT::v16i8, &pshufbMask[0], 16));
5358 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005359 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005360 }
5361
5362 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5363 // and update MaskVals with new element order.
5364 BitVector InOrder(8);
5365 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005366 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005367 for (int i = 0; i != 4; ++i) {
5368 int idx = MaskVals[i];
5369 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005370 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005371 InOrder.set(i);
5372 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005373 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005374 InOrder.set(i);
5375 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005376 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005377 }
5378 }
5379 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005380 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005381 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005382 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005383
5384 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5385 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5386 NewV.getOperand(0),
5387 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5388 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005389 }
Eric Christopherfd179292009-08-27 18:07:15 +00005390
Nate Begemanb9a47b82009-02-23 08:49:38 +00005391 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5392 // and update MaskVals with the new element order.
5393 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005394 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005395 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005396 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005397 for (unsigned i = 4; i != 8; ++i) {
5398 int idx = MaskVals[i];
5399 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005400 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005401 InOrder.set(i);
5402 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005403 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005404 InOrder.set(i);
5405 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005406 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005407 }
5408 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005409 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005410 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005411
5412 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5413 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5414 NewV.getOperand(0),
5415 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5416 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005417 }
Eric Christopherfd179292009-08-27 18:07:15 +00005418
Nate Begemanb9a47b82009-02-23 08:49:38 +00005419 // In case BestHi & BestLo were both -1, which means each quadword has a word
5420 // from each of the four input quadwords, calculate the InOrder bitvector now
5421 // before falling through to the insert/extract cleanup.
5422 if (BestLoQuad == -1 && BestHiQuad == -1) {
5423 NewV = V1;
5424 for (int i = 0; i != 8; ++i)
5425 if (MaskVals[i] < 0 || MaskVals[i] == i)
5426 InOrder.set(i);
5427 }
Eric Christopherfd179292009-08-27 18:07:15 +00005428
Nate Begemanb9a47b82009-02-23 08:49:38 +00005429 // The other elements are put in the right place using pextrw and pinsrw.
5430 for (unsigned i = 0; i != 8; ++i) {
5431 if (InOrder[i])
5432 continue;
5433 int EltIdx = MaskVals[i];
5434 if (EltIdx < 0)
5435 continue;
5436 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005437 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005438 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005439 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005440 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005441 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005442 DAG.getIntPtrConstant(i));
5443 }
5444 return NewV;
5445}
5446
5447// v16i8 shuffles - Prefer shuffles in the following order:
5448// 1. [ssse3] 1 x pshufb
5449// 2. [ssse3] 2 x pshufb + 1 x por
5450// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5451static
Nate Begeman9008ca62009-04-27 18:41:29 +00005452SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005453 SelectionDAG &DAG,
5454 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005455 SDValue V1 = SVOp->getOperand(0);
5456 SDValue V2 = SVOp->getOperand(1);
5457 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005458 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005459 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005460
Nate Begemanb9a47b82009-02-23 08:49:38 +00005461 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005462 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005463 // present, fall back to case 3.
5464 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5465 bool V1Only = true;
5466 bool V2Only = true;
5467 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005468 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005469 if (EltIdx < 0)
5470 continue;
5471 if (EltIdx < 16)
5472 V2Only = false;
5473 else
5474 V1Only = false;
5475 }
Eric Christopherfd179292009-08-27 18:07:15 +00005476
Nate Begemanb9a47b82009-02-23 08:49:38 +00005477 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5478 if (TLI.getSubtarget()->hasSSSE3()) {
5479 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005480
Nate Begemanb9a47b82009-02-23 08:49:38 +00005481 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005482 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005483 //
5484 // Otherwise, we have elements from both input vectors, and must zero out
5485 // elements that come from V2 in the first mask, and V1 in the second mask
5486 // so that we can OR them together.
5487 bool TwoInputs = !(V1Only || V2Only);
5488 for (unsigned i = 0; i != 16; ++i) {
5489 int EltIdx = MaskVals[i];
5490 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005491 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005492 continue;
5493 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005494 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005495 }
5496 // If all the elements are from V2, assign it to V1 and return after
5497 // building the first pshufb.
5498 if (V2Only)
5499 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005500 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005501 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005502 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005503 if (!TwoInputs)
5504 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005505
Nate Begemanb9a47b82009-02-23 08:49:38 +00005506 // Calculate the shuffle mask for the second input, shuffle it, and
5507 // OR it with the first shuffled input.
5508 pshufbMask.clear();
5509 for (unsigned i = 0; i != 16; ++i) {
5510 int EltIdx = MaskVals[i];
5511 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005512 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005513 continue;
5514 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005515 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005516 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005517 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005518 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005519 MVT::v16i8, &pshufbMask[0], 16));
5520 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005521 }
Eric Christopherfd179292009-08-27 18:07:15 +00005522
Nate Begemanb9a47b82009-02-23 08:49:38 +00005523 // No SSSE3 - Calculate in place words and then fix all out of place words
5524 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5525 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005526 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5527 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005528 SDValue NewV = V2Only ? V2 : V1;
5529 for (int i = 0; i != 8; ++i) {
5530 int Elt0 = MaskVals[i*2];
5531 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005532
Nate Begemanb9a47b82009-02-23 08:49:38 +00005533 // This word of the result is all undef, skip it.
5534 if (Elt0 < 0 && Elt1 < 0)
5535 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005536
Nate Begemanb9a47b82009-02-23 08:49:38 +00005537 // This word of the result is already in the correct place, skip it.
5538 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5539 continue;
5540 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5541 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005542
Nate Begemanb9a47b82009-02-23 08:49:38 +00005543 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5544 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5545 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005546
5547 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5548 // using a single extract together, load it and store it.
5549 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005550 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005551 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005552 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005553 DAG.getIntPtrConstant(i));
5554 continue;
5555 }
5556
Nate Begemanb9a47b82009-02-23 08:49:38 +00005557 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005558 // source byte is not also odd, shift the extracted word left 8 bits
5559 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005560 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005561 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005562 DAG.getIntPtrConstant(Elt1 / 2));
5563 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005564 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005565 DAG.getConstant(8,
5566 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005567 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005568 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5569 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005570 }
5571 // If Elt0 is defined, extract it from the appropriate source. If the
5572 // source byte is not also even, shift the extracted word right 8 bits. If
5573 // Elt1 was also defined, OR the extracted values together before
5574 // inserting them in the result.
5575 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005576 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005577 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5578 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005579 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005580 DAG.getConstant(8,
5581 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005582 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005583 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5584 DAG.getConstant(0x00FF, MVT::i16));
5585 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005586 : InsElt0;
5587 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005588 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005589 DAG.getIntPtrConstant(i));
5590 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005591 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005592}
5593
Evan Cheng7a831ce2007-12-15 03:00:47 +00005594/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005595/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005596/// done when every pair / quad of shuffle mask elements point to elements in
5597/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005598/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005599static
Nate Begeman9008ca62009-04-27 18:41:29 +00005600SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005601 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005602 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005603 SDValue V1 = SVOp->getOperand(0);
5604 SDValue V2 = SVOp->getOperand(1);
5605 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005606 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005607 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005608 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005609 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005610 case MVT::v4f32: NewVT = MVT::v2f64; break;
5611 case MVT::v4i32: NewVT = MVT::v2i64; break;
5612 case MVT::v8i16: NewVT = MVT::v4i32; break;
5613 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005614 }
5615
Nate Begeman9008ca62009-04-27 18:41:29 +00005616 int Scale = NumElems / NewWidth;
5617 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005618 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005619 int StartIdx = -1;
5620 for (int j = 0; j < Scale; ++j) {
5621 int EltIdx = SVOp->getMaskElt(i+j);
5622 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005623 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005624 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005625 StartIdx = EltIdx - (EltIdx % Scale);
5626 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005627 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005628 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005629 if (StartIdx == -1)
5630 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005631 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005632 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005633 }
5634
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005635 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5636 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005637 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005638}
5639
Evan Chengd880b972008-05-09 21:53:03 +00005640/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005641///
Owen Andersone50ed302009-08-10 22:56:29 +00005642static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005643 SDValue SrcOp, SelectionDAG &DAG,
5644 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005645 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005646 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005647 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005648 LD = dyn_cast<LoadSDNode>(SrcOp);
5649 if (!LD) {
5650 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5651 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005652 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005653 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005654 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005655 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005656 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005657 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005658 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005659 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005660 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5661 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5662 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005663 SrcOp.getOperand(0)
5664 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005665 }
5666 }
5667 }
5668
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005669 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005670 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005671 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005672 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005673}
5674
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005675/// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
5676/// shuffle node referes to only one lane in the sources.
5677static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
5678 EVT VT = SVOp->getValueType(0);
5679 int NumElems = VT.getVectorNumElements();
5680 int HalfSize = NumElems/2;
5681 SmallVector<int, 16> M;
5682 SVOp->getMask(M);
5683 bool MatchA = false, MatchB = false;
5684
5685 for (int l = 0; l < NumElems*2; l += HalfSize) {
5686 if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
5687 MatchA = true;
5688 break;
5689 }
5690 }
5691
5692 for (int l = 0; l < NumElems*2; l += HalfSize) {
5693 if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
5694 MatchB = true;
5695 break;
5696 }
5697 }
5698
5699 return MatchA && MatchB;
5700}
5701
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005702/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5703/// which could not be matched by any known target speficic shuffle
5704static SDValue
5705LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005706 if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
5707 // If each half of a vector shuffle node referes to only one lane in the
5708 // source vectors, extract each used 128-bit lane and shuffle them using
5709 // 128-bit shuffles. Then, concatenate the results. Otherwise leave
5710 // the work to the legalizer.
5711 DebugLoc dl = SVOp->getDebugLoc();
5712 EVT VT = SVOp->getValueType(0);
5713 int NumElems = VT.getVectorNumElements();
5714 int HalfSize = NumElems/2;
5715
5716 // Extract the reference for each half
5717 int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
5718 int FstVecOpNum = 0, SndVecOpNum = 0;
5719 for (int i = 0; i < HalfSize; ++i) {
5720 int Elt = SVOp->getMaskElt(i);
5721 if (SVOp->getMaskElt(i) < 0)
5722 continue;
5723 FstVecOpNum = Elt/NumElems;
5724 FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5725 break;
5726 }
5727 for (int i = HalfSize; i < NumElems; ++i) {
5728 int Elt = SVOp->getMaskElt(i);
5729 if (SVOp->getMaskElt(i) < 0)
5730 continue;
5731 SndVecOpNum = Elt/NumElems;
5732 SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5733 break;
5734 }
5735
5736 // Extract the subvectors
5737 SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
5738 DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
5739 SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
5740 DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
5741
5742 // Generate 128-bit shuffles
5743 SmallVector<int, 16> MaskV1, MaskV2;
5744 for (int i = 0; i < HalfSize; ++i) {
5745 int Elt = SVOp->getMaskElt(i);
5746 MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5747 }
5748 for (int i = HalfSize; i < NumElems; ++i) {
5749 int Elt = SVOp->getMaskElt(i);
5750 MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5751 }
5752
5753 EVT NVT = V1.getValueType();
5754 V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
5755 V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
5756
5757 // Concatenate the result back
5758 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
5759 DAG.getConstant(0, MVT::i32), DAG, dl);
5760 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5761 DAG, dl);
5762 }
5763
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005764 return SDValue();
5765}
5766
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005767/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5768/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005769static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005770LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005771 SDValue V1 = SVOp->getOperand(0);
5772 SDValue V2 = SVOp->getOperand(1);
5773 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005774 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005775
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005776 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5777
Evan Chengace3c172008-07-22 21:13:36 +00005778 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005779 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005780 SmallVector<int, 8> Mask1(4U, -1);
5781 SmallVector<int, 8> PermMask;
5782 SVOp->getMask(PermMask);
5783
Evan Chengace3c172008-07-22 21:13:36 +00005784 unsigned NumHi = 0;
5785 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005786 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005787 int Idx = PermMask[i];
5788 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005789 Locs[i] = std::make_pair(-1, -1);
5790 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005791 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5792 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005793 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005794 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005795 NumLo++;
5796 } else {
5797 Locs[i] = std::make_pair(1, NumHi);
5798 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005799 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005800 NumHi++;
5801 }
5802 }
5803 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005804
Evan Chengace3c172008-07-22 21:13:36 +00005805 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005806 // If no more than two elements come from either vector. This can be
5807 // implemented with two shuffles. First shuffle gather the elements.
5808 // The second shuffle, which takes the first shuffle as both of its
5809 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005810 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005811
Nate Begeman9008ca62009-04-27 18:41:29 +00005812 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005813
Evan Chengace3c172008-07-22 21:13:36 +00005814 for (unsigned i = 0; i != 4; ++i) {
5815 if (Locs[i].first == -1)
5816 continue;
5817 else {
5818 unsigned Idx = (i < 2) ? 0 : 4;
5819 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005820 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005821 }
5822 }
5823
Nate Begeman9008ca62009-04-27 18:41:29 +00005824 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005825 } else if (NumLo == 3 || NumHi == 3) {
5826 // Otherwise, we must have three elements from one vector, call it X, and
5827 // one element from the other, call it Y. First, use a shufps to build an
5828 // intermediate vector with the one element from Y and the element from X
5829 // that will be in the same half in the final destination (the indexes don't
5830 // matter). Then, use a shufps to build the final vector, taking the half
5831 // containing the element from Y from the intermediate, and the other half
5832 // from X.
5833 if (NumHi == 3) {
5834 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005835 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005836 std::swap(V1, V2);
5837 }
5838
5839 // Find the element from V2.
5840 unsigned HiIndex;
5841 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005842 int Val = PermMask[HiIndex];
5843 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005844 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005845 if (Val >= 4)
5846 break;
5847 }
5848
Nate Begeman9008ca62009-04-27 18:41:29 +00005849 Mask1[0] = PermMask[HiIndex];
5850 Mask1[1] = -1;
5851 Mask1[2] = PermMask[HiIndex^1];
5852 Mask1[3] = -1;
5853 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005854
5855 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005856 Mask1[0] = PermMask[0];
5857 Mask1[1] = PermMask[1];
5858 Mask1[2] = HiIndex & 1 ? 6 : 4;
5859 Mask1[3] = HiIndex & 1 ? 4 : 6;
5860 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005861 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005862 Mask1[0] = HiIndex & 1 ? 2 : 0;
5863 Mask1[1] = HiIndex & 1 ? 0 : 2;
5864 Mask1[2] = PermMask[2];
5865 Mask1[3] = PermMask[3];
5866 if (Mask1[2] >= 0)
5867 Mask1[2] += 4;
5868 if (Mask1[3] >= 0)
5869 Mask1[3] += 4;
5870 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005871 }
Evan Chengace3c172008-07-22 21:13:36 +00005872 }
5873
5874 // Break it into (shuffle shuffle_hi, shuffle_lo).
5875 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005876 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005877 SmallVector<int,8> LoMask(4U, -1);
5878 SmallVector<int,8> HiMask(4U, -1);
5879
5880 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005881 unsigned MaskIdx = 0;
5882 unsigned LoIdx = 0;
5883 unsigned HiIdx = 2;
5884 for (unsigned i = 0; i != 4; ++i) {
5885 if (i == 2) {
5886 MaskPtr = &HiMask;
5887 MaskIdx = 1;
5888 LoIdx = 0;
5889 HiIdx = 2;
5890 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005891 int Idx = PermMask[i];
5892 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005893 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005894 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005895 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005896 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005897 LoIdx++;
5898 } else {
5899 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005900 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005901 HiIdx++;
5902 }
5903 }
5904
Nate Begeman9008ca62009-04-27 18:41:29 +00005905 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5906 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5907 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005908 for (unsigned i = 0; i != 4; ++i) {
5909 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005910 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005911 } else {
5912 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005913 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005914 }
5915 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005916 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005917}
5918
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005919static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005920 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005921 V = V.getOperand(0);
5922 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5923 V = V.getOperand(0);
5924 if (MayFoldLoad(V))
5925 return true;
5926 return false;
5927}
5928
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005929// FIXME: the version above should always be used. Since there's
5930// a bug where several vector shuffles can't be folded because the
5931// DAG is not updated during lowering and a node claims to have two
5932// uses while it only has one, use this version, and let isel match
5933// another instruction if the load really happens to have more than
5934// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005935// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005936static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005937 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005938 V = V.getOperand(0);
5939 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5940 V = V.getOperand(0);
5941 if (ISD::isNormalLoad(V.getNode()))
5942 return true;
5943 return false;
5944}
5945
5946/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5947/// a vector extract, and if both can be later optimized into a single load.
5948/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5949/// here because otherwise a target specific shuffle node is going to be
5950/// emitted for this shuffle, and the optimization not done.
5951/// FIXME: This is probably not the best approach, but fix the problem
5952/// until the right path is decided.
5953static
5954bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5955 const TargetLowering &TLI) {
5956 EVT VT = V.getValueType();
5957 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5958
5959 // Be sure that the vector shuffle is present in a pattern like this:
5960 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5961 if (!V.hasOneUse())
5962 return false;
5963
5964 SDNode *N = *V.getNode()->use_begin();
5965 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5966 return false;
5967
5968 SDValue EltNo = N->getOperand(1);
5969 if (!isa<ConstantSDNode>(EltNo))
5970 return false;
5971
5972 // If the bit convert changed the number of elements, it is unsafe
5973 // to examine the mask.
5974 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005975 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005976 EVT SrcVT = V.getOperand(0).getValueType();
5977 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5978 return false;
5979 V = V.getOperand(0);
5980 HasShuffleIntoBitcast = true;
5981 }
5982
5983 // Select the input vector, guarding against out of range extract vector.
5984 unsigned NumElems = VT.getVectorNumElements();
5985 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5986 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5987 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5988
5989 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005990 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005991 V = V.getOperand(0);
5992
5993 if (ISD::isNormalLoad(V.getNode())) {
5994 // Is the original load suitable?
5995 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5996
5997 // FIXME: avoid the multi-use bug that is preventing lots of
5998 // of foldings to be detected, this is still wrong of course, but
5999 // give the temporary desired behavior, and if it happens that
6000 // the load has real more uses, during isel it will not fold, and
6001 // will generate poor code.
6002 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
6003 return false;
6004
6005 if (!HasShuffleIntoBitcast)
6006 return true;
6007
6008 // If there's a bitcast before the shuffle, check if the load type and
6009 // alignment is valid.
6010 unsigned Align = LN0->getAlignment();
6011 unsigned NewAlign =
6012 TLI.getTargetData()->getABITypeAlignment(
6013 VT.getTypeForEVT(*DAG.getContext()));
6014
6015 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
6016 return false;
6017 }
6018
6019 return true;
6020}
6021
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006022static
Evan Cheng835580f2010-10-07 20:50:20 +00006023SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6024 EVT VT = Op.getValueType();
6025
6026 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006027 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6028 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006029 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6030 V1, DAG));
6031}
6032
6033static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006034SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6035 bool HasSSE2) {
6036 SDValue V1 = Op.getOperand(0);
6037 SDValue V2 = Op.getOperand(1);
6038 EVT VT = Op.getValueType();
6039
6040 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6041
6042 if (HasSSE2 && VT == MVT::v2f64)
6043 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6044
6045 // v4f32 or v4i32
6046 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
6047}
6048
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006049static
6050SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6051 SDValue V1 = Op.getOperand(0);
6052 SDValue V2 = Op.getOperand(1);
6053 EVT VT = Op.getValueType();
6054
6055 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6056 "unsupported shuffle type");
6057
6058 if (V2.getOpcode() == ISD::UNDEF)
6059 V2 = V1;
6060
6061 // v4i32 or v4f32
6062 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6063}
6064
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006065static
6066SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6067 SDValue V1 = Op.getOperand(0);
6068 SDValue V2 = Op.getOperand(1);
6069 EVT VT = Op.getValueType();
6070 unsigned NumElems = VT.getVectorNumElements();
6071
6072 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6073 // operand of these instructions is only memory, so check if there's a
6074 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6075 // same masks.
6076 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006077
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006078 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006079 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006080 CanFoldLoad = true;
6081
6082 // When V1 is a load, it can be folded later into a store in isel, example:
6083 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6084 // turns into:
6085 // (MOVLPSmr addr:$src1, VR128:$src2)
6086 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006087 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006088 CanFoldLoad = true;
6089
Eric Christopher893a8822011-02-20 05:04:42 +00006090 // Both of them can't be memory operations though.
6091 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
6092 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00006093
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006094 if (CanFoldLoad) {
6095 if (HasSSE2 && NumElems == 2)
6096 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6097
6098 if (NumElems == 4)
6099 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6100 }
6101
6102 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6103 // movl and movlp will both match v2i64, but v2i64 is never matched by
6104 // movl earlier because we make it strict to avoid messing with the movlp load
6105 // folding logic (see the code above getMOVLP call). Match it here then,
6106 // this is horrible, but will stay like this until we move all shuffle
6107 // matching to x86 specific nodes. Note that for the 1st condition all
6108 // types are matched with movsd.
6109 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
6110 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6111 else if (HasSSE2)
6112 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6113
6114
6115 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6116
6117 // Invert the operand order and use SHUFPS to match it.
6118 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
6119 X86::getShuffleSHUFImmediate(SVOp), DAG);
6120}
6121
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006122static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006123 switch(VT.getSimpleVT().SimpleTy) {
6124 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
6125 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006126 case MVT::v4f32: return X86ISD::UNPCKLPS;
6127 case MVT::v2f64: return X86ISD::UNPCKLPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006128 case MVT::v8i32: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006129 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006130 case MVT::v4i64: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006131 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006132 case MVT::v16i8: return X86ISD::PUNPCKLBW;
6133 case MVT::v8i16: return X86ISD::PUNPCKLWD;
6134 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006135 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006136 }
6137 return 0;
6138}
6139
6140static inline unsigned getUNPCKHOpcode(EVT VT) {
6141 switch(VT.getSimpleVT().SimpleTy) {
6142 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
6143 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
6144 case MVT::v4f32: return X86ISD::UNPCKHPS;
6145 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006146 case MVT::v8i32: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006147 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006148 case MVT::v4i64: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006149 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006150 case MVT::v16i8: return X86ISD::PUNPCKHBW;
6151 case MVT::v8i16: return X86ISD::PUNPCKHWD;
6152 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006153 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006154 }
6155 return 0;
6156}
6157
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006158static inline unsigned getVPERMILOpcode(EVT VT) {
6159 switch(VT.getSimpleVT().SimpleTy) {
6160 case MVT::v4i32:
6161 case MVT::v4f32: return X86ISD::VPERMILPS;
6162 case MVT::v2i64:
6163 case MVT::v2f64: return X86ISD::VPERMILPD;
6164 case MVT::v8i32:
6165 case MVT::v8f32: return X86ISD::VPERMILPSY;
6166 case MVT::v4i64:
6167 case MVT::v4f64: return X86ISD::VPERMILPDY;
6168 default:
6169 llvm_unreachable("Unknown type for vpermil");
6170 }
6171 return 0;
6172}
6173
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006174/// isVectorBroadcast - Check if the node chain is suitable to be xformed to
6175/// a vbroadcast node. The nodes are suitable whenever we can fold a load coming
6176/// from a 32 or 64 bit scalar. Update Op to the desired load to be folded.
6177static bool isVectorBroadcast(SDValue &Op) {
6178 EVT VT = Op.getValueType();
6179 bool Is256 = VT.getSizeInBits() == 256;
6180
6181 assert((VT.getSizeInBits() == 128 || Is256) &&
6182 "Unsupported type for vbroadcast node");
6183
6184 SDValue V = Op;
6185 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6186 V = V.getOperand(0);
6187
6188 if (Is256 && !(V.hasOneUse() &&
6189 V.getOpcode() == ISD::INSERT_SUBVECTOR &&
6190 V.getOperand(0).getOpcode() == ISD::UNDEF))
6191 return false;
6192
6193 if (Is256)
6194 V = V.getOperand(1);
6195 if (V.hasOneUse() && V.getOpcode() != ISD::SCALAR_TO_VECTOR)
6196 return false;
6197
6198 // Check the source scalar_to_vector type. 256-bit broadcasts are
6199 // supported for 32/64-bit sizes, while 128-bit ones are only supported
6200 // for 32-bit scalars.
6201 unsigned ScalarSize = V.getOperand(0).getValueType().getSizeInBits();
6202 if (ScalarSize != 32 && ScalarSize != 64)
6203 return false;
6204 if (!Is256 && ScalarSize == 64)
6205 return false;
6206
6207 V = V.getOperand(0);
6208 if (!MayFoldLoad(V))
6209 return false;
6210
6211 // Return the load node
6212 Op = V;
6213 return true;
6214}
6215
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006216static
6217SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006218 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006219 const X86Subtarget *Subtarget) {
6220 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6221 EVT VT = Op.getValueType();
6222 DebugLoc dl = Op.getDebugLoc();
6223 SDValue V1 = Op.getOperand(0);
6224 SDValue V2 = Op.getOperand(1);
6225
6226 if (isZeroShuffle(SVOp))
6227 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
6228
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006229 // Handle splat operations
6230 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006231 unsigned NumElem = VT.getVectorNumElements();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006232 int Size = VT.getSizeInBits();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006233 // Special case, this is the only place now where it's allowed to return
6234 // a vector_shuffle operation without using a target specific node, because
6235 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6236 // this be moved to DAGCombine instead?
6237 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006238 return Op;
6239
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006240 // Use vbroadcast whenever the splat comes from a foldable load
6241 if (Subtarget->hasAVX() && isVectorBroadcast(V1))
6242 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, V1);
6243
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006244 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006245 if ((Size == 128 && NumElem <= 4) ||
6246 (Size == 256 && NumElem < 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006247 return SDValue();
6248
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006249 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006250 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006251 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006252
6253 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6254 // do it!
6255 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6256 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6257 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006258 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006259 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6260 // FIXME: Figure out a cleaner way to do this.
6261 // Try to make use of movq to zero out the top part.
6262 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6263 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6264 if (NewOp.getNode()) {
6265 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6266 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6267 DAG, Subtarget, dl);
6268 }
6269 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6270 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6271 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6272 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6273 DAG, Subtarget, dl);
6274 }
6275 }
6276 return SDValue();
6277}
6278
Dan Gohman475871a2008-07-27 21:46:04 +00006279SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006280X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006281 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006282 SDValue V1 = Op.getOperand(0);
6283 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006284 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006285 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006286 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006287 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006288 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6289 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006290 bool V1IsSplat = false;
6291 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006292 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006293 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006294 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006295 MachineFunction &MF = DAG.getMachineFunction();
6296 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006297
Dale Johannesen0488fb62010-09-30 23:57:10 +00006298 // Shuffle operations on MMX not supported.
6299 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006300 return Op;
6301
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006302 // Vector shuffle lowering takes 3 steps:
6303 //
6304 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6305 // narrowing and commutation of operands should be handled.
6306 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6307 // shuffle nodes.
6308 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6309 // so the shuffle can be broken into other shuffles and the legalizer can
6310 // try the lowering again.
6311 //
6312 // The general ideia is that no vector_shuffle operation should be left to
6313 // be matched during isel, all of them must be converted to a target specific
6314 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006315
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006316 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6317 // narrowing and commutation of operands should be handled. The actual code
6318 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006319 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006320 if (NewOp.getNode())
6321 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006322
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006323 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6324 // unpckh_undef). Only use pshufd if speed is more important than size.
6325 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006326 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006327 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006328 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006329
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006330 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006331 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006332 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006333
Dale Johannesen0488fb62010-09-30 23:57:10 +00006334 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006335 return getMOVHighToLow(Op, dl, DAG);
6336
6337 // Use to match splats
6338 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6339 (VT == MVT::v2f64 || VT == MVT::v2i64))
6340 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6341
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006342 if (X86::isPSHUFDMask(SVOp)) {
6343 // The actual implementation will match the mask in the if above and then
6344 // during isel it can match several different instructions, not only pshufd
6345 // as its name says, sad but true, emulate the behavior for now...
6346 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6347 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6348
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006349 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6350
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006351 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006352 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6353
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006354 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006355 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6356 TargetMask, DAG);
6357
6358 if (VT == MVT::v4f32)
6359 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6360 TargetMask, DAG);
6361 }
Eric Christopherfd179292009-08-27 18:07:15 +00006362
Evan Chengf26ffe92008-05-29 08:22:04 +00006363 // Check if this can be converted into a logical shift.
6364 bool isLeft = false;
6365 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006366 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006367 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006368 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006369 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006370 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006371 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006372 EVT EltVT = VT.getVectorElementType();
6373 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006374 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006375 }
Eric Christopherfd179292009-08-27 18:07:15 +00006376
Nate Begeman9008ca62009-04-27 18:41:29 +00006377 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006378 if (V1IsUndef)
6379 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006380 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006381 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006382 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006383 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006384 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6385
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006386 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006387 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6388 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006389 }
Eric Christopherfd179292009-08-27 18:07:15 +00006390
Nate Begeman9008ca62009-04-27 18:41:29 +00006391 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006392 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6393 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006394
Dale Johannesen0488fb62010-09-30 23:57:10 +00006395 if (X86::isMOVHLPSMask(SVOp))
6396 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006397
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006398 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006399 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006400
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006401 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006402 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006403
Dale Johannesen0488fb62010-09-30 23:57:10 +00006404 if (X86::isMOVLPMask(SVOp))
6405 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006406
Nate Begeman9008ca62009-04-27 18:41:29 +00006407 if (ShouldXformToMOVHLPS(SVOp) ||
6408 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6409 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006410
Evan Chengf26ffe92008-05-29 08:22:04 +00006411 if (isShift) {
6412 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006413 EVT EltVT = VT.getVectorElementType();
6414 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006415 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006416 }
Eric Christopherfd179292009-08-27 18:07:15 +00006417
Evan Cheng9eca5e82006-10-25 21:49:50 +00006418 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006419 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6420 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006421 V1IsSplat = isSplatVector(V1.getNode());
6422 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006423
Chris Lattner8a594482007-11-25 00:24:49 +00006424 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006425 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006426 Op = CommuteVectorShuffle(SVOp, DAG);
6427 SVOp = cast<ShuffleVectorSDNode>(Op);
6428 V1 = SVOp->getOperand(0);
6429 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006430 std::swap(V1IsSplat, V2IsSplat);
6431 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006432 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006433 }
6434
Nate Begeman9008ca62009-04-27 18:41:29 +00006435 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6436 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006437 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006438 return V1;
6439 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6440 // the instruction selector will not match, so get a canonical MOVL with
6441 // swapped operands to undo the commute.
6442 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006443 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006444
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006445 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006446 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006447
6448 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006449 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006450
Evan Cheng9bbbb982006-10-25 20:48:19 +00006451 if (V2IsSplat) {
6452 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006453 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006454 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006455 SDValue NewMask = NormalizeMask(SVOp, DAG);
6456 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6457 if (NSVOp != SVOp) {
6458 if (X86::isUNPCKLMask(NSVOp, true)) {
6459 return NewMask;
6460 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6461 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006462 }
6463 }
6464 }
6465
Evan Cheng9eca5e82006-10-25 21:49:50 +00006466 if (Commuted) {
6467 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006468 // FIXME: this seems wrong.
6469 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6470 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006471
6472 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006473 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006474
6475 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006476 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006477 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006478
Nate Begeman9008ca62009-04-27 18:41:29 +00006479 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006480 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006481 return CommuteVectorShuffle(SVOp, DAG);
6482
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006483 // The checks below are all present in isShuffleMaskLegal, but they are
6484 // inlined here right now to enable us to directly emit target specific
6485 // nodes, and remove one by one until they don't return Op anymore.
6486 SmallVector<int, 16> M;
6487 SVOp->getMask(M);
6488
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006489 if (isPALIGNRMask(M, VT, HasSSSE3))
6490 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6491 X86::getShufflePALIGNRImmediate(SVOp),
6492 DAG);
6493
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006494 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6495 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006496 if (VT == MVT::v2f64)
6497 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006498 if (VT == MVT::v2i64)
6499 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6500 }
6501
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006502 if (isPSHUFHWMask(M, VT))
6503 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6504 X86::getShufflePSHUFHWImmediate(SVOp),
6505 DAG);
6506
6507 if (isPSHUFLWMask(M, VT))
6508 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6509 X86::getShufflePSHUFLWImmediate(SVOp),
6510 DAG);
6511
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006512 if (isSHUFPMask(M, VT)) {
6513 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6514 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6515 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6516 TargetMask, DAG);
6517 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6518 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6519 TargetMask, DAG);
6520 }
6521
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006522 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006523 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006524 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006525 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006526
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006527 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006528 // Generate target specific nodes for 128 or 256-bit shuffles only
6529 // supported in the AVX instruction set.
6530 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006531
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006532 // Handle VPERMILPS* permutations
6533 if (isVPERMILPSMask(M, VT, Subtarget))
6534 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6535 getShuffleVPERMILPSImmediate(SVOp), DAG);
6536
6537 // Handle VPERMILPD* permutations
6538 if (isVPERMILPDMask(M, VT, Subtarget))
6539 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6540 getShuffleVPERMILPDImmediate(SVOp), DAG);
6541
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00006542 // Handle VPERM2F128 permutations
6543 if (isVPERM2F128Mask(M, VT, Subtarget))
6544 return getTargetShuffleNode(X86ISD::VPERM2F128, dl, VT, V1, V2,
6545 getShuffleVPERM2F128Immediate(SVOp), DAG);
6546
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006547 //===--------------------------------------------------------------------===//
6548 // Since no target specific shuffle was selected for this generic one,
6549 // lower it into other known shuffles. FIXME: this isn't true yet, but
6550 // this is the plan.
6551 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006552
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006553 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6554 if (VT == MVT::v8i16) {
6555 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6556 if (NewOp.getNode())
6557 return NewOp;
6558 }
6559
6560 if (VT == MVT::v16i8) {
6561 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6562 if (NewOp.getNode())
6563 return NewOp;
6564 }
6565
6566 // Handle all 128-bit wide vectors with 4 elements, and match them with
6567 // several different shuffle types.
6568 if (NumElems == 4 && VT.getSizeInBits() == 128)
6569 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6570
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006571 // Handle general 256-bit shuffles
6572 if (VT.is256BitVector())
6573 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6574
Dan Gohman475871a2008-07-27 21:46:04 +00006575 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006576}
6577
Dan Gohman475871a2008-07-27 21:46:04 +00006578SDValue
6579X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006580 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006581 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006582 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006583
6584 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6585 return SDValue();
6586
Duncan Sands83ec4b62008-06-06 12:08:01 +00006587 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006588 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006589 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006590 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006591 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006592 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006593 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006594 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6595 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6596 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006597 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6598 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006599 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006600 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006601 Op.getOperand(0)),
6602 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006603 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006604 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006605 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006606 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006607 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006608 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006609 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6610 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006611 // result has a single use which is a store or a bitcast to i32. And in
6612 // the case of a store, it's not worth it if the index is a constant 0,
6613 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006614 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006615 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006616 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006617 if ((User->getOpcode() != ISD::STORE ||
6618 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6619 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006620 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006621 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006622 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006623 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006624 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006625 Op.getOperand(0)),
6626 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006627 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006628 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006629 // ExtractPS works with constant index.
6630 if (isa<ConstantSDNode>(Op.getOperand(1)))
6631 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006632 }
Dan Gohman475871a2008-07-27 21:46:04 +00006633 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006634}
6635
6636
Dan Gohman475871a2008-07-27 21:46:04 +00006637SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006638X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6639 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006640 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006641 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006642
David Greene74a579d2011-02-10 16:57:36 +00006643 SDValue Vec = Op.getOperand(0);
6644 EVT VecVT = Vec.getValueType();
6645
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006646 // If this is a 256-bit vector result, first extract the 128-bit vector and
6647 // then extract the element from the 128-bit vector.
6648 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006649 DebugLoc dl = Op.getNode()->getDebugLoc();
6650 unsigned NumElems = VecVT.getVectorNumElements();
6651 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006652 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6653
6654 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006655 bool Upper = IdxVal >= NumElems/2;
6656 Vec = Extract128BitVector(Vec,
6657 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006658
David Greene74a579d2011-02-10 16:57:36 +00006659 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006660 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006661 }
6662
6663 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6664
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006665 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006666 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006667 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006668 return Res;
6669 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006670
Owen Andersone50ed302009-08-10 22:56:29 +00006671 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006672 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006673 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006674 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006675 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006676 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006677 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006678 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6679 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006680 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006681 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006682 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006683 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006684 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006685 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006686 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006687 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006688 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006689 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006690 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006691 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006692 if (Idx == 0)
6693 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006694
Evan Cheng0db9fe62006-04-25 20:13:52 +00006695 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006696 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006697 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006698 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006699 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006700 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006701 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006702 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006703 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6704 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6705 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006706 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006707 if (Idx == 0)
6708 return Op;
6709
6710 // UNPCKHPD the element to the lowest double word, then movsd.
6711 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6712 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006713 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006714 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006715 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006716 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006717 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006718 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006719 }
6720
Dan Gohman475871a2008-07-27 21:46:04 +00006721 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006722}
6723
Dan Gohman475871a2008-07-27 21:46:04 +00006724SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006725X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6726 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006727 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006728 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006729 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006730
Dan Gohman475871a2008-07-27 21:46:04 +00006731 SDValue N0 = Op.getOperand(0);
6732 SDValue N1 = Op.getOperand(1);
6733 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006734
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006735 if (VT.getSizeInBits() == 256)
6736 return SDValue();
6737
Dan Gohman8a55ce42009-09-23 21:02:20 +00006738 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006739 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006740 unsigned Opc;
6741 if (VT == MVT::v8i16)
6742 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006743 else if (VT == MVT::v16i8)
6744 Opc = X86ISD::PINSRB;
6745 else
6746 Opc = X86ISD::PINSRB;
6747
Nate Begeman14d12ca2008-02-11 04:19:36 +00006748 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6749 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006750 if (N1.getValueType() != MVT::i32)
6751 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6752 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006753 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006754 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006755 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006756 // Bits [7:6] of the constant are the source select. This will always be
6757 // zero here. The DAG Combiner may combine an extract_elt index into these
6758 // bits. For example (insert (extract, 3), 2) could be matched by putting
6759 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006760 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006761 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006762 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006763 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006764 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006765 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006766 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006767 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006768 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006769 // PINSR* works with constant index.
6770 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006771 }
Dan Gohman475871a2008-07-27 21:46:04 +00006772 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006773}
6774
Dan Gohman475871a2008-07-27 21:46:04 +00006775SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006776X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006777 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006778 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006779
David Greene6b381262011-02-09 15:32:06 +00006780 DebugLoc dl = Op.getDebugLoc();
6781 SDValue N0 = Op.getOperand(0);
6782 SDValue N1 = Op.getOperand(1);
6783 SDValue N2 = Op.getOperand(2);
6784
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006785 // If this is a 256-bit vector result, first extract the 128-bit vector,
6786 // insert the element into the extracted half and then place it back.
6787 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006788 if (!isa<ConstantSDNode>(N2))
6789 return SDValue();
6790
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006791 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006792 unsigned NumElems = VT.getVectorNumElements();
6793 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006794 bool Upper = IdxVal >= NumElems/2;
6795 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6796 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006797
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006798 // Insert the element into the desired half.
6799 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6800 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006801
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006802 // Insert the changed part back to the 256-bit vector
6803 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006804 }
6805
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006806 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006807 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6808
Dan Gohman8a55ce42009-09-23 21:02:20 +00006809 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006810 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006811
Dan Gohman8a55ce42009-09-23 21:02:20 +00006812 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006813 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6814 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006815 if (N1.getValueType() != MVT::i32)
6816 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6817 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006818 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006819 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006820 }
Dan Gohman475871a2008-07-27 21:46:04 +00006821 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006822}
6823
Dan Gohman475871a2008-07-27 21:46:04 +00006824SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006825X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006826 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006827 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006828 EVT OpVT = Op.getValueType();
6829
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006830 // If this is a 256-bit vector result, first insert into a 128-bit
6831 // vector and then insert into the 256-bit vector.
6832 if (OpVT.getSizeInBits() > 128) {
6833 // Insert into a 128-bit vector.
6834 EVT VT128 = EVT::getVectorVT(*Context,
6835 OpVT.getVectorElementType(),
6836 OpVT.getVectorNumElements() / 2);
6837
6838 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6839
6840 // Insert the 128-bit vector.
6841 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6842 DAG.getConstant(0, MVT::i32),
6843 DAG, dl);
6844 }
6845
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006846 if (Op.getValueType() == MVT::v1i64 &&
6847 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006848 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006849
Owen Anderson825b72b2009-08-11 20:47:22 +00006850 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006851 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6852 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006853 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006854 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006855}
6856
David Greene91585092011-01-26 15:38:49 +00006857// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6858// a simple subregister reference or explicit instructions to grab
6859// upper bits of a vector.
6860SDValue
6861X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6862 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006863 DebugLoc dl = Op.getNode()->getDebugLoc();
6864 SDValue Vec = Op.getNode()->getOperand(0);
6865 SDValue Idx = Op.getNode()->getOperand(1);
6866
6867 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6868 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6869 return Extract128BitVector(Vec, Idx, DAG, dl);
6870 }
David Greene91585092011-01-26 15:38:49 +00006871 }
6872 return SDValue();
6873}
6874
David Greenecfe33c42011-01-26 19:13:22 +00006875// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6876// simple superregister reference or explicit instructions to insert
6877// the upper bits of a vector.
6878SDValue
6879X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6880 if (Subtarget->hasAVX()) {
6881 DebugLoc dl = Op.getNode()->getDebugLoc();
6882 SDValue Vec = Op.getNode()->getOperand(0);
6883 SDValue SubVec = Op.getNode()->getOperand(1);
6884 SDValue Idx = Op.getNode()->getOperand(2);
6885
6886 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6887 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006888 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006889 }
6890 }
6891 return SDValue();
6892}
6893
Bill Wendling056292f2008-09-16 21:48:12 +00006894// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6895// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6896// one of the above mentioned nodes. It has to be wrapped because otherwise
6897// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6898// be used to form addressing mode. These wrapped nodes will be selected
6899// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006900SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006901X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006902 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006903
Chris Lattner41621a22009-06-26 19:22:52 +00006904 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6905 // global base reg.
6906 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006907 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006908 CodeModel::Model M = getTargetMachine().getCodeModel();
6909
Chris Lattner4f066492009-07-11 20:29:19 +00006910 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006911 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006912 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006913 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006914 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006915 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006916 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006917
Evan Cheng1606e8e2009-03-13 07:51:59 +00006918 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006919 CP->getAlignment(),
6920 CP->getOffset(), OpFlag);
6921 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006922 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006923 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006924 if (OpFlag) {
6925 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006926 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006927 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006928 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006929 }
6930
6931 return Result;
6932}
6933
Dan Gohmand858e902010-04-17 15:26:15 +00006934SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006935 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006936
Chris Lattner18c59872009-06-27 04:16:01 +00006937 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6938 // global base reg.
6939 unsigned char OpFlag = 0;
6940 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006941 CodeModel::Model M = getTargetMachine().getCodeModel();
6942
Chris Lattner4f066492009-07-11 20:29:19 +00006943 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006944 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006945 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006946 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006947 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006948 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006949 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006950
Chris Lattner18c59872009-06-27 04:16:01 +00006951 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6952 OpFlag);
6953 DebugLoc DL = JT->getDebugLoc();
6954 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006955
Chris Lattner18c59872009-06-27 04:16:01 +00006956 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006957 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006958 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6959 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006960 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006961 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006962
Chris Lattner18c59872009-06-27 04:16:01 +00006963 return Result;
6964}
6965
6966SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006967X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006968 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006969
Chris Lattner18c59872009-06-27 04:16:01 +00006970 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6971 // global base reg.
6972 unsigned char OpFlag = 0;
6973 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006974 CodeModel::Model M = getTargetMachine().getCodeModel();
6975
Chris Lattner4f066492009-07-11 20:29:19 +00006976 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00006977 (M == CodeModel::Small || M == CodeModel::Kernel)) {
6978 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
6979 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00006980 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00006981 } else if (Subtarget->isPICStyleGOT()) {
6982 OpFlag = X86II::MO_GOT;
6983 } else if (Subtarget->isPICStyleStubPIC()) {
6984 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
6985 } else if (Subtarget->isPICStyleStubNoDynamic()) {
6986 OpFlag = X86II::MO_DARWIN_NONLAZY;
6987 }
Eric Christopherfd179292009-08-27 18:07:15 +00006988
Chris Lattner18c59872009-06-27 04:16:01 +00006989 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006990
Chris Lattner18c59872009-06-27 04:16:01 +00006991 DebugLoc DL = Op.getDebugLoc();
6992 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006993
6994
Chris Lattner18c59872009-06-27 04:16:01 +00006995 // With PIC, the address is actually $g + Offset.
6996 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006997 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006998 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6999 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007000 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007001 Result);
7002 }
Eric Christopherfd179292009-08-27 18:07:15 +00007003
Eli Friedman586272d2011-08-11 01:48:05 +00007004 // For symbols that require a load from a stub to get the address, emit the
7005 // load.
7006 if (isGlobalStubReference(OpFlag))
7007 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7008 MachinePointerInfo::getGOT(), false, false, 0);
7009
Chris Lattner18c59872009-06-27 04:16:01 +00007010 return Result;
7011}
7012
Dan Gohman475871a2008-07-27 21:46:04 +00007013SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007014X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007015 // Create the TargetBlockAddressAddress node.
7016 unsigned char OpFlags =
7017 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00007018 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00007019 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00007020 DebugLoc dl = Op.getDebugLoc();
7021 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7022 /*isTarget=*/true, OpFlags);
7023
Dan Gohmanf705adb2009-10-30 01:28:02 +00007024 if (Subtarget->isPICStyleRIPRel() &&
7025 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007026 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7027 else
7028 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007029
Dan Gohman29cbade2009-11-20 23:18:13 +00007030 // With PIC, the address is actually $g + Offset.
7031 if (isGlobalRelativeToPICBase(OpFlags)) {
7032 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7033 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7034 Result);
7035 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007036
7037 return Result;
7038}
7039
7040SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007041X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00007042 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00007043 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007044 // Create the TargetGlobalAddress node, folding in the constant
7045 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007046 unsigned char OpFlags =
7047 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007048 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007049 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007050 if (OpFlags == X86II::MO_NO_FLAG &&
7051 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007052 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007053 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007054 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007055 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007056 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007057 }
Eric Christopherfd179292009-08-27 18:07:15 +00007058
Chris Lattner4f066492009-07-11 20:29:19 +00007059 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007060 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007061 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7062 else
7063 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007064
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007065 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007066 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007067 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7068 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007069 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007070 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007071
Chris Lattner36c25012009-07-10 07:34:39 +00007072 // For globals that require a load from a stub to get the address, emit the
7073 // load.
7074 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007075 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007076 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007077
Dan Gohman6520e202008-10-18 02:06:02 +00007078 // If there was a non-zero offset that we didn't fold, create an explicit
7079 // addition for it.
7080 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007081 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007082 DAG.getConstant(Offset, getPointerTy()));
7083
Evan Cheng0db9fe62006-04-25 20:13:52 +00007084 return Result;
7085}
7086
Evan Chengda43bcf2008-09-24 00:05:32 +00007087SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007088X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007089 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007090 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007091 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007092}
7093
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007094static SDValue
7095GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007096 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00007097 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007098 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007099 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007100 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007101 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007102 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007103 GA->getOffset(),
7104 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007105 if (InFlag) {
7106 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007107 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007108 } else {
7109 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007110 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007111 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007112
7113 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007114 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007115
Rafael Espindola15f1b662009-04-24 12:59:40 +00007116 SDValue Flag = Chain.getValue(1);
7117 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007118}
7119
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007120// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007121static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007122LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007123 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007124 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007125 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7126 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007127 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007128 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007129 InFlag = Chain.getValue(1);
7130
Chris Lattnerb903bed2009-06-26 21:20:29 +00007131 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007132}
7133
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007134// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007135static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007136LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007137 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007138 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7139 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007140}
7141
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007142// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7143// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007144static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007145 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00007146 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007147 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007148
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007149 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7150 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7151 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007152
Michael J. Spencerec38de22010-10-10 22:04:20 +00007153 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007154 DAG.getIntPtrConstant(0),
7155 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007156
Chris Lattnerb903bed2009-06-26 21:20:29 +00007157 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007158 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7159 // initialexec.
7160 unsigned WrapperKind = X86ISD::Wrapper;
7161 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007162 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00007163 } else if (is64Bit) {
7164 assert(model == TLSModel::InitialExec);
7165 OperandFlags = X86II::MO_GOTTPOFF;
7166 WrapperKind = X86ISD::WrapperRIP;
7167 } else {
7168 assert(model == TLSModel::InitialExec);
7169 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00007170 }
Eric Christopherfd179292009-08-27 18:07:15 +00007171
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007172 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7173 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007174 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007175 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007176 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007177 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007178
Rafael Espindola9a580232009-02-27 13:37:18 +00007179 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007180 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007181 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007182
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007183 // The address of the thread local variable is the add of the thread
7184 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007185 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007186}
7187
Dan Gohman475871a2008-07-27 21:46:04 +00007188SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007189X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007190
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007191 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007192 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007193
Eric Christopher30ef0e52010-06-03 04:07:48 +00007194 if (Subtarget->isTargetELF()) {
7195 // TODO: implement the "local dynamic" model
7196 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00007197
Eric Christopher30ef0e52010-06-03 04:07:48 +00007198 // If GV is an alias then use the aliasee for determining
7199 // thread-localness.
7200 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7201 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007202
7203 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00007204 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007205
Eric Christopher30ef0e52010-06-03 04:07:48 +00007206 switch (model) {
7207 case TLSModel::GeneralDynamic:
7208 case TLSModel::LocalDynamic: // not implemented
7209 if (Subtarget->is64Bit())
7210 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7211 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007212
Eric Christopher30ef0e52010-06-03 04:07:48 +00007213 case TLSModel::InitialExec:
7214 case TLSModel::LocalExec:
7215 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7216 Subtarget->is64Bit());
7217 }
7218 } else if (Subtarget->isTargetDarwin()) {
7219 // Darwin only has one model of TLS. Lower to that.
7220 unsigned char OpFlag = 0;
7221 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7222 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007223
Eric Christopher30ef0e52010-06-03 04:07:48 +00007224 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7225 // global base reg.
7226 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7227 !Subtarget->is64Bit();
7228 if (PIC32)
7229 OpFlag = X86II::MO_TLVP_PIC_BASE;
7230 else
7231 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007232 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007233 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007234 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007235 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007236 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007237
Eric Christopher30ef0e52010-06-03 04:07:48 +00007238 // With PIC32, the address is actually $g + Offset.
7239 if (PIC32)
7240 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7241 DAG.getNode(X86ISD::GlobalBaseReg,
7242 DebugLoc(), getPointerTy()),
7243 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007244
Eric Christopher30ef0e52010-06-03 04:07:48 +00007245 // Lowering the machine isd will make sure everything is in the right
7246 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007247 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007248 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007249 SDValue Args[] = { Chain, Offset };
7250 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007251
Eric Christopher30ef0e52010-06-03 04:07:48 +00007252 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7253 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7254 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007255
Eric Christopher30ef0e52010-06-03 04:07:48 +00007256 // And our return value (tls address) is in the standard call return value
7257 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007258 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7259 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007260 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007261
Eric Christopher30ef0e52010-06-03 04:07:48 +00007262 assert(false &&
7263 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007264
Torok Edwinc23197a2009-07-14 16:55:14 +00007265 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007266 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007267}
7268
Evan Cheng0db9fe62006-04-25 20:13:52 +00007269
Nadav Rotem43012222011-05-11 08:12:09 +00007270/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007271/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007272SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007273 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007274 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007275 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007276 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007277 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007278 SDValue ShOpLo = Op.getOperand(0);
7279 SDValue ShOpHi = Op.getOperand(1);
7280 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007281 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007282 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007283 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007284
Dan Gohman475871a2008-07-27 21:46:04 +00007285 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007286 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007287 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7288 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007289 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007290 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7291 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007292 }
Evan Chenge3413162006-01-09 18:33:28 +00007293
Owen Anderson825b72b2009-08-11 20:47:22 +00007294 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7295 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007296 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007297 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007298
Dan Gohman475871a2008-07-27 21:46:04 +00007299 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007300 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007301 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7302 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007303
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007304 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007305 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7306 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007307 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007308 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7309 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007310 }
7311
Dan Gohman475871a2008-07-27 21:46:04 +00007312 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007313 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007314}
Evan Chenga3195e82006-01-12 22:54:21 +00007315
Dan Gohmand858e902010-04-17 15:26:15 +00007316SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7317 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007318 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007319
Dale Johannesen0488fb62010-09-30 23:57:10 +00007320 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007321 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007322
Owen Anderson825b72b2009-08-11 20:47:22 +00007323 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007324 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007325
Eli Friedman36df4992009-05-27 00:47:34 +00007326 // These are really Legal; return the operand so the caller accepts it as
7327 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007328 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007329 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007330 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007331 Subtarget->is64Bit()) {
7332 return Op;
7333 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007334
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007335 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007336 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007337 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007338 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007339 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007340 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007341 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007342 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007343 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007344 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7345}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007346
Owen Andersone50ed302009-08-10 22:56:29 +00007347SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007348 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007349 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007350 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007351 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007352 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007353 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007354 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007355 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007356 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007357 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007358
Chris Lattner492a43e2010-09-22 01:28:21 +00007359 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007360
Stuart Hastings84be9582011-06-02 15:57:11 +00007361 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7362 MachineMemOperand *MMO;
7363 if (FI) {
7364 int SSFI = FI->getIndex();
7365 MMO =
7366 DAG.getMachineFunction()
7367 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7368 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7369 } else {
7370 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7371 StackSlot = StackSlot.getOperand(1);
7372 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007373 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007374 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7375 X86ISD::FILD, DL,
7376 Tys, Ops, array_lengthof(Ops),
7377 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007378
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007379 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007380 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007381 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007382
7383 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7384 // shouldn't be necessary except that RFP cannot be live across
7385 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007386 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007387 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7388 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007389 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007390 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007391 SDValue Ops[] = {
7392 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7393 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007394 MachineMemOperand *MMO =
7395 DAG.getMachineFunction()
7396 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007397 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007398
Chris Lattner492a43e2010-09-22 01:28:21 +00007399 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7400 Ops, array_lengthof(Ops),
7401 Op.getValueType(), MMO);
7402 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007403 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007404 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007405 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007406
Evan Cheng0db9fe62006-04-25 20:13:52 +00007407 return Result;
7408}
7409
Bill Wendling8b8a6362009-01-17 03:56:04 +00007410// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007411SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7412 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007413 // This algorithm is not obvious. Here it is in C code, more or less:
7414 /*
7415 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7416 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7417 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007418
Bill Wendling8b8a6362009-01-17 03:56:04 +00007419 // Copy ints to xmm registers.
7420 __m128i xh = _mm_cvtsi32_si128( hi );
7421 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007422
Bill Wendling8b8a6362009-01-17 03:56:04 +00007423 // Combine into low half of a single xmm register.
7424 __m128i x = _mm_unpacklo_epi32( xh, xl );
7425 __m128d d;
7426 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007427
Bill Wendling8b8a6362009-01-17 03:56:04 +00007428 // Merge in appropriate exponents to give the integer bits the right
7429 // magnitude.
7430 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007431
Bill Wendling8b8a6362009-01-17 03:56:04 +00007432 // Subtract away the biases to deal with the IEEE-754 double precision
7433 // implicit 1.
7434 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007435
Bill Wendling8b8a6362009-01-17 03:56:04 +00007436 // All conversions up to here are exact. The correctly rounded result is
7437 // calculated using the current rounding mode using the following
7438 // horizontal add.
7439 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7440 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7441 // store doesn't really need to be here (except
7442 // maybe to zero the other double)
7443 return sd;
7444 }
7445 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007446
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007447 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007448 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007449
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007450 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007451 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007452 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7453 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7454 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7455 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007456 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007457 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007458
Bill Wendling8b8a6362009-01-17 03:56:04 +00007459 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007460 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007461 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007462 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007463 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007464 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007465 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007466
Owen Anderson825b72b2009-08-11 20:47:22 +00007467 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7468 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007469 Op.getOperand(0),
7470 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007471 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7472 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007473 Op.getOperand(0),
7474 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007475 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7476 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007477 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007478 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007479 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007480 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007481 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007482 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007483 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007484 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007485
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007486 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007487 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007488 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7489 DAG.getUNDEF(MVT::v2f64), ShufMask);
7490 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7491 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007492 DAG.getIntPtrConstant(0));
7493}
7494
Bill Wendling8b8a6362009-01-17 03:56:04 +00007495// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007496SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7497 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007498 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007499 // FP constant to bias correct the final result.
7500 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007501 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007502
7503 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007504 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007505 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007506
Owen Anderson825b72b2009-08-11 20:47:22 +00007507 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007508 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007509 DAG.getIntPtrConstant(0));
7510
7511 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007512 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007513 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007514 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007515 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007516 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007517 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007518 MVT::v2f64, Bias)));
7519 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007520 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007521 DAG.getIntPtrConstant(0));
7522
7523 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007524 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007525
7526 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007527 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007528
Owen Anderson825b72b2009-08-11 20:47:22 +00007529 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007530 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007531 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007532 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007533 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007534 }
7535
7536 // Handle final rounding.
7537 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007538}
7539
Dan Gohmand858e902010-04-17 15:26:15 +00007540SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7541 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007542 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007543 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007544
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007545 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007546 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7547 // the optimization here.
7548 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007549 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007550
Owen Andersone50ed302009-08-10 22:56:29 +00007551 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007552 EVT DstVT = Op.getValueType();
7553 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007554 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007555 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007556 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007557
7558 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007559 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007560 if (SrcVT == MVT::i32) {
7561 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7562 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7563 getPointerTy(), StackSlot, WordOff);
7564 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007565 StackSlot, MachinePointerInfo(),
7566 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007567 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007568 OffsetSlot, MachinePointerInfo(),
7569 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007570 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7571 return Fild;
7572 }
7573
7574 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7575 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007576 StackSlot, MachinePointerInfo(),
7577 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007578 // For i64 source, we need to add the appropriate power of 2 if the input
7579 // was negative. This is the same as the optimization in
7580 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7581 // we must be careful to do the computation in x87 extended precision, not
7582 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007583 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7584 MachineMemOperand *MMO =
7585 DAG.getMachineFunction()
7586 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7587 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007588
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007589 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7590 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007591 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7592 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007593
7594 APInt FF(32, 0x5F800000ULL);
7595
7596 // Check whether the sign bit is set.
7597 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7598 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7599 ISD::SETLT);
7600
7601 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7602 SDValue FudgePtr = DAG.getConstantPool(
7603 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7604 getPointerTy());
7605
7606 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7607 SDValue Zero = DAG.getIntPtrConstant(0);
7608 SDValue Four = DAG.getIntPtrConstant(4);
7609 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7610 Zero, Four);
7611 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7612
7613 // Load the value out, extending it from f32 to f80.
7614 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007615 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007616 FudgePtr, MachinePointerInfo::getConstantPool(),
7617 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007618 // Extend everything to 80 bits to force it to be done on x87.
7619 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7620 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007621}
7622
Dan Gohman475871a2008-07-27 21:46:04 +00007623std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007624FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007625 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007626
Owen Andersone50ed302009-08-10 22:56:29 +00007627 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007628
7629 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007630 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7631 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007632 }
7633
Owen Anderson825b72b2009-08-11 20:47:22 +00007634 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7635 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007636 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007637
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007638 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007639 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007640 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007641 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007642 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007643 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007644 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007645 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007646
Evan Cheng87c89352007-10-15 20:11:21 +00007647 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7648 // stack slot.
7649 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007650 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007651 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007652 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007653
Michael J. Spencerec38de22010-10-10 22:04:20 +00007654
7655
Evan Cheng0db9fe62006-04-25 20:13:52 +00007656 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007657 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007658 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007659 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7660 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7661 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007662 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007663
Dan Gohman475871a2008-07-27 21:46:04 +00007664 SDValue Chain = DAG.getEntryNode();
7665 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007666 EVT TheVT = Op.getOperand(0).getValueType();
7667 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007668 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007669 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007670 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007671 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007672 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007673 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007674 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007675 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007676
Chris Lattner492a43e2010-09-22 01:28:21 +00007677 MachineMemOperand *MMO =
7678 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7679 MachineMemOperand::MOLoad, MemSize, MemSize);
7680 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7681 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007682 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007683 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007684 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7685 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007686
Chris Lattner07290932010-09-22 01:05:16 +00007687 MachineMemOperand *MMO =
7688 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7689 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007690
Evan Cheng0db9fe62006-04-25 20:13:52 +00007691 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007692 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007693 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7694 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007695
Chris Lattner27a6c732007-11-24 07:07:01 +00007696 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007697}
7698
Dan Gohmand858e902010-04-17 15:26:15 +00007699SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7700 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007701 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007702 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007703
Eli Friedman948e95a2009-05-23 09:59:16 +00007704 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007705 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007706 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7707 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007708
Chris Lattner27a6c732007-11-24 07:07:01 +00007709 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007710 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007711 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007712}
7713
Dan Gohmand858e902010-04-17 15:26:15 +00007714SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7715 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007716 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7717 SDValue FIST = Vals.first, StackSlot = Vals.second;
7718 assert(FIST.getNode() && "Unexpected failure");
7719
7720 // Load the result.
7721 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007722 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007723}
7724
Dan Gohmand858e902010-04-17 15:26:15 +00007725SDValue X86TargetLowering::LowerFABS(SDValue Op,
7726 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007727 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007728 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007729 EVT VT = Op.getValueType();
7730 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007731 if (VT.isVector())
7732 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007733 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007734 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007735 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007736 CV.push_back(C);
7737 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007738 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007739 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007740 CV.push_back(C);
7741 CV.push_back(C);
7742 CV.push_back(C);
7743 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007744 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007745 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007746 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007747 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007748 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007749 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007750 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007751}
7752
Dan Gohmand858e902010-04-17 15:26:15 +00007753SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007754 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007755 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007756 EVT VT = Op.getValueType();
7757 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007758 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007759 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007760 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007761 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007762 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007763 CV.push_back(C);
7764 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007765 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007766 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007767 CV.push_back(C);
7768 CV.push_back(C);
7769 CV.push_back(C);
7770 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007771 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007772 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007773 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007774 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007775 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007776 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007777 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007778 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007779 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007780 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007781 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007782 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007783 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007784 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007785 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007786}
7787
Dan Gohmand858e902010-04-17 15:26:15 +00007788SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007789 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007790 SDValue Op0 = Op.getOperand(0);
7791 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007792 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007793 EVT VT = Op.getValueType();
7794 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007795
7796 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007797 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007798 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007799 SrcVT = VT;
7800 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007801 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007802 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007803 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007804 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007805 }
7806
7807 // At this point the operands and the result should have the same
7808 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007809
Evan Cheng68c47cb2007-01-05 07:55:56 +00007810 // First get the sign bit of second operand.
7811 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007812 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007813 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7814 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007815 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007816 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7817 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7818 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7819 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007820 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007821 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007822 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007823 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007824 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007825 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007826 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007827
7828 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007829 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007830 // Op0 is MVT::f32, Op1 is MVT::f64.
7831 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7832 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7833 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007834 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007835 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007836 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007837 }
7838
Evan Cheng73d6cf12007-01-05 21:37:56 +00007839 // Clear first operand sign bit.
7840 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007841 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007842 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7843 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007844 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007845 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7846 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7847 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7848 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007849 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007850 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007851 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007852 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007853 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007854 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007855 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007856
7857 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007858 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007859}
7860
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007861SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7862 SDValue N0 = Op.getOperand(0);
7863 DebugLoc dl = Op.getDebugLoc();
7864 EVT VT = Op.getValueType();
7865
7866 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7867 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7868 DAG.getConstant(1, VT));
7869 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7870}
7871
Dan Gohman076aee32009-03-04 19:44:21 +00007872/// Emit nodes that will be selected as "test Op0,Op0", or something
7873/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007874SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007875 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007876 DebugLoc dl = Op.getDebugLoc();
7877
Dan Gohman31125812009-03-07 01:58:32 +00007878 // CF and OF aren't always set the way we want. Determine which
7879 // of these we need.
7880 bool NeedCF = false;
7881 bool NeedOF = false;
7882 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007883 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007884 case X86::COND_A: case X86::COND_AE:
7885 case X86::COND_B: case X86::COND_BE:
7886 NeedCF = true;
7887 break;
7888 case X86::COND_G: case X86::COND_GE:
7889 case X86::COND_L: case X86::COND_LE:
7890 case X86::COND_O: case X86::COND_NO:
7891 NeedOF = true;
7892 break;
Dan Gohman31125812009-03-07 01:58:32 +00007893 }
7894
Dan Gohman076aee32009-03-04 19:44:21 +00007895 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007896 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7897 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007898 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7899 // Emit a CMP with 0, which is the TEST pattern.
7900 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7901 DAG.getConstant(0, Op.getValueType()));
7902
7903 unsigned Opcode = 0;
7904 unsigned NumOperands = 0;
7905 switch (Op.getNode()->getOpcode()) {
7906 case ISD::ADD:
7907 // Due to an isel shortcoming, be conservative if this add is likely to be
7908 // selected as part of a load-modify-store instruction. When the root node
7909 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7910 // uses of other nodes in the match, such as the ADD in this case. This
7911 // leads to the ADD being left around and reselected, with the result being
7912 // two adds in the output. Alas, even if none our users are stores, that
7913 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7914 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7915 // climbing the DAG back to the root, and it doesn't seem to be worth the
7916 // effort.
7917 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007918 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007919 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7920 goto default_case;
7921
7922 if (ConstantSDNode *C =
7923 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7924 // An add of one will be selected as an INC.
7925 if (C->getAPIntValue() == 1) {
7926 Opcode = X86ISD::INC;
7927 NumOperands = 1;
7928 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007929 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007930
7931 // An add of negative one (subtract of one) will be selected as a DEC.
7932 if (C->getAPIntValue().isAllOnesValue()) {
7933 Opcode = X86ISD::DEC;
7934 NumOperands = 1;
7935 break;
7936 }
Dan Gohman076aee32009-03-04 19:44:21 +00007937 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007938
7939 // Otherwise use a regular EFLAGS-setting add.
7940 Opcode = X86ISD::ADD;
7941 NumOperands = 2;
7942 break;
7943 case ISD::AND: {
7944 // If the primary and result isn't used, don't bother using X86ISD::AND,
7945 // because a TEST instruction will be better.
7946 bool NonFlagUse = false;
7947 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7948 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7949 SDNode *User = *UI;
7950 unsigned UOpNo = UI.getOperandNo();
7951 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7952 // Look pass truncate.
7953 UOpNo = User->use_begin().getOperandNo();
7954 User = *User->use_begin();
7955 }
7956
7957 if (User->getOpcode() != ISD::BRCOND &&
7958 User->getOpcode() != ISD::SETCC &&
7959 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7960 NonFlagUse = true;
7961 break;
7962 }
Dan Gohman076aee32009-03-04 19:44:21 +00007963 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007964
7965 if (!NonFlagUse)
7966 break;
7967 }
7968 // FALL THROUGH
7969 case ISD::SUB:
7970 case ISD::OR:
7971 case ISD::XOR:
7972 // Due to the ISEL shortcoming noted above, be conservative if this op is
7973 // likely to be selected as part of a load-modify-store instruction.
7974 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7975 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7976 if (UI->getOpcode() == ISD::STORE)
7977 goto default_case;
7978
7979 // Otherwise use a regular EFLAGS-setting instruction.
7980 switch (Op.getNode()->getOpcode()) {
7981 default: llvm_unreachable("unexpected operator!");
7982 case ISD::SUB: Opcode = X86ISD::SUB; break;
7983 case ISD::OR: Opcode = X86ISD::OR; break;
7984 case ISD::XOR: Opcode = X86ISD::XOR; break;
7985 case ISD::AND: Opcode = X86ISD::AND; break;
7986 }
7987
7988 NumOperands = 2;
7989 break;
7990 case X86ISD::ADD:
7991 case X86ISD::SUB:
7992 case X86ISD::INC:
7993 case X86ISD::DEC:
7994 case X86ISD::OR:
7995 case X86ISD::XOR:
7996 case X86ISD::AND:
7997 return SDValue(Op.getNode(), 1);
7998 default:
7999 default_case:
8000 break;
Dan Gohman076aee32009-03-04 19:44:21 +00008001 }
8002
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008003 if (Opcode == 0)
8004 // Emit a CMP with 0, which is the TEST pattern.
8005 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8006 DAG.getConstant(0, Op.getValueType()));
8007
8008 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8009 SmallVector<SDValue, 4> Ops;
8010 for (unsigned i = 0; i != NumOperands; ++i)
8011 Ops.push_back(Op.getOperand(i));
8012
8013 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8014 DAG.ReplaceAllUsesWith(Op, New);
8015 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00008016}
8017
8018/// Emit nodes that will be selected as "cmp Op0,Op1", or something
8019/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008020SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008021 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008022 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8023 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00008024 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00008025
8026 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008027 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00008028}
8029
Evan Chengd40d03e2010-01-06 19:38:29 +00008030/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8031/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00008032SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8033 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008034 SDValue Op0 = And.getOperand(0);
8035 SDValue Op1 = And.getOperand(1);
8036 if (Op0.getOpcode() == ISD::TRUNCATE)
8037 Op0 = Op0.getOperand(0);
8038 if (Op1.getOpcode() == ISD::TRUNCATE)
8039 Op1 = Op1.getOperand(0);
8040
Evan Chengd40d03e2010-01-06 19:38:29 +00008041 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008042 if (Op1.getOpcode() == ISD::SHL)
8043 std::swap(Op0, Op1);
8044 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008045 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8046 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008047 // If we looked past a truncate, check that it's only truncating away
8048 // known zeros.
8049 unsigned BitWidth = Op0.getValueSizeInBits();
8050 unsigned AndBitWidth = And.getValueSizeInBits();
8051 if (BitWidth > AndBitWidth) {
8052 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8053 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8054 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8055 return SDValue();
8056 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008057 LHS = Op1;
8058 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00008059 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008060 } else if (Op1.getOpcode() == ISD::Constant) {
8061 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8062 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00008063 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
8064 LHS = AndLHS.getOperand(0);
8065 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008066 }
Evan Chengd40d03e2010-01-06 19:38:29 +00008067 }
Evan Cheng0488db92007-09-25 01:57:46 +00008068
Evan Chengd40d03e2010-01-06 19:38:29 +00008069 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00008070 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00008071 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00008072 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00008073 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00008074 // Also promote i16 to i32 for performance / code size reason.
8075 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00008076 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00008077 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00008078
Evan Chengd40d03e2010-01-06 19:38:29 +00008079 // If the operand types disagree, extend the shift amount to match. Since
8080 // BT ignores high bits (like shifts) we can use anyextend.
8081 if (LHS.getValueType() != RHS.getValueType())
8082 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008083
Evan Chengd40d03e2010-01-06 19:38:29 +00008084 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8085 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8086 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8087 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00008088 }
8089
Evan Cheng54de3ea2010-01-05 06:52:31 +00008090 return SDValue();
8091}
8092
Dan Gohmand858e902010-04-17 15:26:15 +00008093SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00008094 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8095 SDValue Op0 = Op.getOperand(0);
8096 SDValue Op1 = Op.getOperand(1);
8097 DebugLoc dl = Op.getDebugLoc();
8098 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8099
8100 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00008101 // Lower (X & (1 << N)) == 0 to BT(X, N).
8102 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8103 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00008104 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008105 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00008106 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008107 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8108 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8109 if (NewSetCC.getNode())
8110 return NewSetCC;
8111 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00008112
Chris Lattner481eebc2010-12-19 21:23:48 +00008113 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
8114 // these.
8115 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00008116 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00008117 cast<ConstantSDNode>(Op1)->isNullValue()) &&
8118 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008119
Chris Lattner481eebc2010-12-19 21:23:48 +00008120 // If the input is a setcc, then reuse the input setcc or use a new one with
8121 // the inverted condition.
8122 if (Op0.getOpcode() == X86ISD::SETCC) {
8123 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8124 bool Invert = (CC == ISD::SETNE) ^
8125 cast<ConstantSDNode>(Op1)->isNullValue();
8126 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008127
Evan Cheng2c755ba2010-02-27 07:36:59 +00008128 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00008129 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8130 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8131 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008132 }
8133
Evan Chenge5b51ac2010-04-17 06:13:15 +00008134 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00008135 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008136 if (X86CC == X86::COND_INVALID)
8137 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008138
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008139 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00008140 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008141 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00008142}
8143
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008144// Lower256IntVETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
8145// ones, and then concatenate the result back.
8146static SDValue Lower256IntVETCC(SDValue Op, SelectionDAG &DAG) {
8147 EVT VT = Op.getValueType();
8148
8149 assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::VSETCC &&
8150 "Unsupported value type for operation");
8151
8152 int NumElems = VT.getVectorNumElements();
8153 DebugLoc dl = Op.getDebugLoc();
8154 SDValue CC = Op.getOperand(2);
8155 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
8156 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
8157
8158 // Extract the LHS vectors
8159 SDValue LHS = Op.getOperand(0);
8160 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
8161 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
8162
8163 // Extract the RHS vectors
8164 SDValue RHS = Op.getOperand(1);
8165 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
8166 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
8167
8168 // Issue the operation on the smaller types and concatenate the result back
8169 MVT EltVT = VT.getVectorElementType().getSimpleVT();
8170 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8171 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8172 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8173 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8174}
8175
8176
Dan Gohmand858e902010-04-17 15:26:15 +00008177SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008178 SDValue Cond;
8179 SDValue Op0 = Op.getOperand(0);
8180 SDValue Op1 = Op.getOperand(1);
8181 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00008182 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00008183 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8184 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008185 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00008186
8187 if (isFP) {
8188 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008189 EVT EltVT = Op0.getValueType().getVectorElementType();
8190 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8191
8192 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00008193 bool Swap = false;
8194
8195 switch (SetCCOpcode) {
8196 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008197 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00008198 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008199 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00008200 case ISD::SETGT: Swap = true; // Fallthrough
8201 case ISD::SETLT:
8202 case ISD::SETOLT: SSECC = 1; break;
8203 case ISD::SETOGE:
8204 case ISD::SETGE: Swap = true; // Fallthrough
8205 case ISD::SETLE:
8206 case ISD::SETOLE: SSECC = 2; break;
8207 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008208 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00008209 case ISD::SETNE: SSECC = 4; break;
8210 case ISD::SETULE: Swap = true;
8211 case ISD::SETUGE: SSECC = 5; break;
8212 case ISD::SETULT: Swap = true;
8213 case ISD::SETUGT: SSECC = 6; break;
8214 case ISD::SETO: SSECC = 7; break;
8215 }
8216 if (Swap)
8217 std::swap(Op0, Op1);
8218
Nate Begemanfb8ead02008-07-25 19:05:58 +00008219 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00008220 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00008221 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00008222 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008223 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8224 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008225 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008226 }
8227 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00008228 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008229 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8230 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008231 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008232 }
Torok Edwinc23197a2009-07-14 16:55:14 +00008233 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00008234 }
8235 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00008236 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00008237 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008238
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008239 // Break 256-bit integer vector compare into smaller ones.
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008240 if (!isFP && VT.getSizeInBits() == 256)
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008241 return Lower256IntVETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008242
Nate Begeman30a0de92008-07-17 16:51:19 +00008243 // We are handling one of the integer comparisons here. Since SSE only has
8244 // GT and EQ comparisons for integer, swapping operands and multiple
8245 // operations may be required for some comparisons.
8246 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8247 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008248
Owen Anderson825b72b2009-08-11 20:47:22 +00008249 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00008250 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008251 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008252 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008253 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8254 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008255 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008256
Nate Begeman30a0de92008-07-17 16:51:19 +00008257 switch (SetCCOpcode) {
8258 default: break;
8259 case ISD::SETNE: Invert = true;
8260 case ISD::SETEQ: Opc = EQOpc; break;
8261 case ISD::SETLT: Swap = true;
8262 case ISD::SETGT: Opc = GTOpc; break;
8263 case ISD::SETGE: Swap = true;
8264 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8265 case ISD::SETULT: Swap = true;
8266 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8267 case ISD::SETUGE: Swap = true;
8268 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8269 }
8270 if (Swap)
8271 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008272
Nate Begeman30a0de92008-07-17 16:51:19 +00008273 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8274 // bits of the inputs before performing those operations.
8275 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008276 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008277 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8278 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008279 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008280 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8281 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008282 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8283 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008284 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008285
Dale Johannesenace16102009-02-03 19:33:06 +00008286 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008287
8288 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008289 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008290 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008291
Nate Begeman30a0de92008-07-17 16:51:19 +00008292 return Result;
8293}
Evan Cheng0488db92007-09-25 01:57:46 +00008294
Evan Cheng370e5342008-12-03 08:38:43 +00008295// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008296static bool isX86LogicalCmp(SDValue Op) {
8297 unsigned Opc = Op.getNode()->getOpcode();
8298 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8299 return true;
8300 if (Op.getResNo() == 1 &&
8301 (Opc == X86ISD::ADD ||
8302 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008303 Opc == X86ISD::ADC ||
8304 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008305 Opc == X86ISD::SMUL ||
8306 Opc == X86ISD::UMUL ||
8307 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008308 Opc == X86ISD::DEC ||
8309 Opc == X86ISD::OR ||
8310 Opc == X86ISD::XOR ||
8311 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008312 return true;
8313
Chris Lattner9637d5b2010-12-05 07:49:54 +00008314 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8315 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008316
Dan Gohman076aee32009-03-04 19:44:21 +00008317 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008318}
8319
Chris Lattnera2b56002010-12-05 01:23:24 +00008320static bool isZero(SDValue V) {
8321 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8322 return C && C->isNullValue();
8323}
8324
Chris Lattner96908b12010-12-05 02:00:51 +00008325static bool isAllOnes(SDValue V) {
8326 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8327 return C && C->isAllOnesValue();
8328}
8329
Dan Gohmand858e902010-04-17 15:26:15 +00008330SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008331 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008332 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008333 SDValue Op1 = Op.getOperand(1);
8334 SDValue Op2 = Op.getOperand(2);
8335 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008336 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008337
Dan Gohman1a492952009-10-20 16:22:37 +00008338 if (Cond.getOpcode() == ISD::SETCC) {
8339 SDValue NewCond = LowerSETCC(Cond, DAG);
8340 if (NewCond.getNode())
8341 Cond = NewCond;
8342 }
Evan Cheng734503b2006-09-11 02:19:56 +00008343
Chris Lattnera2b56002010-12-05 01:23:24 +00008344 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008345 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008346 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008347 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008348 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008349 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8350 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008351 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008352
Chris Lattnera2b56002010-12-05 01:23:24 +00008353 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008354
8355 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008356 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8357 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008358
8359 SDValue CmpOp0 = Cmp.getOperand(0);
8360 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8361 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008362
Chris Lattner96908b12010-12-05 02:00:51 +00008363 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008364 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8365 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008366
Chris Lattner96908b12010-12-05 02:00:51 +00008367 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8368 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008369
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008370 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008371 if (N2C == 0 || !N2C->isNullValue())
8372 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8373 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008374 }
8375 }
8376
Chris Lattnera2b56002010-12-05 01:23:24 +00008377 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008378 if (Cond.getOpcode() == ISD::AND &&
8379 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8380 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008381 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008382 Cond = Cond.getOperand(0);
8383 }
8384
Evan Cheng3f41d662007-10-08 22:16:29 +00008385 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8386 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008387 if (Cond.getOpcode() == X86ISD::SETCC ||
8388 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008389 CC = Cond.getOperand(0);
8390
Dan Gohman475871a2008-07-27 21:46:04 +00008391 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008392 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008393 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008394
Evan Cheng3f41d662007-10-08 22:16:29 +00008395 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008396 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008397 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008398 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008399
Chris Lattnerd1980a52009-03-12 06:52:53 +00008400 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8401 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008402 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008403 addTest = false;
8404 }
8405 }
8406
8407 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008408 // Look pass the truncate.
8409 if (Cond.getOpcode() == ISD::TRUNCATE)
8410 Cond = Cond.getOperand(0);
8411
8412 // We know the result of AND is compared against zero. Try to match
8413 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008414 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008415 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008416 if (NewSetCC.getNode()) {
8417 CC = NewSetCC.getOperand(0);
8418 Cond = NewSetCC.getOperand(1);
8419 addTest = false;
8420 }
8421 }
8422 }
8423
8424 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008425 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008426 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008427 }
8428
Benjamin Kramere915ff32010-12-22 23:09:28 +00008429 // a < b ? -1 : 0 -> RES = ~setcc_carry
8430 // a < b ? 0 : -1 -> RES = setcc_carry
8431 // a >= b ? -1 : 0 -> RES = setcc_carry
8432 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8433 if (Cond.getOpcode() == X86ISD::CMP) {
8434 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8435
8436 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8437 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8438 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8439 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8440 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8441 return DAG.getNOT(DL, Res, Res.getValueType());
8442 return Res;
8443 }
8444 }
8445
Evan Cheng0488db92007-09-25 01:57:46 +00008446 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8447 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008448 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008449 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008450 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008451}
8452
Evan Cheng370e5342008-12-03 08:38:43 +00008453// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8454// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8455// from the AND / OR.
8456static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8457 Opc = Op.getOpcode();
8458 if (Opc != ISD::OR && Opc != ISD::AND)
8459 return false;
8460 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8461 Op.getOperand(0).hasOneUse() &&
8462 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8463 Op.getOperand(1).hasOneUse());
8464}
8465
Evan Cheng961d6d42009-02-02 08:19:07 +00008466// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8467// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008468static bool isXor1OfSetCC(SDValue Op) {
8469 if (Op.getOpcode() != ISD::XOR)
8470 return false;
8471 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8472 if (N1C && N1C->getAPIntValue() == 1) {
8473 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8474 Op.getOperand(0).hasOneUse();
8475 }
8476 return false;
8477}
8478
Dan Gohmand858e902010-04-17 15:26:15 +00008479SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008480 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008481 SDValue Chain = Op.getOperand(0);
8482 SDValue Cond = Op.getOperand(1);
8483 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008484 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008485 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008486
Dan Gohman1a492952009-10-20 16:22:37 +00008487 if (Cond.getOpcode() == ISD::SETCC) {
8488 SDValue NewCond = LowerSETCC(Cond, DAG);
8489 if (NewCond.getNode())
8490 Cond = NewCond;
8491 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008492#if 0
8493 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008494 else if (Cond.getOpcode() == X86ISD::ADD ||
8495 Cond.getOpcode() == X86ISD::SUB ||
8496 Cond.getOpcode() == X86ISD::SMUL ||
8497 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008498 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008499#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008500
Evan Chengad9c0a32009-12-15 00:53:42 +00008501 // Look pass (and (setcc_carry (cmp ...)), 1).
8502 if (Cond.getOpcode() == ISD::AND &&
8503 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8504 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008505 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008506 Cond = Cond.getOperand(0);
8507 }
8508
Evan Cheng3f41d662007-10-08 22:16:29 +00008509 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8510 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008511 if (Cond.getOpcode() == X86ISD::SETCC ||
8512 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008513 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008514
Dan Gohman475871a2008-07-27 21:46:04 +00008515 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008516 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008517 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008518 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008519 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008520 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008521 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008522 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008523 default: break;
8524 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008525 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008526 // These can only come from an arithmetic instruction with overflow,
8527 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008528 Cond = Cond.getNode()->getOperand(1);
8529 addTest = false;
8530 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008531 }
Evan Cheng0488db92007-09-25 01:57:46 +00008532 }
Evan Cheng370e5342008-12-03 08:38:43 +00008533 } else {
8534 unsigned CondOpc;
8535 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8536 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008537 if (CondOpc == ISD::OR) {
8538 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8539 // two branches instead of an explicit OR instruction with a
8540 // separate test.
8541 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008542 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008543 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008544 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008545 Chain, Dest, CC, Cmp);
8546 CC = Cond.getOperand(1).getOperand(0);
8547 Cond = Cmp;
8548 addTest = false;
8549 }
8550 } else { // ISD::AND
8551 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8552 // two branches instead of an explicit AND instruction with a
8553 // separate test. However, we only do this if this block doesn't
8554 // have a fall-through edge, because this requires an explicit
8555 // jmp when the condition is false.
8556 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008557 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008558 Op.getNode()->hasOneUse()) {
8559 X86::CondCode CCode =
8560 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8561 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008562 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008563 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008564 // Look for an unconditional branch following this conditional branch.
8565 // We need this because we need to reverse the successors in order
8566 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008567 if (User->getOpcode() == ISD::BR) {
8568 SDValue FalseBB = User->getOperand(1);
8569 SDNode *NewBR =
8570 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008571 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008572 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008573 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008574
Dale Johannesene4d209d2009-02-03 20:21:25 +00008575 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008576 Chain, Dest, CC, Cmp);
8577 X86::CondCode CCode =
8578 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8579 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008580 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008581 Cond = Cmp;
8582 addTest = false;
8583 }
8584 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008585 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008586 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8587 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8588 // It should be transformed during dag combiner except when the condition
8589 // is set by a arithmetics with overflow node.
8590 X86::CondCode CCode =
8591 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8592 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008593 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008594 Cond = Cond.getOperand(0).getOperand(1);
8595 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008596 }
Evan Cheng0488db92007-09-25 01:57:46 +00008597 }
8598
8599 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008600 // Look pass the truncate.
8601 if (Cond.getOpcode() == ISD::TRUNCATE)
8602 Cond = Cond.getOperand(0);
8603
8604 // We know the result of AND is compared against zero. Try to match
8605 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008606 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008607 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8608 if (NewSetCC.getNode()) {
8609 CC = NewSetCC.getOperand(0);
8610 Cond = NewSetCC.getOperand(1);
8611 addTest = false;
8612 }
8613 }
8614 }
8615
8616 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008617 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008618 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008619 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008620 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008621 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008622}
8623
Anton Korobeynikove060b532007-04-17 19:34:00 +00008624
8625// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8626// Calls to _alloca is needed to probe the stack when allocating more than 4k
8627// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8628// that the guard pages used by the OS virtual memory manager are allocated in
8629// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008630SDValue
8631X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008632 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008633 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008634 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008635 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008636 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008637
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008638 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008639 SDValue Chain = Op.getOperand(0);
8640 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008641 // FIXME: Ensure alignment here
8642
Dan Gohman475871a2008-07-27 21:46:04 +00008643 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008644
Owen Anderson825b72b2009-08-11 20:47:22 +00008645 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008646 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008647
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008648 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008649 Flag = Chain.getValue(1);
8650
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008651 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008652
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008653 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008654 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008655
Dale Johannesendd64c412009-02-04 00:33:20 +00008656 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008657
Dan Gohman475871a2008-07-27 21:46:04 +00008658 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008659 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008660}
8661
Dan Gohmand858e902010-04-17 15:26:15 +00008662SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008663 MachineFunction &MF = DAG.getMachineFunction();
8664 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8665
Dan Gohman69de1932008-02-06 22:27:42 +00008666 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008667 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008668
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008669 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008670 // vastart just stores the address of the VarArgsFrameIndex slot into the
8671 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008672 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8673 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008674 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8675 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008676 }
8677
8678 // __va_list_tag:
8679 // gp_offset (0 - 6 * 8)
8680 // fp_offset (48 - 48 + 8 * 16)
8681 // overflow_arg_area (point to parameters coming in memory).
8682 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008683 SmallVector<SDValue, 8> MemOps;
8684 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008685 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008686 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008687 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8688 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008689 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008690 MemOps.push_back(Store);
8691
8692 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008693 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008694 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008695 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008696 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8697 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008698 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008699 MemOps.push_back(Store);
8700
8701 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008702 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008703 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008704 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8705 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008706 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8707 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008708 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008709 MemOps.push_back(Store);
8710
8711 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008712 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008713 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008714 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8715 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008716 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8717 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008718 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008719 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008720 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008721}
8722
Dan Gohmand858e902010-04-17 15:26:15 +00008723SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008724 assert(Subtarget->is64Bit() &&
8725 "LowerVAARG only handles 64-bit va_arg!");
8726 assert((Subtarget->isTargetLinux() ||
8727 Subtarget->isTargetDarwin()) &&
8728 "Unhandled target in LowerVAARG");
8729 assert(Op.getNode()->getNumOperands() == 4);
8730 SDValue Chain = Op.getOperand(0);
8731 SDValue SrcPtr = Op.getOperand(1);
8732 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8733 unsigned Align = Op.getConstantOperandVal(3);
8734 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008735
Dan Gohman320afb82010-10-12 18:00:49 +00008736 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008737 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008738 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8739 uint8_t ArgMode;
8740
8741 // Decide which area this value should be read from.
8742 // TODO: Implement the AMD64 ABI in its entirety. This simple
8743 // selection mechanism works only for the basic types.
8744 if (ArgVT == MVT::f80) {
8745 llvm_unreachable("va_arg for f80 not yet implemented");
8746 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8747 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8748 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8749 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8750 } else {
8751 llvm_unreachable("Unhandled argument type in LowerVAARG");
8752 }
8753
8754 if (ArgMode == 2) {
8755 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008756 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008757 !(DAG.getMachineFunction()
8758 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008759 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008760 }
8761
8762 // Insert VAARG_64 node into the DAG
8763 // VAARG_64 returns two values: Variable Argument Address, Chain
8764 SmallVector<SDValue, 11> InstOps;
8765 InstOps.push_back(Chain);
8766 InstOps.push_back(SrcPtr);
8767 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8768 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8769 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8770 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8771 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8772 VTs, &InstOps[0], InstOps.size(),
8773 MVT::i64,
8774 MachinePointerInfo(SV),
8775 /*Align=*/0,
8776 /*Volatile=*/false,
8777 /*ReadMem=*/true,
8778 /*WriteMem=*/true);
8779 Chain = VAARG.getValue(1);
8780
8781 // Load the next argument and return it
8782 return DAG.getLoad(ArgVT, dl,
8783 Chain,
8784 VAARG,
8785 MachinePointerInfo(),
8786 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008787}
8788
Dan Gohmand858e902010-04-17 15:26:15 +00008789SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008790 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008791 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008792 SDValue Chain = Op.getOperand(0);
8793 SDValue DstPtr = Op.getOperand(1);
8794 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008795 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8796 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008797 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008798
Chris Lattnere72f2022010-09-21 05:40:29 +00008799 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008800 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008801 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008802 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008803}
8804
Dan Gohman475871a2008-07-27 21:46:04 +00008805SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008806X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008807 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008808 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008809 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008810 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008811 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008812 case Intrinsic::x86_sse_comieq_ss:
8813 case Intrinsic::x86_sse_comilt_ss:
8814 case Intrinsic::x86_sse_comile_ss:
8815 case Intrinsic::x86_sse_comigt_ss:
8816 case Intrinsic::x86_sse_comige_ss:
8817 case Intrinsic::x86_sse_comineq_ss:
8818 case Intrinsic::x86_sse_ucomieq_ss:
8819 case Intrinsic::x86_sse_ucomilt_ss:
8820 case Intrinsic::x86_sse_ucomile_ss:
8821 case Intrinsic::x86_sse_ucomigt_ss:
8822 case Intrinsic::x86_sse_ucomige_ss:
8823 case Intrinsic::x86_sse_ucomineq_ss:
8824 case Intrinsic::x86_sse2_comieq_sd:
8825 case Intrinsic::x86_sse2_comilt_sd:
8826 case Intrinsic::x86_sse2_comile_sd:
8827 case Intrinsic::x86_sse2_comigt_sd:
8828 case Intrinsic::x86_sse2_comige_sd:
8829 case Intrinsic::x86_sse2_comineq_sd:
8830 case Intrinsic::x86_sse2_ucomieq_sd:
8831 case Intrinsic::x86_sse2_ucomilt_sd:
8832 case Intrinsic::x86_sse2_ucomile_sd:
8833 case Intrinsic::x86_sse2_ucomigt_sd:
8834 case Intrinsic::x86_sse2_ucomige_sd:
8835 case Intrinsic::x86_sse2_ucomineq_sd: {
8836 unsigned Opc = 0;
8837 ISD::CondCode CC = ISD::SETCC_INVALID;
8838 switch (IntNo) {
8839 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008840 case Intrinsic::x86_sse_comieq_ss:
8841 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008842 Opc = X86ISD::COMI;
8843 CC = ISD::SETEQ;
8844 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008845 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008846 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008847 Opc = X86ISD::COMI;
8848 CC = ISD::SETLT;
8849 break;
8850 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008851 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008852 Opc = X86ISD::COMI;
8853 CC = ISD::SETLE;
8854 break;
8855 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008856 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008857 Opc = X86ISD::COMI;
8858 CC = ISD::SETGT;
8859 break;
8860 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008861 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008862 Opc = X86ISD::COMI;
8863 CC = ISD::SETGE;
8864 break;
8865 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008866 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008867 Opc = X86ISD::COMI;
8868 CC = ISD::SETNE;
8869 break;
8870 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008871 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008872 Opc = X86ISD::UCOMI;
8873 CC = ISD::SETEQ;
8874 break;
8875 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008876 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008877 Opc = X86ISD::UCOMI;
8878 CC = ISD::SETLT;
8879 break;
8880 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008881 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008882 Opc = X86ISD::UCOMI;
8883 CC = ISD::SETLE;
8884 break;
8885 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008886 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008887 Opc = X86ISD::UCOMI;
8888 CC = ISD::SETGT;
8889 break;
8890 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008891 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008892 Opc = X86ISD::UCOMI;
8893 CC = ISD::SETGE;
8894 break;
8895 case Intrinsic::x86_sse_ucomineq_ss:
8896 case Intrinsic::x86_sse2_ucomineq_sd:
8897 Opc = X86ISD::UCOMI;
8898 CC = ISD::SETNE;
8899 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008900 }
Evan Cheng734503b2006-09-11 02:19:56 +00008901
Dan Gohman475871a2008-07-27 21:46:04 +00008902 SDValue LHS = Op.getOperand(1);
8903 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008904 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008905 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008906 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8907 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8908 DAG.getConstant(X86CC, MVT::i8), Cond);
8909 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008910 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008911 // ptest and testp intrinsics. The intrinsic these come from are designed to
8912 // return an integer value, not just an instruction so lower it to the ptest
8913 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008914 case Intrinsic::x86_sse41_ptestz:
8915 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008916 case Intrinsic::x86_sse41_ptestnzc:
8917 case Intrinsic::x86_avx_ptestz_256:
8918 case Intrinsic::x86_avx_ptestc_256:
8919 case Intrinsic::x86_avx_ptestnzc_256:
8920 case Intrinsic::x86_avx_vtestz_ps:
8921 case Intrinsic::x86_avx_vtestc_ps:
8922 case Intrinsic::x86_avx_vtestnzc_ps:
8923 case Intrinsic::x86_avx_vtestz_pd:
8924 case Intrinsic::x86_avx_vtestc_pd:
8925 case Intrinsic::x86_avx_vtestnzc_pd:
8926 case Intrinsic::x86_avx_vtestz_ps_256:
8927 case Intrinsic::x86_avx_vtestc_ps_256:
8928 case Intrinsic::x86_avx_vtestnzc_ps_256:
8929 case Intrinsic::x86_avx_vtestz_pd_256:
8930 case Intrinsic::x86_avx_vtestc_pd_256:
8931 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8932 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008933 unsigned X86CC = 0;
8934 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008935 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008936 case Intrinsic::x86_avx_vtestz_ps:
8937 case Intrinsic::x86_avx_vtestz_pd:
8938 case Intrinsic::x86_avx_vtestz_ps_256:
8939 case Intrinsic::x86_avx_vtestz_pd_256:
8940 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008941 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008942 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008943 // ZF = 1
8944 X86CC = X86::COND_E;
8945 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008946 case Intrinsic::x86_avx_vtestc_ps:
8947 case Intrinsic::x86_avx_vtestc_pd:
8948 case Intrinsic::x86_avx_vtestc_ps_256:
8949 case Intrinsic::x86_avx_vtestc_pd_256:
8950 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008951 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008952 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008953 // CF = 1
8954 X86CC = X86::COND_B;
8955 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008956 case Intrinsic::x86_avx_vtestnzc_ps:
8957 case Intrinsic::x86_avx_vtestnzc_pd:
8958 case Intrinsic::x86_avx_vtestnzc_ps_256:
8959 case Intrinsic::x86_avx_vtestnzc_pd_256:
8960 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008961 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008962 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008963 // ZF and CF = 0
8964 X86CC = X86::COND_A;
8965 break;
8966 }
Eric Christopherfd179292009-08-27 18:07:15 +00008967
Eric Christopher71c67532009-07-29 00:28:05 +00008968 SDValue LHS = Op.getOperand(1);
8969 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008970 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8971 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008972 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8973 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8974 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008975 }
Evan Cheng5759f972008-05-04 09:15:50 +00008976
8977 // Fix vector shift instructions where the last operand is a non-immediate
8978 // i32 value.
8979 case Intrinsic::x86_sse2_pslli_w:
8980 case Intrinsic::x86_sse2_pslli_d:
8981 case Intrinsic::x86_sse2_pslli_q:
8982 case Intrinsic::x86_sse2_psrli_w:
8983 case Intrinsic::x86_sse2_psrli_d:
8984 case Intrinsic::x86_sse2_psrli_q:
8985 case Intrinsic::x86_sse2_psrai_w:
8986 case Intrinsic::x86_sse2_psrai_d:
8987 case Intrinsic::x86_mmx_pslli_w:
8988 case Intrinsic::x86_mmx_pslli_d:
8989 case Intrinsic::x86_mmx_pslli_q:
8990 case Intrinsic::x86_mmx_psrli_w:
8991 case Intrinsic::x86_mmx_psrli_d:
8992 case Intrinsic::x86_mmx_psrli_q:
8993 case Intrinsic::x86_mmx_psrai_w:
8994 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008995 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008996 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008997 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008998
8999 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009000 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009001 switch (IntNo) {
9002 case Intrinsic::x86_sse2_pslli_w:
9003 NewIntNo = Intrinsic::x86_sse2_psll_w;
9004 break;
9005 case Intrinsic::x86_sse2_pslli_d:
9006 NewIntNo = Intrinsic::x86_sse2_psll_d;
9007 break;
9008 case Intrinsic::x86_sse2_pslli_q:
9009 NewIntNo = Intrinsic::x86_sse2_psll_q;
9010 break;
9011 case Intrinsic::x86_sse2_psrli_w:
9012 NewIntNo = Intrinsic::x86_sse2_psrl_w;
9013 break;
9014 case Intrinsic::x86_sse2_psrli_d:
9015 NewIntNo = Intrinsic::x86_sse2_psrl_d;
9016 break;
9017 case Intrinsic::x86_sse2_psrli_q:
9018 NewIntNo = Intrinsic::x86_sse2_psrl_q;
9019 break;
9020 case Intrinsic::x86_sse2_psrai_w:
9021 NewIntNo = Intrinsic::x86_sse2_psra_w;
9022 break;
9023 case Intrinsic::x86_sse2_psrai_d:
9024 NewIntNo = Intrinsic::x86_sse2_psra_d;
9025 break;
9026 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00009027 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009028 switch (IntNo) {
9029 case Intrinsic::x86_mmx_pslli_w:
9030 NewIntNo = Intrinsic::x86_mmx_psll_w;
9031 break;
9032 case Intrinsic::x86_mmx_pslli_d:
9033 NewIntNo = Intrinsic::x86_mmx_psll_d;
9034 break;
9035 case Intrinsic::x86_mmx_pslli_q:
9036 NewIntNo = Intrinsic::x86_mmx_psll_q;
9037 break;
9038 case Intrinsic::x86_mmx_psrli_w:
9039 NewIntNo = Intrinsic::x86_mmx_psrl_w;
9040 break;
9041 case Intrinsic::x86_mmx_psrli_d:
9042 NewIntNo = Intrinsic::x86_mmx_psrl_d;
9043 break;
9044 case Intrinsic::x86_mmx_psrli_q:
9045 NewIntNo = Intrinsic::x86_mmx_psrl_q;
9046 break;
9047 case Intrinsic::x86_mmx_psrai_w:
9048 NewIntNo = Intrinsic::x86_mmx_psra_w;
9049 break;
9050 case Intrinsic::x86_mmx_psrai_d:
9051 NewIntNo = Intrinsic::x86_mmx_psra_d;
9052 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00009053 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00009054 }
9055 break;
9056 }
9057 }
Mon P Wangefa42202009-09-03 19:56:25 +00009058
9059 // The vector shift intrinsics with scalars uses 32b shift amounts but
9060 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9061 // to be zero.
9062 SDValue ShOps[4];
9063 ShOps[0] = ShAmt;
9064 ShOps[1] = DAG.getConstant(0, MVT::i32);
9065 if (ShAmtVT == MVT::v4i32) {
9066 ShOps[2] = DAG.getUNDEF(MVT::i32);
9067 ShOps[3] = DAG.getUNDEF(MVT::i32);
9068 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9069 } else {
9070 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00009071// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00009072 }
9073
Owen Andersone50ed302009-08-10 22:56:29 +00009074 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009075 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009076 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009077 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00009078 Op.getOperand(1), ShAmt);
9079 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00009080 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00009081}
Evan Cheng72261582005-12-20 06:22:03 +00009082
Dan Gohmand858e902010-04-17 15:26:15 +00009083SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9084 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00009085 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9086 MFI->setReturnAddressIsTaken(true);
9087
Bill Wendling64e87322009-01-16 19:25:27 +00009088 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009089 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00009090
9091 if (Depth > 0) {
9092 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9093 SDValue Offset =
9094 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00009095 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009096 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009097 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009098 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00009099 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00009100 }
9101
9102 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00009103 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00009104 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009105 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009106}
9107
Dan Gohmand858e902010-04-17 15:26:15 +00009108SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00009109 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9110 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00009111
Owen Andersone50ed302009-08-10 22:56:29 +00009112 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009113 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00009114 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9115 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00009116 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00009117 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00009118 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9119 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00009120 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00009121 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00009122}
9123
Dan Gohman475871a2008-07-27 21:46:04 +00009124SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009125 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009126 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009127}
9128
Dan Gohmand858e902010-04-17 15:26:15 +00009129SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009130 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00009131 SDValue Chain = Op.getOperand(0);
9132 SDValue Offset = Op.getOperand(1);
9133 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009134 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009135
Dan Gohmand8816272010-08-11 18:14:00 +00009136 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9137 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9138 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009139 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009140
Dan Gohmand8816272010-08-11 18:14:00 +00009141 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9142 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009143 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009144 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9145 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00009146 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009147 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009148
Dale Johannesene4d209d2009-02-03 20:21:25 +00009149 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009150 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009151 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009152}
9153
Dan Gohman475871a2008-07-27 21:46:04 +00009154SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009155 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00009156 SDValue Root = Op.getOperand(0);
9157 SDValue Trmp = Op.getOperand(1); // trampoline
9158 SDValue FPtr = Op.getOperand(2); // nested function
9159 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009160 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009161
Dan Gohman69de1932008-02-06 22:27:42 +00009162 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009163
9164 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009165 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00009166
9167 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00009168 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
9169 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00009170
Evan Cheng0e6a0522011-07-18 20:57:22 +00009171 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9172 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00009173
9174 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9175
9176 // Load the pointer to the nested function into R11.
9177 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00009178 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00009179 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009180 Addr, MachinePointerInfo(TrmpAddr),
9181 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009182
Owen Anderson825b72b2009-08-11 20:47:22 +00009183 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9184 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009185 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9186 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00009187 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009188
9189 // Load the 'nest' parameter value into R10.
9190 // R10 is specified in X86CallingConv.td
9191 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00009192 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9193 DAG.getConstant(10, MVT::i64));
9194 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009195 Addr, MachinePointerInfo(TrmpAddr, 10),
9196 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009197
Owen Anderson825b72b2009-08-11 20:47:22 +00009198 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9199 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009200 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9201 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00009202 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009203
9204 // Jump to the nested function.
9205 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00009206 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9207 DAG.getConstant(20, MVT::i64));
9208 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009209 Addr, MachinePointerInfo(TrmpAddr, 20),
9210 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009211
9212 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00009213 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9214 DAG.getConstant(22, MVT::i64));
9215 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009216 MachinePointerInfo(TrmpAddr, 22),
9217 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009218
Dan Gohman475871a2008-07-27 21:46:04 +00009219 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009220 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009221 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009222 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00009223 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00009224 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00009225 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00009226 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009227
9228 switch (CC) {
9229 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00009230 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009231 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009232 case CallingConv::X86_StdCall: {
9233 // Pass 'nest' parameter in ECX.
9234 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009235 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009236
9237 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009238 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00009239 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009240
Chris Lattner58d74912008-03-12 17:45:29 +00009241 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00009242 unsigned InRegCount = 0;
9243 unsigned Idx = 1;
9244
9245 for (FunctionType::param_iterator I = FTy->param_begin(),
9246 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00009247 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00009248 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009249 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009250
9251 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009252 report_fatal_error("Nest register in use - reduce number of inreg"
9253 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009254 }
9255 }
9256 break;
9257 }
9258 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009259 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009260 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009261 // Pass 'nest' parameter in EAX.
9262 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009263 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009264 break;
9265 }
9266
Dan Gohman475871a2008-07-27 21:46:04 +00009267 SDValue OutChains[4];
9268 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009269
Owen Anderson825b72b2009-08-11 20:47:22 +00009270 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9271 DAG.getConstant(10, MVT::i32));
9272 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009273
Chris Lattnera62fe662010-02-05 19:20:30 +00009274 // This is storing the opcode for MOV32ri.
9275 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009276 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009277 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009278 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009279 Trmp, MachinePointerInfo(TrmpAddr),
9280 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009281
Owen Anderson825b72b2009-08-11 20:47:22 +00009282 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9283 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009284 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9285 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009286 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009287
Chris Lattnera62fe662010-02-05 19:20:30 +00009288 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009289 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9290 DAG.getConstant(5, MVT::i32));
9291 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009292 MachinePointerInfo(TrmpAddr, 5),
9293 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009294
Owen Anderson825b72b2009-08-11 20:47:22 +00009295 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9296 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009297 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9298 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009299 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009300
Dan Gohman475871a2008-07-27 21:46:04 +00009301 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009302 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009303 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009304 }
9305}
9306
Dan Gohmand858e902010-04-17 15:26:15 +00009307SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9308 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009309 /*
9310 The rounding mode is in bits 11:10 of FPSR, and has the following
9311 settings:
9312 00 Round to nearest
9313 01 Round to -inf
9314 10 Round to +inf
9315 11 Round to 0
9316
9317 FLT_ROUNDS, on the other hand, expects the following:
9318 -1 Undefined
9319 0 Round to 0
9320 1 Round to nearest
9321 2 Round to +inf
9322 3 Round to -inf
9323
9324 To perform the conversion, we do:
9325 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9326 */
9327
9328 MachineFunction &MF = DAG.getMachineFunction();
9329 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009330 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009331 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009332 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009333 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009334
9335 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009336 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009337 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009338
Michael J. Spencerec38de22010-10-10 22:04:20 +00009339
Chris Lattner2156b792010-09-22 01:11:26 +00009340 MachineMemOperand *MMO =
9341 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9342 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009343
Chris Lattner2156b792010-09-22 01:11:26 +00009344 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9345 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9346 DAG.getVTList(MVT::Other),
9347 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009348
9349 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009350 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009351 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009352
9353 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009354 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009355 DAG.getNode(ISD::SRL, DL, MVT::i16,
9356 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009357 CWD, DAG.getConstant(0x800, MVT::i16)),
9358 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009359 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009360 DAG.getNode(ISD::SRL, DL, MVT::i16,
9361 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009362 CWD, DAG.getConstant(0x400, MVT::i16)),
9363 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009364
Dan Gohman475871a2008-07-27 21:46:04 +00009365 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009366 DAG.getNode(ISD::AND, DL, MVT::i16,
9367 DAG.getNode(ISD::ADD, DL, MVT::i16,
9368 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009369 DAG.getConstant(1, MVT::i16)),
9370 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009371
9372
Duncan Sands83ec4b62008-06-06 12:08:01 +00009373 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009374 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009375}
9376
Dan Gohmand858e902010-04-17 15:26:15 +00009377SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009378 EVT VT = Op.getValueType();
9379 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009380 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009381 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009382
9383 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009384 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009385 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009386 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009387 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009388 }
Evan Cheng18efe262007-12-14 02:13:44 +00009389
Evan Cheng152804e2007-12-14 08:30:15 +00009390 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009391 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009392 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009393
9394 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009395 SDValue Ops[] = {
9396 Op,
9397 DAG.getConstant(NumBits+NumBits-1, OpVT),
9398 DAG.getConstant(X86::COND_E, MVT::i8),
9399 Op.getValue(1)
9400 };
9401 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009402
9403 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009404 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009405
Owen Anderson825b72b2009-08-11 20:47:22 +00009406 if (VT == MVT::i8)
9407 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009408 return Op;
9409}
9410
Dan Gohmand858e902010-04-17 15:26:15 +00009411SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009412 EVT VT = Op.getValueType();
9413 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009414 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009415 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009416
9417 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009418 if (VT == MVT::i8) {
9419 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009420 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009421 }
Evan Cheng152804e2007-12-14 08:30:15 +00009422
9423 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009424 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009425 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009426
9427 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009428 SDValue Ops[] = {
9429 Op,
9430 DAG.getConstant(NumBits, OpVT),
9431 DAG.getConstant(X86::COND_E, MVT::i8),
9432 Op.getValue(1)
9433 };
9434 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009435
Owen Anderson825b72b2009-08-11 20:47:22 +00009436 if (VT == MVT::i8)
9437 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009438 return Op;
9439}
9440
Craig Topper13894fa2011-08-24 06:14:18 +00009441// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
9442// ones, and then concatenate the result back.
9443static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00009444 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +00009445
9446 assert(VT.getSizeInBits() == 256 && VT.isInteger() &&
9447 "Unsupported value type for operation");
9448
9449 int NumElems = VT.getVectorNumElements();
9450 DebugLoc dl = Op.getDebugLoc();
9451 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
9452 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
9453
9454 // Extract the LHS vectors
9455 SDValue LHS = Op.getOperand(0);
9456 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
9457 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
9458
9459 // Extract the RHS vectors
9460 SDValue RHS = Op.getOperand(1);
9461 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
9462 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
9463
9464 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9465 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9466
9467 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9468 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
9469 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
9470}
9471
9472SDValue X86TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) const {
9473 assert(Op.getValueType().getSizeInBits() == 256 &&
9474 Op.getValueType().isInteger() &&
9475 "Only handle AVX 256-bit vector integer operation");
9476 return Lower256IntArith(Op, DAG);
9477}
9478
9479SDValue X86TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) const {
9480 assert(Op.getValueType().getSizeInBits() == 256 &&
9481 Op.getValueType().isInteger() &&
9482 "Only handle AVX 256-bit vector integer operation");
9483 return Lower256IntArith(Op, DAG);
9484}
9485
9486SDValue X86TargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
9487 EVT VT = Op.getValueType();
9488
9489 // Decompose 256-bit ops into smaller 128-bit ops.
9490 if (VT.getSizeInBits() == 256)
9491 return Lower256IntArith(Op, DAG);
9492
Owen Anderson825b72b2009-08-11 20:47:22 +00009493 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009494 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009495
Mon P Wangaf9b9522008-12-18 21:42:19 +00009496 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9497 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9498 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9499 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9500 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9501 //
9502 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9503 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9504 // return AloBlo + AloBhi + AhiBlo;
9505
9506 SDValue A = Op.getOperand(0);
9507 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009508
Dale Johannesene4d209d2009-02-03 20:21:25 +00009509 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009510 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9511 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009512 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009513 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9514 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009515 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009516 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009517 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009518 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009519 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009520 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009521 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009522 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009523 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009524 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009525 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9526 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009527 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009528 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9529 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009530 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9531 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009532 return Res;
9533}
9534
Nadav Rotem43012222011-05-11 08:12:09 +00009535SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9536
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009537 EVT VT = Op.getValueType();
9538 DebugLoc dl = Op.getDebugLoc();
9539 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009540 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009541 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009542
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009543 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9544 return SDValue();
9545
9546 // Decompose 256-bit shifts into smaller 128-bit shifts.
9547 if (VT.getSizeInBits() == 256) {
9548 int NumElems = VT.getVectorNumElements();
9549 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9550 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9551
9552 // Extract the two vectors
9553 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9554 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9555 DAG, dl);
9556
9557 // Recreate the shift amount vectors
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009558 SDValue Amt1, Amt2;
9559 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
9560 // Constant shift amount
9561 SmallVector<SDValue, 4> Amt1Csts;
9562 SmallVector<SDValue, 4> Amt2Csts;
9563 for (int i = 0; i < NumElems/2; ++i)
9564 Amt1Csts.push_back(Amt->getOperand(i));
9565 for (int i = NumElems/2; i < NumElems; ++i)
9566 Amt2Csts.push_back(Amt->getOperand(i));
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009567
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009568 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9569 &Amt1Csts[0], NumElems/2);
9570 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9571 &Amt2Csts[0], NumElems/2);
9572 } else {
9573 // Variable shift amount
9574 Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
9575 Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
9576 DAG, dl);
9577 }
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009578
9579 // Issue new vector shifts for the smaller types
9580 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9581 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9582
9583 // Concatenate the result back
9584 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9585 }
Nate Begeman51409212010-07-28 00:21:48 +00009586
Nadav Rotem43012222011-05-11 08:12:09 +00009587 // Optimize shl/srl/sra with constant shift amount.
9588 if (isSplatVector(Amt.getNode())) {
9589 SDValue SclrAmt = Amt->getOperand(0);
9590 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9591 uint64_t ShiftAmt = C->getZExtValue();
9592
9593 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9594 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9595 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9596 R, DAG.getConstant(ShiftAmt, MVT::i32));
9597
9598 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9599 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9600 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9601 R, DAG.getConstant(ShiftAmt, MVT::i32));
9602
9603 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9604 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9605 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9606 R, DAG.getConstant(ShiftAmt, MVT::i32));
9607
9608 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9609 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9610 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9611 R, DAG.getConstant(ShiftAmt, MVT::i32));
9612
9613 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9614 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9615 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9616 R, DAG.getConstant(ShiftAmt, MVT::i32));
9617
9618 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9619 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9620 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9621 R, DAG.getConstant(ShiftAmt, MVT::i32));
9622
9623 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9624 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9625 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9626 R, DAG.getConstant(ShiftAmt, MVT::i32));
9627
9628 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9629 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9630 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9631 R, DAG.getConstant(ShiftAmt, MVT::i32));
9632 }
9633 }
9634
9635 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009636 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009637 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9638 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9639 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9640
9641 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009642
Nate Begeman51409212010-07-28 00:21:48 +00009643 std::vector<Constant*> CV(4, CI);
9644 Constant *C = ConstantVector::get(CV);
9645 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9646 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009647 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009648 false, false, 16);
9649
9650 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009651 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009652 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9653 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9654 }
Nadav Rotem43012222011-05-11 08:12:09 +00009655 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009656 // a = a << 5;
9657 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9658 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9659 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9660
9661 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9662 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9663
9664 std::vector<Constant*> CVM1(16, CM1);
9665 std::vector<Constant*> CVM2(16, CM2);
9666 Constant *C = ConstantVector::get(CVM1);
9667 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9668 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009669 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009670 false, false, 16);
9671
9672 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9673 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9674 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9675 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9676 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009677 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009678 // a += a
9679 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009680
Nate Begeman51409212010-07-28 00:21:48 +00009681 C = ConstantVector::get(CVM2);
9682 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9683 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009684 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009685 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009686
Nate Begeman51409212010-07-28 00:21:48 +00009687 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9688 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9689 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9690 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9691 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009692 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009693 // a += a
9694 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009695
Nate Begeman51409212010-07-28 00:21:48 +00009696 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009697 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009698 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9699 return R;
9700 }
9701 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009702}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009703
Dan Gohmand858e902010-04-17 15:26:15 +00009704SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009705 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9706 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009707 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9708 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009709 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009710 SDValue LHS = N->getOperand(0);
9711 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009712 unsigned BaseOp = 0;
9713 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009714 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009715 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009716 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009717 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009718 // A subtract of one will be selected as a INC. Note that INC doesn't
9719 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009720 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9721 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009722 BaseOp = X86ISD::INC;
9723 Cond = X86::COND_O;
9724 break;
9725 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009726 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009727 Cond = X86::COND_O;
9728 break;
9729 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009730 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009731 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009732 break;
9733 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009734 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9735 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009736 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9737 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009738 BaseOp = X86ISD::DEC;
9739 Cond = X86::COND_O;
9740 break;
9741 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009742 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009743 Cond = X86::COND_O;
9744 break;
9745 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009746 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009747 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009748 break;
9749 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009750 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009751 Cond = X86::COND_O;
9752 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009753 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9754 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9755 MVT::i32);
9756 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009757
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009758 SDValue SetCC =
9759 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9760 DAG.getConstant(X86::COND_O, MVT::i32),
9761 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009762
Dan Gohman6e5fda22011-07-22 18:45:15 +00009763 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009764 }
Bill Wendling74c37652008-12-09 22:08:41 +00009765 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009766
Bill Wendling61edeb52008-12-02 01:06:39 +00009767 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009768 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009769 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009770
Bill Wendling61edeb52008-12-02 01:06:39 +00009771 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009772 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9773 DAG.getConstant(Cond, MVT::i32),
9774 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009775
Dan Gohman6e5fda22011-07-22 18:45:15 +00009776 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009777}
9778
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009779SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9780 DebugLoc dl = Op.getDebugLoc();
9781 SDNode* Node = Op.getNode();
9782 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9783 EVT VT = Node->getValueType(0);
9784
9785 if (Subtarget->hasSSE2() && VT.isVector()) {
9786 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9787 ExtraVT.getScalarType().getSizeInBits();
9788 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9789
9790 unsigned SHLIntrinsicsID = 0;
9791 unsigned SRAIntrinsicsID = 0;
9792 switch (VT.getSimpleVT().SimpleTy) {
9793 default:
9794 return SDValue();
9795 case MVT::v2i64: {
9796 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9797 SRAIntrinsicsID = 0;
9798 break;
9799 }
9800 case MVT::v4i32: {
9801 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9802 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9803 break;
9804 }
9805 case MVT::v8i16: {
9806 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9807 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9808 break;
9809 }
9810 }
9811
9812 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9813 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9814 Node->getOperand(0), ShAmt);
9815
9816 // In case of 1 bit sext, no need to shr
9817 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9818
9819 if (SRAIntrinsicsID) {
9820 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9821 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9822 Tmp1, ShAmt);
9823 }
9824 return Tmp1;
9825 }
9826
9827 return SDValue();
9828}
9829
9830
Eric Christopher9a9d2752010-07-22 02:48:34 +00009831SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9832 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009833
Eric Christopher77ed1352011-07-08 00:04:56 +00009834 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9835 // There isn't any reason to disable it if the target processor supports it.
9836 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009837 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009838 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009839 SDValue Ops[] = {
9840 DAG.getRegister(X86::ESP, MVT::i32), // Base
9841 DAG.getTargetConstant(1, MVT::i8), // Scale
9842 DAG.getRegister(0, MVT::i32), // Index
9843 DAG.getTargetConstant(0, MVT::i32), // Disp
9844 DAG.getRegister(0, MVT::i32), // Segment.
9845 Zero,
9846 Chain
9847 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009848 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009849 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9850 array_lengthof(Ops));
9851 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009852 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009853
Eric Christopher9a9d2752010-07-22 02:48:34 +00009854 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009855 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009856 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009857
Chris Lattner132929a2010-08-14 17:26:09 +00009858 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9859 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9860 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9861 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009862
Chris Lattner132929a2010-08-14 17:26:09 +00009863 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9864 if (!Op1 && !Op2 && !Op3 && Op4)
9865 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009866
Chris Lattner132929a2010-08-14 17:26:09 +00009867 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9868 if (Op1 && !Op2 && !Op3 && !Op4)
9869 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009870
9871 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009872 // (MFENCE)>;
9873 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009874}
9875
Eli Friedman14648462011-07-27 22:21:52 +00009876SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9877 SelectionDAG &DAG) const {
9878 DebugLoc dl = Op.getDebugLoc();
9879 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9880 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9881 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9882 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9883
9884 // The only fence that needs an instruction is a sequentially-consistent
9885 // cross-thread fence.
9886 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9887 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9888 // no-sse2). There isn't any reason to disable it if the target processor
9889 // supports it.
9890 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9891 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9892
9893 SDValue Chain = Op.getOperand(0);
9894 SDValue Zero = DAG.getConstant(0, MVT::i32);
9895 SDValue Ops[] = {
9896 DAG.getRegister(X86::ESP, MVT::i32), // Base
9897 DAG.getTargetConstant(1, MVT::i8), // Scale
9898 DAG.getRegister(0, MVT::i32), // Index
9899 DAG.getTargetConstant(0, MVT::i32), // Disp
9900 DAG.getRegister(0, MVT::i32), // Segment.
9901 Zero,
9902 Chain
9903 };
9904 SDNode *Res =
9905 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9906 array_lengthof(Ops));
9907 return SDValue(Res, 0);
9908 }
9909
9910 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9911 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9912}
9913
9914
Dan Gohmand858e902010-04-17 15:26:15 +00009915SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009916 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009917 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009918 unsigned Reg = 0;
9919 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009920 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009921 default:
9922 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009923 case MVT::i8: Reg = X86::AL; size = 1; break;
9924 case MVT::i16: Reg = X86::AX; size = 2; break;
9925 case MVT::i32: Reg = X86::EAX; size = 4; break;
9926 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009927 assert(Subtarget->is64Bit() && "Node not type legal!");
9928 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009929 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009930 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009931 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009932 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009933 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009934 Op.getOperand(1),
9935 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009936 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009937 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009938 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009939 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9940 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9941 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009942 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009943 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009944 return cpOut;
9945}
9946
Duncan Sands1607f052008-12-01 11:39:25 +00009947SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009948 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009949 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009950 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009951 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009952 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009953 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009954 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9955 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009956 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009957 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9958 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009959 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009960 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009961 rdx.getValue(1)
9962 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009963 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009964}
9965
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009966SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009967 SelectionDAG &DAG) const {
9968 EVT SrcVT = Op.getOperand(0).getValueType();
9969 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009970 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9971 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009972 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009973 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009974 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009975 // i64 <=> MMX conversions are Legal.
9976 if (SrcVT==MVT::i64 && DstVT.isVector())
9977 return Op;
9978 if (DstVT==MVT::i64 && SrcVT.isVector())
9979 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009980 // MMX <=> MMX conversions are Legal.
9981 if (SrcVT.isVector() && DstVT.isVector())
9982 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009983 // All other conversions need to be expanded.
9984 return SDValue();
9985}
Chris Lattner5b856542010-12-20 00:59:46 +00009986
Dan Gohmand858e902010-04-17 15:26:15 +00009987SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009988 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009989 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009990 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009991 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009992 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009993 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009994 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009995 Node->getOperand(0),
9996 Node->getOperand(1), negOp,
9997 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +00009998 cast<AtomicSDNode>(Node)->getAlignment(),
9999 cast<AtomicSDNode>(Node)->getOrdering(),
10000 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000010001}
10002
Eli Friedman327236c2011-08-24 20:50:09 +000010003static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
10004 SDNode *Node = Op.getNode();
10005 DebugLoc dl = Node->getDebugLoc();
10006
10007 // Convert seq_cst store -> xchg
10008 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent) {
Eli Friedman4317fe12011-08-24 21:17:30 +000010009 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
10010 cast<AtomicSDNode>(Node)->getMemoryVT(),
10011 Node->getOperand(0),
10012 Node->getOperand(1), Node->getOperand(2),
10013 cast<AtomicSDNode>(Node)->getSrcValue(),
10014 cast<AtomicSDNode>(Node)->getAlignment(),
10015 cast<AtomicSDNode>(Node)->getOrdering(),
10016 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000010017 return Swap.getValue(1);
10018 }
10019 // Other atomic stores have a simple pattern.
10020 return Op;
10021}
10022
Chris Lattner5b856542010-12-20 00:59:46 +000010023static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
10024 EVT VT = Op.getNode()->getValueType(0);
10025
10026 // Let legalize expand this if it isn't a legal type yet.
10027 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
10028 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010029
Chris Lattner5b856542010-12-20 00:59:46 +000010030 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010031
Chris Lattner5b856542010-12-20 00:59:46 +000010032 unsigned Opc;
10033 bool ExtraOp = false;
10034 switch (Op.getOpcode()) {
10035 default: assert(0 && "Invalid code");
10036 case ISD::ADDC: Opc = X86ISD::ADD; break;
10037 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
10038 case ISD::SUBC: Opc = X86ISD::SUB; break;
10039 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
10040 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010041
Chris Lattner5b856542010-12-20 00:59:46 +000010042 if (!ExtraOp)
10043 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10044 Op.getOperand(1));
10045 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10046 Op.getOperand(1), Op.getOperand(2));
10047}
10048
Evan Cheng0db9fe62006-04-25 20:13:52 +000010049/// LowerOperation - Provide custom lowering hooks for some operations.
10050///
Dan Gohmand858e902010-04-17 15:26:15 +000010051SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000010052 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010053 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010054 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +000010055 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +000010056 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010057 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
10058 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000010059 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010060 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000010061 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010062 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
10063 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
10064 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +000010065 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +000010066 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010067 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
10068 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
10069 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010070 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000010071 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000010072 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010073 case ISD::SHL_PARTS:
10074 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000010075 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010076 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000010077 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010078 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000010079 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010080 case ISD::FABS: return LowerFABS(Op, DAG);
10081 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000010082 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000010083 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000010084 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +000010085 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000010086 case ISD::SELECT: return LowerSELECT(Op, DAG);
10087 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010088 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010089 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000010090 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +000010091 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010092 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000010093 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
10094 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010095 case ISD::FRAME_TO_ARGS_OFFSET:
10096 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010097 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010098 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +000010099 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000010100 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000010101 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
10102 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010103 case ISD::MUL: return LowerMUL(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000010104 case ISD::SRA:
10105 case ISD::SRL:
10106 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000010107 case ISD::SADDO:
10108 case ISD::UADDO:
10109 case ISD::SSUBO:
10110 case ISD::USUBO:
10111 case ISD::SMULO:
10112 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +000010113 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010114 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000010115 case ISD::ADDC:
10116 case ISD::ADDE:
10117 case ISD::SUBC:
10118 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010119 case ISD::ADD: return LowerADD(Op, DAG);
10120 case ISD::SUB: return LowerSUB(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010121 }
Chris Lattner27a6c732007-11-24 07:07:01 +000010122}
10123
Duncan Sands1607f052008-12-01 11:39:25 +000010124void X86TargetLowering::
10125ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010126 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010127 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010128 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +000010129 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000010130
10131 SDValue Chain = Node->getOperand(0);
10132 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010133 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010134 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000010135 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010136 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000010137 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000010138 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000010139 SDValue Result =
10140 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
10141 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000010142 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010143 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010144 Results.push_back(Result.getValue(2));
10145}
10146
Duncan Sands126d9072008-07-04 11:47:58 +000010147/// ReplaceNodeResults - Replace a node with an illegal result type
10148/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000010149void X86TargetLowering::ReplaceNodeResults(SDNode *N,
10150 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010151 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010152 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +000010153 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000010154 default:
Duncan Sands1607f052008-12-01 11:39:25 +000010155 assert(false && "Do not know how to custom type legalize this operation!");
10156 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010157 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000010158 case ISD::ADDC:
10159 case ISD::ADDE:
10160 case ISD::SUBC:
10161 case ISD::SUBE:
10162 // We don't want to expand or promote these.
10163 return;
Duncan Sands1607f052008-12-01 11:39:25 +000010164 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +000010165 std::pair<SDValue,SDValue> Vals =
10166 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +000010167 SDValue FIST = Vals.first, StackSlot = Vals.second;
10168 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000010169 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000010170 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +000010171 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
10172 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +000010173 }
10174 return;
10175 }
10176 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010177 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010178 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010179 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010180 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000010181 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000010182 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010183 eax.getValue(2));
10184 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
10185 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000010186 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010187 Results.push_back(edx.getValue(1));
10188 return;
10189 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010190 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000010191 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010192 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +000010193 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +000010194 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
10195 DAG.getConstant(0, MVT::i32));
10196 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
10197 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +000010198 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
10199 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +000010200 cpInL.getValue(1));
10201 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +000010202 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
10203 DAG.getConstant(0, MVT::i32));
10204 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
10205 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +000010206 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +000010207 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +000010208 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +000010209 swapInL.getValue(1));
10210 SDValue Ops[] = { swapInH.getValue(0),
10211 N->getOperand(1),
10212 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010213 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010214 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
10215 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
10216 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +000010217 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +000010218 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +000010219 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +000010220 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000010221 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010222 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010223 Results.push_back(cpOutH.getValue(1));
10224 return;
10225 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010226 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +000010227 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
10228 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010229 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +000010230 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
10231 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010232 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +000010233 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
10234 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010235 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +000010236 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
10237 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010238 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +000010239 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
10240 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010241 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +000010242 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
10243 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010244 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +000010245 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
10246 return;
Chris Lattner27a6c732007-11-24 07:07:01 +000010247 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000010248}
10249
Evan Cheng72261582005-12-20 06:22:03 +000010250const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
10251 switch (Opcode) {
10252 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000010253 case X86ISD::BSF: return "X86ISD::BSF";
10254 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000010255 case X86ISD::SHLD: return "X86ISD::SHLD";
10256 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000010257 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010258 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000010259 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010260 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000010261 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000010262 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000010263 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
10264 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
10265 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000010266 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000010267 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000010268 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000010269 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000010270 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000010271 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000010272 case X86ISD::COMI: return "X86ISD::COMI";
10273 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000010274 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000010275 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000010276 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
10277 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000010278 case X86ISD::CMOV: return "X86ISD::CMOV";
10279 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000010280 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000010281 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
10282 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000010283 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000010284 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000010285 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010286 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000010287 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010288 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
10289 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000010290 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000010291 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000010292 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +000010293 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
10294 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
10295 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +000010296 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +000010297 case X86ISD::FMAX: return "X86ISD::FMAX";
10298 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +000010299 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
10300 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010301 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000010302 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010303 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000010304 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000010305 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +000010306 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
10307 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010308 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
10309 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
10310 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
10311 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
10312 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
10313 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000010314 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
10315 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +000010316 case X86ISD::VSHL: return "X86ISD::VSHL";
10317 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +000010318 case X86ISD::CMPPD: return "X86ISD::CMPPD";
10319 case X86ISD::CMPPS: return "X86ISD::CMPPS";
10320 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
10321 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
10322 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
10323 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
10324 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
10325 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
10326 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
10327 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010328 case X86ISD::ADD: return "X86ISD::ADD";
10329 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000010330 case X86ISD::ADC: return "X86ISD::ADC";
10331 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000010332 case X86ISD::SMUL: return "X86ISD::SMUL";
10333 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010334 case X86ISD::INC: return "X86ISD::INC";
10335 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010336 case X86ISD::OR: return "X86ISD::OR";
10337 case X86ISD::XOR: return "X86ISD::XOR";
10338 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +000010339 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010340 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010341 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010342 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10343 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10344 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10345 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10346 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10347 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10348 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10349 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10350 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010351 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010352 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010353 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010354 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10355 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010356 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10357 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10358 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10359 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10360 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10361 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10362 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10363 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10364 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010365 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010366 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10367 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10368 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10369 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10370 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10371 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10372 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10373 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10374 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10375 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000010376 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010377 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10378 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10379 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10380 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000010381 case X86ISD::VPERM2F128: return "X86ISD::VPERM2F128";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010382 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010383 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010384 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010385 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +000010386 }
10387}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010388
Chris Lattnerc9addb72007-03-30 23:15:24 +000010389// isLegalAddressingMode - Return true if the addressing mode represented
10390// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010391bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010392 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010393 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010394 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010395 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010396
Chris Lattnerc9addb72007-03-30 23:15:24 +000010397 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010398 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010399 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010400
Chris Lattnerc9addb72007-03-30 23:15:24 +000010401 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010402 unsigned GVFlags =
10403 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010404
Chris Lattnerdfed4132009-07-10 07:38:24 +000010405 // If a reference to this global requires an extra load, we can't fold it.
10406 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010407 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010408
Chris Lattnerdfed4132009-07-10 07:38:24 +000010409 // If BaseGV requires a register for the PIC base, we cannot also have a
10410 // BaseReg specified.
10411 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010412 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010413
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010414 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010415 if ((M != CodeModel::Small || R != Reloc::Static) &&
10416 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010417 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010418 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010419
Chris Lattnerc9addb72007-03-30 23:15:24 +000010420 switch (AM.Scale) {
10421 case 0:
10422 case 1:
10423 case 2:
10424 case 4:
10425 case 8:
10426 // These scales always work.
10427 break;
10428 case 3:
10429 case 5:
10430 case 9:
10431 // These scales are formed with basereg+scalereg. Only accept if there is
10432 // no basereg yet.
10433 if (AM.HasBaseReg)
10434 return false;
10435 break;
10436 default: // Other stuff never works.
10437 return false;
10438 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010439
Chris Lattnerc9addb72007-03-30 23:15:24 +000010440 return true;
10441}
10442
10443
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010444bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010445 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010446 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010447 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10448 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010449 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010450 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010451 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010452}
10453
Owen Andersone50ed302009-08-10 22:56:29 +000010454bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010455 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010456 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010457 unsigned NumBits1 = VT1.getSizeInBits();
10458 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010459 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010460 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010461 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010462}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010463
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010464bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010465 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010466 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010467}
10468
Owen Andersone50ed302009-08-10 22:56:29 +000010469bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010470 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010471 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010472}
10473
Owen Andersone50ed302009-08-10 22:56:29 +000010474bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010475 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010476 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010477}
10478
Evan Cheng60c07e12006-07-05 22:17:51 +000010479/// isShuffleMaskLegal - Targets can use this to indicate that they only
10480/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10481/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10482/// are assumed to be legal.
10483bool
Eric Christopherfd179292009-08-27 18:07:15 +000010484X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010485 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010486 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010487 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010488 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010489
Nate Begemana09008b2009-10-19 02:17:23 +000010490 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010491 return (VT.getVectorNumElements() == 2 ||
10492 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10493 isMOVLMask(M, VT) ||
10494 isSHUFPMask(M, VT) ||
10495 isPSHUFDMask(M, VT) ||
10496 isPSHUFHWMask(M, VT) ||
10497 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010498 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010499 isUNPCKLMask(M, VT) ||
10500 isUNPCKHMask(M, VT) ||
10501 isUNPCKL_v_undef_Mask(M, VT) ||
10502 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010503}
10504
Dan Gohman7d8143f2008-04-09 20:09:42 +000010505bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010506X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010507 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010508 unsigned NumElts = VT.getVectorNumElements();
10509 // FIXME: This collection of masks seems suspect.
10510 if (NumElts == 2)
10511 return true;
10512 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10513 return (isMOVLMask(Mask, VT) ||
10514 isCommutedMOVLMask(Mask, VT, true) ||
10515 isSHUFPMask(Mask, VT) ||
10516 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010517 }
10518 return false;
10519}
10520
10521//===----------------------------------------------------------------------===//
10522// X86 Scheduler Hooks
10523//===----------------------------------------------------------------------===//
10524
Mon P Wang63307c32008-05-05 19:05:59 +000010525// private utility function
10526MachineBasicBlock *
10527X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10528 MachineBasicBlock *MBB,
10529 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010530 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010531 unsigned LoadOpc,
10532 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010533 unsigned notOpc,
10534 unsigned EAXreg,
10535 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010536 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010537 // For the atomic bitwise operator, we generate
10538 // thisMBB:
10539 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010540 // ld t1 = [bitinstr.addr]
10541 // op t2 = t1, [bitinstr.val]
10542 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010543 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10544 // bz newMBB
10545 // fallthrough -->nextMBB
10546 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10547 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010548 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010549 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010550
Mon P Wang63307c32008-05-05 19:05:59 +000010551 /// First build the CFG
10552 MachineFunction *F = MBB->getParent();
10553 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010554 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10555 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10556 F->insert(MBBIter, newMBB);
10557 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010558
Dan Gohman14152b42010-07-06 20:24:04 +000010559 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10560 nextMBB->splice(nextMBB->begin(), thisMBB,
10561 llvm::next(MachineBasicBlock::iterator(bInstr)),
10562 thisMBB->end());
10563 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010564
Mon P Wang63307c32008-05-05 19:05:59 +000010565 // Update thisMBB to fall through to newMBB
10566 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010567
Mon P Wang63307c32008-05-05 19:05:59 +000010568 // newMBB jumps to itself and fall through to nextMBB
10569 newMBB->addSuccessor(nextMBB);
10570 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010571
Mon P Wang63307c32008-05-05 19:05:59 +000010572 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010573 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010574 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010575 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010576 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010577 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010578 int numArgs = bInstr->getNumOperands() - 1;
10579 for (int i=0; i < numArgs; ++i)
10580 argOpers[i] = &bInstr->getOperand(i+1);
10581
10582 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010583 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010584 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010585
Dale Johannesen140be2d2008-08-19 18:47:28 +000010586 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010587 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010588 for (int i=0; i <= lastAddrIndx; ++i)
10589 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010590
Dale Johannesen140be2d2008-08-19 18:47:28 +000010591 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010592 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010593 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010594 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010595 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010596 tt = t1;
10597
Dale Johannesen140be2d2008-08-19 18:47:28 +000010598 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010599 assert((argOpers[valArgIndx]->isReg() ||
10600 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010601 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010602 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010603 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010604 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010605 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010606 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010607 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010608
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010609 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010610 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010611
Dale Johannesene4d209d2009-02-03 20:21:25 +000010612 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010613 for (int i=0; i <= lastAddrIndx; ++i)
10614 (*MIB).addOperand(*argOpers[i]);
10615 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010616 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010617 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10618 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010619
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010620 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010621 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010622
Mon P Wang63307c32008-05-05 19:05:59 +000010623 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010624 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010625
Dan Gohman14152b42010-07-06 20:24:04 +000010626 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010627 return nextMBB;
10628}
10629
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010630// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010631MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010632X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10633 MachineBasicBlock *MBB,
10634 unsigned regOpcL,
10635 unsigned regOpcH,
10636 unsigned immOpcL,
10637 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010638 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010639 // For the atomic bitwise operator, we generate
10640 // thisMBB (instructions are in pairs, except cmpxchg8b)
10641 // ld t1,t2 = [bitinstr.addr]
10642 // newMBB:
10643 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10644 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010645 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010646 // mov ECX, EBX <- t5, t6
10647 // mov EAX, EDX <- t1, t2
10648 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10649 // mov t3, t4 <- EAX, EDX
10650 // bz newMBB
10651 // result in out1, out2
10652 // fallthrough -->nextMBB
10653
10654 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10655 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010656 const unsigned NotOpc = X86::NOT32r;
10657 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10658 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10659 MachineFunction::iterator MBBIter = MBB;
10660 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010661
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010662 /// First build the CFG
10663 MachineFunction *F = MBB->getParent();
10664 MachineBasicBlock *thisMBB = MBB;
10665 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10666 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10667 F->insert(MBBIter, newMBB);
10668 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010669
Dan Gohman14152b42010-07-06 20:24:04 +000010670 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10671 nextMBB->splice(nextMBB->begin(), thisMBB,
10672 llvm::next(MachineBasicBlock::iterator(bInstr)),
10673 thisMBB->end());
10674 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010675
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010676 // Update thisMBB to fall through to newMBB
10677 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010678
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010679 // newMBB jumps to itself and fall through to nextMBB
10680 newMBB->addSuccessor(nextMBB);
10681 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010682
Dale Johannesene4d209d2009-02-03 20:21:25 +000010683 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010684 // Insert instructions into newMBB based on incoming instruction
10685 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010686 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010687 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010688 MachineOperand& dest1Oper = bInstr->getOperand(0);
10689 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010690 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10691 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010692 argOpers[i] = &bInstr->getOperand(i+2);
10693
Dan Gohman71ea4e52010-05-14 21:01:44 +000010694 // We use some of the operands multiple times, so conservatively just
10695 // clear any kill flags that might be present.
10696 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10697 argOpers[i]->setIsKill(false);
10698 }
10699
Evan Chengad5b52f2010-01-08 19:14:57 +000010700 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010701 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010702
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010703 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010704 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010705 for (int i=0; i <= lastAddrIndx; ++i)
10706 (*MIB).addOperand(*argOpers[i]);
10707 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010708 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010709 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010710 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010711 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010712 MachineOperand newOp3 = *(argOpers[3]);
10713 if (newOp3.isImm())
10714 newOp3.setImm(newOp3.getImm()+4);
10715 else
10716 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010717 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010718 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010719
10720 // t3/4 are defined later, at the bottom of the loop
10721 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10722 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010723 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010724 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010725 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010726 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10727
Evan Cheng306b4ca2010-01-08 23:41:50 +000010728 // The subsequent operations should be using the destination registers of
10729 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010730 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010731 t1 = F->getRegInfo().createVirtualRegister(RC);
10732 t2 = F->getRegInfo().createVirtualRegister(RC);
10733 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10734 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010735 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010736 t1 = dest1Oper.getReg();
10737 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010738 }
10739
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010740 int valArgIndx = lastAddrIndx + 1;
10741 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010742 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010743 "invalid operand");
10744 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10745 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010746 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010747 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010748 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010749 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010750 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010751 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010752 (*MIB).addOperand(*argOpers[valArgIndx]);
10753 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010754 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010755 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010756 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010757 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010758 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010759 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010760 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010761 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010762 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010763 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010764
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010765 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010766 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010767 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010768 MIB.addReg(t2);
10769
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010770 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010771 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010772 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010773 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010774
Dale Johannesene4d209d2009-02-03 20:21:25 +000010775 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010776 for (int i=0; i <= lastAddrIndx; ++i)
10777 (*MIB).addOperand(*argOpers[i]);
10778
10779 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010780 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10781 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010782
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010783 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010784 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010785 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010786 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010787
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010788 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010789 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010790
Dan Gohman14152b42010-07-06 20:24:04 +000010791 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010792 return nextMBB;
10793}
10794
10795// private utility function
10796MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010797X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10798 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010799 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010800 // For the atomic min/max operator, we generate
10801 // thisMBB:
10802 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010803 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010804 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010805 // cmp t1, t2
10806 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010807 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010808 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10809 // bz newMBB
10810 // fallthrough -->nextMBB
10811 //
10812 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10813 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010814 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010815 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010816
Mon P Wang63307c32008-05-05 19:05:59 +000010817 /// First build the CFG
10818 MachineFunction *F = MBB->getParent();
10819 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010820 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10821 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10822 F->insert(MBBIter, newMBB);
10823 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010824
Dan Gohman14152b42010-07-06 20:24:04 +000010825 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10826 nextMBB->splice(nextMBB->begin(), thisMBB,
10827 llvm::next(MachineBasicBlock::iterator(mInstr)),
10828 thisMBB->end());
10829 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010830
Mon P Wang63307c32008-05-05 19:05:59 +000010831 // Update thisMBB to fall through to newMBB
10832 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010833
Mon P Wang63307c32008-05-05 19:05:59 +000010834 // newMBB jumps to newMBB and fall through to nextMBB
10835 newMBB->addSuccessor(nextMBB);
10836 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010837
Dale Johannesene4d209d2009-02-03 20:21:25 +000010838 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010839 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010840 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010841 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010842 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010843 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010844 int numArgs = mInstr->getNumOperands() - 1;
10845 for (int i=0; i < numArgs; ++i)
10846 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010847
Mon P Wang63307c32008-05-05 19:05:59 +000010848 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010849 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010850 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010851
Mon P Wangab3e7472008-05-05 22:56:23 +000010852 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010853 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010854 for (int i=0; i <= lastAddrIndx; ++i)
10855 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010856
Mon P Wang63307c32008-05-05 19:05:59 +000010857 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010858 assert((argOpers[valArgIndx]->isReg() ||
10859 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010860 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010861
10862 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010863 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010864 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010865 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010866 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010867 (*MIB).addOperand(*argOpers[valArgIndx]);
10868
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010869 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010870 MIB.addReg(t1);
10871
Dale Johannesene4d209d2009-02-03 20:21:25 +000010872 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010873 MIB.addReg(t1);
10874 MIB.addReg(t2);
10875
10876 // Generate movc
10877 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010878 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010879 MIB.addReg(t2);
10880 MIB.addReg(t1);
10881
10882 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010883 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010884 for (int i=0; i <= lastAddrIndx; ++i)
10885 (*MIB).addOperand(*argOpers[i]);
10886 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010887 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010888 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10889 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010890
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010891 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010892 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010893
Mon P Wang63307c32008-05-05 19:05:59 +000010894 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010895 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010896
Dan Gohman14152b42010-07-06 20:24:04 +000010897 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010898 return nextMBB;
10899}
10900
Eric Christopherf83a5de2009-08-27 18:08:16 +000010901// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010902// or XMM0_V32I8 in AVX all of this code can be replaced with that
10903// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010904MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010905X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010906 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010907 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10908 "Target must have SSE4.2 or AVX features enabled");
10909
Eric Christopherb120ab42009-08-18 22:50:32 +000010910 DebugLoc dl = MI->getDebugLoc();
10911 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010912 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010913 if (!Subtarget->hasAVX()) {
10914 if (memArg)
10915 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10916 else
10917 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10918 } else {
10919 if (memArg)
10920 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10921 else
10922 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10923 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010924
Eric Christopher41c902f2010-11-30 08:20:21 +000010925 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010926 for (unsigned i = 0; i < numArgs; ++i) {
10927 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010928 if (!(Op.isReg() && Op.isImplicit()))
10929 MIB.addOperand(Op);
10930 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010931 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010932 .addReg(X86::XMM0);
10933
Dan Gohman14152b42010-07-06 20:24:04 +000010934 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010935 return BB;
10936}
10937
10938MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010939X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010940 DebugLoc dl = MI->getDebugLoc();
10941 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010942
Eric Christopher228232b2010-11-30 07:20:12 +000010943 // Address into RAX/EAX, other two args into ECX, EDX.
10944 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10945 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10946 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10947 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010948 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010949
Eric Christopher228232b2010-11-30 07:20:12 +000010950 unsigned ValOps = X86::AddrNumOperands;
10951 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10952 .addReg(MI->getOperand(ValOps).getReg());
10953 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10954 .addReg(MI->getOperand(ValOps+1).getReg());
10955
10956 // The instruction doesn't actually take any operands though.
10957 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010958
Eric Christopher228232b2010-11-30 07:20:12 +000010959 MI->eraseFromParent(); // The pseudo is gone now.
10960 return BB;
10961}
10962
10963MachineBasicBlock *
10964X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010965 DebugLoc dl = MI->getDebugLoc();
10966 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010967
Eric Christopher228232b2010-11-30 07:20:12 +000010968 // First arg in ECX, the second in EAX.
10969 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10970 .addReg(MI->getOperand(0).getReg());
10971 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10972 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010973
Eric Christopher228232b2010-11-30 07:20:12 +000010974 // The instruction doesn't actually take any operands though.
10975 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010976
Eric Christopher228232b2010-11-30 07:20:12 +000010977 MI->eraseFromParent(); // The pseudo is gone now.
10978 return BB;
10979}
10980
10981MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010982X86TargetLowering::EmitVAARG64WithCustomInserter(
10983 MachineInstr *MI,
10984 MachineBasicBlock *MBB) const {
10985 // Emit va_arg instruction on X86-64.
10986
10987 // Operands to this pseudo-instruction:
10988 // 0 ) Output : destination address (reg)
10989 // 1-5) Input : va_list address (addr, i64mem)
10990 // 6 ) ArgSize : Size (in bytes) of vararg type
10991 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10992 // 8 ) Align : Alignment of type
10993 // 9 ) EFLAGS (implicit-def)
10994
10995 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10996 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10997
10998 unsigned DestReg = MI->getOperand(0).getReg();
10999 MachineOperand &Base = MI->getOperand(1);
11000 MachineOperand &Scale = MI->getOperand(2);
11001 MachineOperand &Index = MI->getOperand(3);
11002 MachineOperand &Disp = MI->getOperand(4);
11003 MachineOperand &Segment = MI->getOperand(5);
11004 unsigned ArgSize = MI->getOperand(6).getImm();
11005 unsigned ArgMode = MI->getOperand(7).getImm();
11006 unsigned Align = MI->getOperand(8).getImm();
11007
11008 // Memory Reference
11009 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
11010 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
11011 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
11012
11013 // Machine Information
11014 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11015 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
11016 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
11017 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
11018 DebugLoc DL = MI->getDebugLoc();
11019
11020 // struct va_list {
11021 // i32 gp_offset
11022 // i32 fp_offset
11023 // i64 overflow_area (address)
11024 // i64 reg_save_area (address)
11025 // }
11026 // sizeof(va_list) = 24
11027 // alignment(va_list) = 8
11028
11029 unsigned TotalNumIntRegs = 6;
11030 unsigned TotalNumXMMRegs = 8;
11031 bool UseGPOffset = (ArgMode == 1);
11032 bool UseFPOffset = (ArgMode == 2);
11033 unsigned MaxOffset = TotalNumIntRegs * 8 +
11034 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
11035
11036 /* Align ArgSize to a multiple of 8 */
11037 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
11038 bool NeedsAlign = (Align > 8);
11039
11040 MachineBasicBlock *thisMBB = MBB;
11041 MachineBasicBlock *overflowMBB;
11042 MachineBasicBlock *offsetMBB;
11043 MachineBasicBlock *endMBB;
11044
11045 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
11046 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
11047 unsigned OffsetReg = 0;
11048
11049 if (!UseGPOffset && !UseFPOffset) {
11050 // If we only pull from the overflow region, we don't create a branch.
11051 // We don't need to alter control flow.
11052 OffsetDestReg = 0; // unused
11053 OverflowDestReg = DestReg;
11054
11055 offsetMBB = NULL;
11056 overflowMBB = thisMBB;
11057 endMBB = thisMBB;
11058 } else {
11059 // First emit code to check if gp_offset (or fp_offset) is below the bound.
11060 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
11061 // If not, pull from overflow_area. (branch to overflowMBB)
11062 //
11063 // thisMBB
11064 // | .
11065 // | .
11066 // offsetMBB overflowMBB
11067 // | .
11068 // | .
11069 // endMBB
11070
11071 // Registers for the PHI in endMBB
11072 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
11073 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
11074
11075 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11076 MachineFunction *MF = MBB->getParent();
11077 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11078 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11079 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11080
11081 MachineFunction::iterator MBBIter = MBB;
11082 ++MBBIter;
11083
11084 // Insert the new basic blocks
11085 MF->insert(MBBIter, offsetMBB);
11086 MF->insert(MBBIter, overflowMBB);
11087 MF->insert(MBBIter, endMBB);
11088
11089 // Transfer the remainder of MBB and its successor edges to endMBB.
11090 endMBB->splice(endMBB->begin(), thisMBB,
11091 llvm::next(MachineBasicBlock::iterator(MI)),
11092 thisMBB->end());
11093 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11094
11095 // Make offsetMBB and overflowMBB successors of thisMBB
11096 thisMBB->addSuccessor(offsetMBB);
11097 thisMBB->addSuccessor(overflowMBB);
11098
11099 // endMBB is a successor of both offsetMBB and overflowMBB
11100 offsetMBB->addSuccessor(endMBB);
11101 overflowMBB->addSuccessor(endMBB);
11102
11103 // Load the offset value into a register
11104 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11105 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11106 .addOperand(Base)
11107 .addOperand(Scale)
11108 .addOperand(Index)
11109 .addDisp(Disp, UseFPOffset ? 4 : 0)
11110 .addOperand(Segment)
11111 .setMemRefs(MMOBegin, MMOEnd);
11112
11113 // Check if there is enough room left to pull this argument.
11114 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11115 .addReg(OffsetReg)
11116 .addImm(MaxOffset + 8 - ArgSizeA8);
11117
11118 // Branch to "overflowMBB" if offset >= max
11119 // Fall through to "offsetMBB" otherwise
11120 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
11121 .addMBB(overflowMBB);
11122 }
11123
11124 // In offsetMBB, emit code to use the reg_save_area.
11125 if (offsetMBB) {
11126 assert(OffsetReg != 0);
11127
11128 // Read the reg_save_area address.
11129 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
11130 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
11131 .addOperand(Base)
11132 .addOperand(Scale)
11133 .addOperand(Index)
11134 .addDisp(Disp, 16)
11135 .addOperand(Segment)
11136 .setMemRefs(MMOBegin, MMOEnd);
11137
11138 // Zero-extend the offset
11139 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
11140 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
11141 .addImm(0)
11142 .addReg(OffsetReg)
11143 .addImm(X86::sub_32bit);
11144
11145 // Add the offset to the reg_save_area to get the final address.
11146 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
11147 .addReg(OffsetReg64)
11148 .addReg(RegSaveReg);
11149
11150 // Compute the offset for the next argument
11151 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11152 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
11153 .addReg(OffsetReg)
11154 .addImm(UseFPOffset ? 16 : 8);
11155
11156 // Store it back into the va_list.
11157 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
11158 .addOperand(Base)
11159 .addOperand(Scale)
11160 .addOperand(Index)
11161 .addDisp(Disp, UseFPOffset ? 4 : 0)
11162 .addOperand(Segment)
11163 .addReg(NextOffsetReg)
11164 .setMemRefs(MMOBegin, MMOEnd);
11165
11166 // Jump to endMBB
11167 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
11168 .addMBB(endMBB);
11169 }
11170
11171 //
11172 // Emit code to use overflow area
11173 //
11174
11175 // Load the overflow_area address into a register.
11176 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
11177 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
11178 .addOperand(Base)
11179 .addOperand(Scale)
11180 .addOperand(Index)
11181 .addDisp(Disp, 8)
11182 .addOperand(Segment)
11183 .setMemRefs(MMOBegin, MMOEnd);
11184
11185 // If we need to align it, do so. Otherwise, just copy the address
11186 // to OverflowDestReg.
11187 if (NeedsAlign) {
11188 // Align the overflow address
11189 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
11190 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
11191
11192 // aligned_addr = (addr + (align-1)) & ~(align-1)
11193 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
11194 .addReg(OverflowAddrReg)
11195 .addImm(Align-1);
11196
11197 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
11198 .addReg(TmpReg)
11199 .addImm(~(uint64_t)(Align-1));
11200 } else {
11201 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
11202 .addReg(OverflowAddrReg);
11203 }
11204
11205 // Compute the next overflow address after this argument.
11206 // (the overflow address should be kept 8-byte aligned)
11207 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
11208 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
11209 .addReg(OverflowDestReg)
11210 .addImm(ArgSizeA8);
11211
11212 // Store the new overflow address.
11213 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
11214 .addOperand(Base)
11215 .addOperand(Scale)
11216 .addOperand(Index)
11217 .addDisp(Disp, 8)
11218 .addOperand(Segment)
11219 .addReg(NextAddrReg)
11220 .setMemRefs(MMOBegin, MMOEnd);
11221
11222 // If we branched, emit the PHI to the front of endMBB.
11223 if (offsetMBB) {
11224 BuildMI(*endMBB, endMBB->begin(), DL,
11225 TII->get(X86::PHI), DestReg)
11226 .addReg(OffsetDestReg).addMBB(offsetMBB)
11227 .addReg(OverflowDestReg).addMBB(overflowMBB);
11228 }
11229
11230 // Erase the pseudo instruction
11231 MI->eraseFromParent();
11232
11233 return endMBB;
11234}
11235
11236MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000011237X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
11238 MachineInstr *MI,
11239 MachineBasicBlock *MBB) const {
11240 // Emit code to save XMM registers to the stack. The ABI says that the
11241 // number of registers to save is given in %al, so it's theoretically
11242 // possible to do an indirect jump trick to avoid saving all of them,
11243 // however this code takes a simpler approach and just executes all
11244 // of the stores if %al is non-zero. It's less code, and it's probably
11245 // easier on the hardware branch predictor, and stores aren't all that
11246 // expensive anyway.
11247
11248 // Create the new basic blocks. One block contains all the XMM stores,
11249 // and one block is the final destination regardless of whether any
11250 // stores were performed.
11251 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11252 MachineFunction *F = MBB->getParent();
11253 MachineFunction::iterator MBBIter = MBB;
11254 ++MBBIter;
11255 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
11256 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
11257 F->insert(MBBIter, XMMSaveMBB);
11258 F->insert(MBBIter, EndMBB);
11259
Dan Gohman14152b42010-07-06 20:24:04 +000011260 // Transfer the remainder of MBB and its successor edges to EndMBB.
11261 EndMBB->splice(EndMBB->begin(), MBB,
11262 llvm::next(MachineBasicBlock::iterator(MI)),
11263 MBB->end());
11264 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
11265
Dan Gohmand6708ea2009-08-15 01:38:56 +000011266 // The original block will now fall through to the XMM save block.
11267 MBB->addSuccessor(XMMSaveMBB);
11268 // The XMMSaveMBB will fall through to the end block.
11269 XMMSaveMBB->addSuccessor(EndMBB);
11270
11271 // Now add the instructions.
11272 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11273 DebugLoc DL = MI->getDebugLoc();
11274
11275 unsigned CountReg = MI->getOperand(0).getReg();
11276 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
11277 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
11278
11279 if (!Subtarget->isTargetWin64()) {
11280 // If %al is 0, branch around the XMM save block.
11281 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011282 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011283 MBB->addSuccessor(EndMBB);
11284 }
11285
11286 // In the XMM save block, save all the XMM argument registers.
11287 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
11288 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000011289 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000011290 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000011291 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000011292 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000011293 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011294 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
11295 .addFrameIndex(RegSaveFrameIndex)
11296 .addImm(/*Scale=*/1)
11297 .addReg(/*IndexReg=*/0)
11298 .addImm(/*Disp=*/Offset)
11299 .addReg(/*Segment=*/0)
11300 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000011301 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011302 }
11303
Dan Gohman14152b42010-07-06 20:24:04 +000011304 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011305
11306 return EndMBB;
11307}
Mon P Wang63307c32008-05-05 19:05:59 +000011308
Evan Cheng60c07e12006-07-05 22:17:51 +000011309MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000011310X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011311 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000011312 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11313 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000011314
Chris Lattner52600972009-09-02 05:57:00 +000011315 // To "insert" a SELECT_CC instruction, we actually have to insert the
11316 // diamond control-flow pattern. The incoming instruction knows the
11317 // destination vreg to set, the condition code register to branch on, the
11318 // true/false values to select between, and a branch opcode to use.
11319 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11320 MachineFunction::iterator It = BB;
11321 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000011322
Chris Lattner52600972009-09-02 05:57:00 +000011323 // thisMBB:
11324 // ...
11325 // TrueVal = ...
11326 // cmpTY ccX, r1, r2
11327 // bCC copy1MBB
11328 // fallthrough --> copy0MBB
11329 MachineBasicBlock *thisMBB = BB;
11330 MachineFunction *F = BB->getParent();
11331 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
11332 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000011333 F->insert(It, copy0MBB);
11334 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000011335
Bill Wendling730c07e2010-06-25 20:48:10 +000011336 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11337 // live into the sink and copy blocks.
11338 const MachineFunction *MF = BB->getParent();
11339 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
11340 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000011341
Dan Gohman14152b42010-07-06 20:24:04 +000011342 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
11343 const MachineOperand &MO = MI->getOperand(I);
11344 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000011345 unsigned Reg = MO.getReg();
11346 if (Reg != X86::EFLAGS) continue;
11347 copy0MBB->addLiveIn(Reg);
11348 sinkMBB->addLiveIn(Reg);
11349 }
11350
Dan Gohman14152b42010-07-06 20:24:04 +000011351 // Transfer the remainder of BB and its successor edges to sinkMBB.
11352 sinkMBB->splice(sinkMBB->begin(), BB,
11353 llvm::next(MachineBasicBlock::iterator(MI)),
11354 BB->end());
11355 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11356
11357 // Add the true and fallthrough blocks as its successors.
11358 BB->addSuccessor(copy0MBB);
11359 BB->addSuccessor(sinkMBB);
11360
11361 // Create the conditional branch instruction.
11362 unsigned Opc =
11363 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11364 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11365
Chris Lattner52600972009-09-02 05:57:00 +000011366 // copy0MBB:
11367 // %FalseValue = ...
11368 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011369 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011370
Chris Lattner52600972009-09-02 05:57:00 +000011371 // sinkMBB:
11372 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11373 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011374 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11375 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011376 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11377 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11378
Dan Gohman14152b42010-07-06 20:24:04 +000011379 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011380 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011381}
11382
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011383MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011384X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011385 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011386 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11387 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011388
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011389 assert(!Subtarget->isTargetEnvMacho());
11390
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011391 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11392 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011393
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011394 if (Subtarget->isTargetWin64()) {
11395 if (Subtarget->isTargetCygMing()) {
11396 // ___chkstk(Mingw64):
11397 // Clobbers R10, R11, RAX and EFLAGS.
11398 // Updates RSP.
11399 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11400 .addExternalSymbol("___chkstk")
11401 .addReg(X86::RAX, RegState::Implicit)
11402 .addReg(X86::RSP, RegState::Implicit)
11403 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11404 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11405 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11406 } else {
11407 // __chkstk(MSVCRT): does not update stack pointer.
11408 // Clobbers R10, R11 and EFLAGS.
11409 // FIXME: RAX(allocated size) might be reused and not killed.
11410 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11411 .addExternalSymbol("__chkstk")
11412 .addReg(X86::RAX, RegState::Implicit)
11413 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11414 // RAX has the offset to subtracted from RSP.
11415 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11416 .addReg(X86::RSP)
11417 .addReg(X86::RAX);
11418 }
11419 } else {
11420 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011421 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11422
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011423 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11424 .addExternalSymbol(StackProbeSymbol)
11425 .addReg(X86::EAX, RegState::Implicit)
11426 .addReg(X86::ESP, RegState::Implicit)
11427 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11428 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11429 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11430 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011431
Dan Gohman14152b42010-07-06 20:24:04 +000011432 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011433 return BB;
11434}
Chris Lattner52600972009-09-02 05:57:00 +000011435
11436MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011437X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11438 MachineBasicBlock *BB) const {
11439 // This is pretty easy. We're taking the value that we received from
11440 // our load from the relocation, sticking it in either RDI (x86-64)
11441 // or EAX and doing an indirect call. The return value will then
11442 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011443 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011444 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011445 DebugLoc DL = MI->getDebugLoc();
11446 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011447
11448 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011449 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011450
Eric Christopher30ef0e52010-06-03 04:07:48 +000011451 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011452 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11453 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011454 .addReg(X86::RIP)
11455 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011456 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011457 MI->getOperand(3).getTargetFlags())
11458 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011459 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011460 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011461 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011462 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11463 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011464 .addReg(0)
11465 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011466 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011467 MI->getOperand(3).getTargetFlags())
11468 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011469 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011470 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011471 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011472 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11473 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011474 .addReg(TII->getGlobalBaseReg(F))
11475 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011476 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011477 MI->getOperand(3).getTargetFlags())
11478 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011479 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011480 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011481 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011482
Dan Gohman14152b42010-07-06 20:24:04 +000011483 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011484 return BB;
11485}
11486
11487MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011488X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011489 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011490 switch (MI->getOpcode()) {
11491 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011492 case X86::TAILJMPd64:
11493 case X86::TAILJMPr64:
11494 case X86::TAILJMPm64:
11495 assert(!"TAILJMP64 would not be touched here.");
11496 case X86::TCRETURNdi64:
11497 case X86::TCRETURNri64:
11498 case X86::TCRETURNmi64:
11499 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11500 // On AMD64, additional defs should be added before register allocation.
11501 if (!Subtarget->isTargetWin64()) {
11502 MI->addRegisterDefined(X86::RSI);
11503 MI->addRegisterDefined(X86::RDI);
11504 MI->addRegisterDefined(X86::XMM6);
11505 MI->addRegisterDefined(X86::XMM7);
11506 MI->addRegisterDefined(X86::XMM8);
11507 MI->addRegisterDefined(X86::XMM9);
11508 MI->addRegisterDefined(X86::XMM10);
11509 MI->addRegisterDefined(X86::XMM11);
11510 MI->addRegisterDefined(X86::XMM12);
11511 MI->addRegisterDefined(X86::XMM13);
11512 MI->addRegisterDefined(X86::XMM14);
11513 MI->addRegisterDefined(X86::XMM15);
11514 }
11515 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011516 case X86::WIN_ALLOCA:
11517 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011518 case X86::TLSCall_32:
11519 case X86::TLSCall_64:
11520 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011521 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011522 case X86::CMOV_FR32:
11523 case X86::CMOV_FR64:
11524 case X86::CMOV_V4F32:
11525 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011526 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000011527 case X86::CMOV_V8F32:
11528 case X86::CMOV_V4F64:
11529 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011530 case X86::CMOV_GR16:
11531 case X86::CMOV_GR32:
11532 case X86::CMOV_RFP32:
11533 case X86::CMOV_RFP64:
11534 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011535 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011536
Dale Johannesen849f2142007-07-03 00:53:03 +000011537 case X86::FP32_TO_INT16_IN_MEM:
11538 case X86::FP32_TO_INT32_IN_MEM:
11539 case X86::FP32_TO_INT64_IN_MEM:
11540 case X86::FP64_TO_INT16_IN_MEM:
11541 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011542 case X86::FP64_TO_INT64_IN_MEM:
11543 case X86::FP80_TO_INT16_IN_MEM:
11544 case X86::FP80_TO_INT32_IN_MEM:
11545 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011546 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11547 DebugLoc DL = MI->getDebugLoc();
11548
Evan Cheng60c07e12006-07-05 22:17:51 +000011549 // Change the floating point control register to use "round towards zero"
11550 // mode when truncating to an integer value.
11551 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011552 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011553 addFrameReference(BuildMI(*BB, MI, DL,
11554 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011555
11556 // Load the old value of the high byte of the control word...
11557 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011558 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011559 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011560 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011561
11562 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011563 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011564 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011565
11566 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011567 addFrameReference(BuildMI(*BB, MI, DL,
11568 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011569
11570 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011571 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011572 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011573
11574 // Get the X86 opcode to use.
11575 unsigned Opc;
11576 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011577 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011578 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11579 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11580 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11581 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11582 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11583 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011584 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11585 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11586 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011587 }
11588
11589 X86AddressMode AM;
11590 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011591 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011592 AM.BaseType = X86AddressMode::RegBase;
11593 AM.Base.Reg = Op.getReg();
11594 } else {
11595 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011596 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011597 }
11598 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011599 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011600 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011601 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011602 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011603 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011604 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011605 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011606 AM.GV = Op.getGlobal();
11607 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011608 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011609 }
Dan Gohman14152b42010-07-06 20:24:04 +000011610 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011611 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011612
11613 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011614 addFrameReference(BuildMI(*BB, MI, DL,
11615 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011616
Dan Gohman14152b42010-07-06 20:24:04 +000011617 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011618 return BB;
11619 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011620 // String/text processing lowering.
11621 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011622 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011623 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11624 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011625 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011626 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11627 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011628 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011629 return EmitPCMP(MI, BB, 5, false /* in mem */);
11630 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011631 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011632 return EmitPCMP(MI, BB, 5, true /* in mem */);
11633
Eric Christopher228232b2010-11-30 07:20:12 +000011634 // Thread synchronization.
11635 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011636 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011637 case X86::MWAIT:
11638 return EmitMwait(MI, BB);
11639
Eric Christopherb120ab42009-08-18 22:50:32 +000011640 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011641 case X86::ATOMAND32:
11642 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011643 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011644 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011645 X86::NOT32r, X86::EAX,
11646 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011647 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011648 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11649 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011650 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011651 X86::NOT32r, X86::EAX,
11652 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011653 case X86::ATOMXOR32:
11654 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011655 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011656 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011657 X86::NOT32r, X86::EAX,
11658 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011659 case X86::ATOMNAND32:
11660 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011661 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011662 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011663 X86::NOT32r, X86::EAX,
11664 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011665 case X86::ATOMMIN32:
11666 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11667 case X86::ATOMMAX32:
11668 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11669 case X86::ATOMUMIN32:
11670 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11671 case X86::ATOMUMAX32:
11672 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011673
11674 case X86::ATOMAND16:
11675 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11676 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011677 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011678 X86::NOT16r, X86::AX,
11679 X86::GR16RegisterClass);
11680 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011681 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011682 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011683 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011684 X86::NOT16r, X86::AX,
11685 X86::GR16RegisterClass);
11686 case X86::ATOMXOR16:
11687 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11688 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011689 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011690 X86::NOT16r, X86::AX,
11691 X86::GR16RegisterClass);
11692 case X86::ATOMNAND16:
11693 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11694 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011695 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011696 X86::NOT16r, X86::AX,
11697 X86::GR16RegisterClass, true);
11698 case X86::ATOMMIN16:
11699 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11700 case X86::ATOMMAX16:
11701 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11702 case X86::ATOMUMIN16:
11703 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11704 case X86::ATOMUMAX16:
11705 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11706
11707 case X86::ATOMAND8:
11708 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11709 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011710 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011711 X86::NOT8r, X86::AL,
11712 X86::GR8RegisterClass);
11713 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011714 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011715 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011716 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011717 X86::NOT8r, X86::AL,
11718 X86::GR8RegisterClass);
11719 case X86::ATOMXOR8:
11720 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11721 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011722 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011723 X86::NOT8r, X86::AL,
11724 X86::GR8RegisterClass);
11725 case X86::ATOMNAND8:
11726 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11727 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011728 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011729 X86::NOT8r, X86::AL,
11730 X86::GR8RegisterClass, true);
11731 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011732 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011733 case X86::ATOMAND64:
11734 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011735 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011736 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011737 X86::NOT64r, X86::RAX,
11738 X86::GR64RegisterClass);
11739 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011740 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11741 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011742 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011743 X86::NOT64r, X86::RAX,
11744 X86::GR64RegisterClass);
11745 case X86::ATOMXOR64:
11746 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011747 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011748 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011749 X86::NOT64r, X86::RAX,
11750 X86::GR64RegisterClass);
11751 case X86::ATOMNAND64:
11752 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11753 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011754 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011755 X86::NOT64r, X86::RAX,
11756 X86::GR64RegisterClass, true);
11757 case X86::ATOMMIN64:
11758 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11759 case X86::ATOMMAX64:
11760 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11761 case X86::ATOMUMIN64:
11762 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11763 case X86::ATOMUMAX64:
11764 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011765
11766 // This group does 64-bit operations on a 32-bit host.
11767 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011768 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011769 X86::AND32rr, X86::AND32rr,
11770 X86::AND32ri, X86::AND32ri,
11771 false);
11772 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011773 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011774 X86::OR32rr, X86::OR32rr,
11775 X86::OR32ri, X86::OR32ri,
11776 false);
11777 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011778 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011779 X86::XOR32rr, X86::XOR32rr,
11780 X86::XOR32ri, X86::XOR32ri,
11781 false);
11782 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011783 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011784 X86::AND32rr, X86::AND32rr,
11785 X86::AND32ri, X86::AND32ri,
11786 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011787 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011788 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011789 X86::ADD32rr, X86::ADC32rr,
11790 X86::ADD32ri, X86::ADC32ri,
11791 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011792 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011793 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011794 X86::SUB32rr, X86::SBB32rr,
11795 X86::SUB32ri, X86::SBB32ri,
11796 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011797 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011798 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011799 X86::MOV32rr, X86::MOV32rr,
11800 X86::MOV32ri, X86::MOV32ri,
11801 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011802 case X86::VASTART_SAVE_XMM_REGS:
11803 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011804
11805 case X86::VAARG_64:
11806 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011807 }
11808}
11809
11810//===----------------------------------------------------------------------===//
11811// X86 Optimization Hooks
11812//===----------------------------------------------------------------------===//
11813
Dan Gohman475871a2008-07-27 21:46:04 +000011814void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011815 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011816 APInt &KnownZero,
11817 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011818 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011819 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011820 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011821 assert((Opc >= ISD::BUILTIN_OP_END ||
11822 Opc == ISD::INTRINSIC_WO_CHAIN ||
11823 Opc == ISD::INTRINSIC_W_CHAIN ||
11824 Opc == ISD::INTRINSIC_VOID) &&
11825 "Should use MaskedValueIsZero if you don't know whether Op"
11826 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011827
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011828 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011829 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011830 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011831 case X86ISD::ADD:
11832 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011833 case X86ISD::ADC:
11834 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011835 case X86ISD::SMUL:
11836 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011837 case X86ISD::INC:
11838 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011839 case X86ISD::OR:
11840 case X86ISD::XOR:
11841 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011842 // These nodes' second result is a boolean.
11843 if (Op.getResNo() == 0)
11844 break;
11845 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011846 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011847 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11848 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011849 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011850 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011851}
Chris Lattner259e97c2006-01-31 19:43:35 +000011852
Owen Andersonbc146b02010-09-21 20:42:50 +000011853unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11854 unsigned Depth) const {
11855 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11856 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11857 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011858
Owen Andersonbc146b02010-09-21 20:42:50 +000011859 // Fallback case.
11860 return 1;
11861}
11862
Evan Cheng206ee9d2006-07-07 08:33:52 +000011863/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011864/// node is a GlobalAddress + offset.
11865bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011866 const GlobalValue* &GA,
11867 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011868 if (N->getOpcode() == X86ISD::Wrapper) {
11869 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011870 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011871 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011872 return true;
11873 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011874 }
Evan Chengad4196b2008-05-12 19:56:52 +000011875 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011876}
11877
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011878/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
11879/// same as extracting the high 128-bit part of 256-bit vector and then
11880/// inserting the result into the low part of a new 256-bit vector
11881static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
11882 EVT VT = SVOp->getValueType(0);
11883 int NumElems = VT.getVectorNumElements();
11884
11885 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
11886 for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
11887 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
11888 SVOp->getMaskElt(j) >= 0)
11889 return false;
11890
11891 return true;
11892}
11893
11894/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
11895/// same as extracting the low 128-bit part of 256-bit vector and then
11896/// inserting the result into the high part of a new 256-bit vector
11897static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
11898 EVT VT = SVOp->getValueType(0);
11899 int NumElems = VT.getVectorNumElements();
11900
11901 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
11902 for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
11903 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
11904 SVOp->getMaskElt(j) >= 0)
11905 return false;
11906
11907 return true;
11908}
11909
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011910/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11911static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11912 TargetLowering::DAGCombinerInfo &DCI) {
11913 DebugLoc dl = N->getDebugLoc();
11914 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11915 SDValue V1 = SVOp->getOperand(0);
11916 SDValue V2 = SVOp->getOperand(1);
11917 EVT VT = SVOp->getValueType(0);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011918 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011919
11920 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11921 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11922 //
11923 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011924 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011925 // V UNDEF BUILD_VECTOR UNDEF
11926 // \ / \ /
11927 // CONCAT_VECTOR CONCAT_VECTOR
11928 // \ /
11929 // \ /
11930 // RESULT: V + zero extended
11931 //
11932 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11933 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11934 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11935 return SDValue();
11936
11937 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11938 return SDValue();
11939
11940 // To match the shuffle mask, the first half of the mask should
11941 // be exactly the first vector, and all the rest a splat with the
11942 // first element of the second one.
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011943 for (int i = 0; i < NumElems/2; ++i)
11944 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11945 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11946 return SDValue();
11947
11948 // Emit a zeroed vector and insert the desired subvector on its
11949 // first half.
11950 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11951 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11952 DAG.getConstant(0, MVT::i32), DAG, dl);
11953 return DCI.CombineTo(N, InsV);
11954 }
11955
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011956 //===--------------------------------------------------------------------===//
11957 // Combine some shuffles into subvector extracts and inserts:
11958 //
11959
11960 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
11961 if (isShuffleHigh128VectorInsertLow(SVOp)) {
11962 SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
11963 DAG, dl);
11964 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
11965 V, DAG.getConstant(0, MVT::i32), DAG, dl);
11966 return DCI.CombineTo(N, InsV);
11967 }
11968
11969 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
11970 if (isShuffleLow128VectorInsertHigh(SVOp)) {
11971 SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
11972 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
11973 V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
11974 return DCI.CombineTo(N, InsV);
11975 }
11976
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011977 return SDValue();
11978}
11979
11980/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011981static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000011982 TargetLowering::DAGCombinerInfo &DCI,
11983 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011984 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011985 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011986
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011987 // Don't create instructions with illegal types after legalize types has run.
11988 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11989 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11990 return SDValue();
11991
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000011992 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
11993 if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
11994 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011995 return PerformShuffleCombine256(N, DAG, DCI);
11996
11997 // Only handle 128 wide vector from here on.
11998 if (VT.getSizeInBits() != 128)
11999 return SDValue();
12000
12001 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
12002 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
12003 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000012004 SmallVector<SDValue, 16> Elts;
12005 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012006 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000012007
Nate Begemanfdea31a2010-03-24 20:49:50 +000012008 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000012009}
Evan Chengd880b972008-05-09 21:53:03 +000012010
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000012011/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
12012/// generation and convert it from being a bunch of shuffles and extracts
12013/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012014static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
12015 const TargetLowering &TLI) {
12016 SDValue InputVector = N->getOperand(0);
12017
12018 // Only operate on vectors of 4 elements, where the alternative shuffling
12019 // gets to be more expensive.
12020 if (InputVector.getValueType() != MVT::v4i32)
12021 return SDValue();
12022
12023 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
12024 // single use which is a sign-extend or zero-extend, and all elements are
12025 // used.
12026 SmallVector<SDNode *, 4> Uses;
12027 unsigned ExtractedElements = 0;
12028 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
12029 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
12030 if (UI.getUse().getResNo() != InputVector.getResNo())
12031 return SDValue();
12032
12033 SDNode *Extract = *UI;
12034 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
12035 return SDValue();
12036
12037 if (Extract->getValueType(0) != MVT::i32)
12038 return SDValue();
12039 if (!Extract->hasOneUse())
12040 return SDValue();
12041 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
12042 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
12043 return SDValue();
12044 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
12045 return SDValue();
12046
12047 // Record which element was extracted.
12048 ExtractedElements |=
12049 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
12050
12051 Uses.push_back(Extract);
12052 }
12053
12054 // If not all the elements were used, this may not be worthwhile.
12055 if (ExtractedElements != 15)
12056 return SDValue();
12057
12058 // Ok, we've now decided to do the transformation.
12059 DebugLoc dl = InputVector.getDebugLoc();
12060
12061 // Store the value to a temporary stack slot.
12062 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000012063 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
12064 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012065
12066 // Replace each use (extract) with a load of the appropriate element.
12067 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
12068 UE = Uses.end(); UI != UE; ++UI) {
12069 SDNode *Extract = *UI;
12070
Nadav Rotem86694292011-05-17 08:31:57 +000012071 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012072 SDValue Idx = Extract->getOperand(1);
12073 unsigned EltSize =
12074 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
12075 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
12076 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
12077
Nadav Rotem86694292011-05-17 08:31:57 +000012078 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012079 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012080
12081 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000012082 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000012083 ScalarAddr, MachinePointerInfo(),
12084 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012085
12086 // Replace the exact with the load.
12087 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
12088 }
12089
12090 // The replacement was made in place; don't return anything.
12091 return SDValue();
12092}
12093
Chris Lattner83e6c992006-10-04 06:57:07 +000012094/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012095static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000012096 const X86Subtarget *Subtarget) {
12097 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000012098 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000012099 // Get the LHS/RHS of the select.
12100 SDValue LHS = N->getOperand(1);
12101 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000012102
Dan Gohman670e5392009-09-21 18:03:22 +000012103 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000012104 // instructions match the semantics of the common C idiom x<y?x:y but not
12105 // x<=y?x:y, because of how they handle negative zero (which can be
12106 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000012107 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000012108 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000012109 Cond.getOpcode() == ISD::SETCC) {
12110 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012111
Chris Lattner47b4ce82009-03-11 05:48:52 +000012112 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000012113 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000012114 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
12115 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012116 switch (CC) {
12117 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012118 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012119 // Converting this to a min would handle NaNs incorrectly, and swapping
12120 // the operands would cause it to handle comparisons between positive
12121 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012122 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012123 if (!UnsafeFPMath &&
12124 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12125 break;
12126 std::swap(LHS, RHS);
12127 }
Dan Gohman670e5392009-09-21 18:03:22 +000012128 Opcode = X86ISD::FMIN;
12129 break;
12130 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012131 // Converting this to a min would handle comparisons between positive
12132 // and negative zero incorrectly.
12133 if (!UnsafeFPMath &&
12134 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
12135 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012136 Opcode = X86ISD::FMIN;
12137 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012138 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012139 // Converting this to a min would handle both negative zeros and NaNs
12140 // incorrectly, but we can swap the operands to fix both.
12141 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012142 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012143 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012144 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012145 Opcode = X86ISD::FMIN;
12146 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012147
Dan Gohman670e5392009-09-21 18:03:22 +000012148 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012149 // Converting this to a max would handle comparisons between positive
12150 // and negative zero incorrectly.
12151 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000012152 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012153 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012154 Opcode = X86ISD::FMAX;
12155 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012156 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012157 // Converting this to a max would handle NaNs incorrectly, and swapping
12158 // the operands would cause it to handle comparisons between positive
12159 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012160 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012161 if (!UnsafeFPMath &&
12162 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12163 break;
12164 std::swap(LHS, RHS);
12165 }
Dan Gohman670e5392009-09-21 18:03:22 +000012166 Opcode = X86ISD::FMAX;
12167 break;
12168 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012169 // Converting this to a max would handle both negative zeros and NaNs
12170 // incorrectly, but we can swap the operands to fix both.
12171 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012172 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012173 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012174 case ISD::SETGE:
12175 Opcode = X86ISD::FMAX;
12176 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000012177 }
Dan Gohman670e5392009-09-21 18:03:22 +000012178 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000012179 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
12180 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012181 switch (CC) {
12182 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012183 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012184 // Converting this to a min would handle comparisons between positive
12185 // and negative zero incorrectly, and swapping the operands would
12186 // cause it to handle NaNs incorrectly.
12187 if (!UnsafeFPMath &&
12188 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000012189 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012190 break;
12191 std::swap(LHS, RHS);
12192 }
Dan Gohman670e5392009-09-21 18:03:22 +000012193 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000012194 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012195 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012196 // Converting this to a min would handle NaNs incorrectly.
12197 if (!UnsafeFPMath &&
12198 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
12199 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012200 Opcode = X86ISD::FMIN;
12201 break;
12202 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012203 // Converting this to a min would handle both negative zeros and NaNs
12204 // incorrectly, but we can swap the operands to fix both.
12205 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012206 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012207 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012208 case ISD::SETGE:
12209 Opcode = X86ISD::FMIN;
12210 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012211
Dan Gohman670e5392009-09-21 18:03:22 +000012212 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012213 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012214 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012215 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012216 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000012217 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012218 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012219 // Converting this to a max would handle comparisons between positive
12220 // and negative zero incorrectly, and swapping the operands would
12221 // cause it to handle NaNs incorrectly.
12222 if (!UnsafeFPMath &&
12223 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000012224 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012225 break;
12226 std::swap(LHS, RHS);
12227 }
Dan Gohman670e5392009-09-21 18:03:22 +000012228 Opcode = X86ISD::FMAX;
12229 break;
12230 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012231 // Converting this to a max would handle both negative zeros and NaNs
12232 // incorrectly, but we can swap the operands to fix both.
12233 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012234 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012235 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012236 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012237 Opcode = X86ISD::FMAX;
12238 break;
12239 }
Chris Lattner83e6c992006-10-04 06:57:07 +000012240 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012241
Chris Lattner47b4ce82009-03-11 05:48:52 +000012242 if (Opcode)
12243 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000012244 }
Eric Christopherfd179292009-08-27 18:07:15 +000012245
Chris Lattnerd1980a52009-03-12 06:52:53 +000012246 // If this is a select between two integer constants, try to do some
12247 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000012248 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
12249 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000012250 // Don't do this for crazy integer types.
12251 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
12252 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000012253 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012254 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000012255
Chris Lattnercee56e72009-03-13 05:53:31 +000012256 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000012257 // Efficiently invertible.
12258 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
12259 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
12260 isa<ConstantSDNode>(Cond.getOperand(1))))) {
12261 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000012262 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012263 }
Eric Christopherfd179292009-08-27 18:07:15 +000012264
Chris Lattnerd1980a52009-03-12 06:52:53 +000012265 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012266 if (FalseC->getAPIntValue() == 0 &&
12267 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012268 if (NeedsCondInvert) // Invert the condition if needed.
12269 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12270 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012271
Chris Lattnerd1980a52009-03-12 06:52:53 +000012272 // Zero extend the condition if needed.
12273 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012274
Chris Lattnercee56e72009-03-13 05:53:31 +000012275 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000012276 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012277 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012278 }
Eric Christopherfd179292009-08-27 18:07:15 +000012279
Chris Lattner97a29a52009-03-13 05:22:11 +000012280 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000012281 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000012282 if (NeedsCondInvert) // Invert the condition if needed.
12283 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12284 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012285
Chris Lattner97a29a52009-03-13 05:22:11 +000012286 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012287 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12288 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012289 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000012290 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000012291 }
Eric Christopherfd179292009-08-27 18:07:15 +000012292
Chris Lattnercee56e72009-03-13 05:53:31 +000012293 // Optimize cases that will turn into an LEA instruction. This requires
12294 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012295 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012296 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012297 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012298
Chris Lattnercee56e72009-03-13 05:53:31 +000012299 bool isFastMultiplier = false;
12300 if (Diff < 10) {
12301 switch ((unsigned char)Diff) {
12302 default: break;
12303 case 1: // result = add base, cond
12304 case 2: // result = lea base( , cond*2)
12305 case 3: // result = lea base(cond, cond*2)
12306 case 4: // result = lea base( , cond*4)
12307 case 5: // result = lea base(cond, cond*4)
12308 case 8: // result = lea base( , cond*8)
12309 case 9: // result = lea base(cond, cond*8)
12310 isFastMultiplier = true;
12311 break;
12312 }
12313 }
Eric Christopherfd179292009-08-27 18:07:15 +000012314
Chris Lattnercee56e72009-03-13 05:53:31 +000012315 if (isFastMultiplier) {
12316 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
12317 if (NeedsCondInvert) // Invert the condition if needed.
12318 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12319 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012320
Chris Lattnercee56e72009-03-13 05:53:31 +000012321 // Zero extend the condition if needed.
12322 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12323 Cond);
12324 // Scale the condition by the difference.
12325 if (Diff != 1)
12326 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12327 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012328
Chris Lattnercee56e72009-03-13 05:53:31 +000012329 // Add the base if non-zero.
12330 if (FalseC->getAPIntValue() != 0)
12331 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12332 SDValue(FalseC, 0));
12333 return Cond;
12334 }
Eric Christopherfd179292009-08-27 18:07:15 +000012335 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012336 }
12337 }
Eric Christopherfd179292009-08-27 18:07:15 +000012338
Dan Gohman475871a2008-07-27 21:46:04 +000012339 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000012340}
12341
Chris Lattnerd1980a52009-03-12 06:52:53 +000012342/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
12343static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
12344 TargetLowering::DAGCombinerInfo &DCI) {
12345 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000012346
Chris Lattnerd1980a52009-03-12 06:52:53 +000012347 // If the flag operand isn't dead, don't touch this CMOV.
12348 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
12349 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000012350
Evan Chengb5a55d92011-05-24 01:48:22 +000012351 SDValue FalseOp = N->getOperand(0);
12352 SDValue TrueOp = N->getOperand(1);
12353 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
12354 SDValue Cond = N->getOperand(3);
12355 if (CC == X86::COND_E || CC == X86::COND_NE) {
12356 switch (Cond.getOpcode()) {
12357 default: break;
12358 case X86ISD::BSR:
12359 case X86ISD::BSF:
12360 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
12361 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
12362 return (CC == X86::COND_E) ? FalseOp : TrueOp;
12363 }
12364 }
12365
Chris Lattnerd1980a52009-03-12 06:52:53 +000012366 // If this is a select between two integer constants, try to do some
12367 // optimizations. Note that the operands are ordered the opposite of SELECT
12368 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000012369 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
12370 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012371 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
12372 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000012373 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
12374 CC = X86::GetOppositeBranchCondition(CC);
12375 std::swap(TrueC, FalseC);
12376 }
Eric Christopherfd179292009-08-27 18:07:15 +000012377
Chris Lattnerd1980a52009-03-12 06:52:53 +000012378 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012379 // This is efficient for any integer data type (including i8/i16) and
12380 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012381 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012382 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12383 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012384
Chris Lattnerd1980a52009-03-12 06:52:53 +000012385 // Zero extend the condition if needed.
12386 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012387
Chris Lattnerd1980a52009-03-12 06:52:53 +000012388 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
12389 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012390 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012391 if (N->getNumValues() == 2) // Dead flag value?
12392 return DCI.CombineTo(N, Cond, SDValue());
12393 return Cond;
12394 }
Eric Christopherfd179292009-08-27 18:07:15 +000012395
Chris Lattnercee56e72009-03-13 05:53:31 +000012396 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
12397 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000012398 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012399 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12400 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012401
Chris Lattner97a29a52009-03-13 05:22:11 +000012402 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012403 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12404 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012405 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12406 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012407
Chris Lattner97a29a52009-03-13 05:22:11 +000012408 if (N->getNumValues() == 2) // Dead flag value?
12409 return DCI.CombineTo(N, Cond, SDValue());
12410 return Cond;
12411 }
Eric Christopherfd179292009-08-27 18:07:15 +000012412
Chris Lattnercee56e72009-03-13 05:53:31 +000012413 // Optimize cases that will turn into an LEA instruction. This requires
12414 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012415 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012416 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012417 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012418
Chris Lattnercee56e72009-03-13 05:53:31 +000012419 bool isFastMultiplier = false;
12420 if (Diff < 10) {
12421 switch ((unsigned char)Diff) {
12422 default: break;
12423 case 1: // result = add base, cond
12424 case 2: // result = lea base( , cond*2)
12425 case 3: // result = lea base(cond, cond*2)
12426 case 4: // result = lea base( , cond*4)
12427 case 5: // result = lea base(cond, cond*4)
12428 case 8: // result = lea base( , cond*8)
12429 case 9: // result = lea base(cond, cond*8)
12430 isFastMultiplier = true;
12431 break;
12432 }
12433 }
Eric Christopherfd179292009-08-27 18:07:15 +000012434
Chris Lattnercee56e72009-03-13 05:53:31 +000012435 if (isFastMultiplier) {
12436 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012437 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12438 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012439 // Zero extend the condition if needed.
12440 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12441 Cond);
12442 // Scale the condition by the difference.
12443 if (Diff != 1)
12444 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12445 DAG.getConstant(Diff, Cond.getValueType()));
12446
12447 // Add the base if non-zero.
12448 if (FalseC->getAPIntValue() != 0)
12449 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12450 SDValue(FalseC, 0));
12451 if (N->getNumValues() == 2) // Dead flag value?
12452 return DCI.CombineTo(N, Cond, SDValue());
12453 return Cond;
12454 }
Eric Christopherfd179292009-08-27 18:07:15 +000012455 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012456 }
12457 }
12458 return SDValue();
12459}
12460
12461
Evan Cheng0b0cd912009-03-28 05:57:29 +000012462/// PerformMulCombine - Optimize a single multiply with constant into two
12463/// in order to implement it with two cheaper instructions, e.g.
12464/// LEA + SHL, LEA + LEA.
12465static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12466 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012467 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12468 return SDValue();
12469
Owen Andersone50ed302009-08-10 22:56:29 +000012470 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012471 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012472 return SDValue();
12473
12474 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12475 if (!C)
12476 return SDValue();
12477 uint64_t MulAmt = C->getZExtValue();
12478 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12479 return SDValue();
12480
12481 uint64_t MulAmt1 = 0;
12482 uint64_t MulAmt2 = 0;
12483 if ((MulAmt % 9) == 0) {
12484 MulAmt1 = 9;
12485 MulAmt2 = MulAmt / 9;
12486 } else if ((MulAmt % 5) == 0) {
12487 MulAmt1 = 5;
12488 MulAmt2 = MulAmt / 5;
12489 } else if ((MulAmt % 3) == 0) {
12490 MulAmt1 = 3;
12491 MulAmt2 = MulAmt / 3;
12492 }
12493 if (MulAmt2 &&
12494 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12495 DebugLoc DL = N->getDebugLoc();
12496
12497 if (isPowerOf2_64(MulAmt2) &&
12498 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12499 // If second multiplifer is pow2, issue it first. We want the multiply by
12500 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12501 // is an add.
12502 std::swap(MulAmt1, MulAmt2);
12503
12504 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012505 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012506 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012507 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012508 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012509 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012510 DAG.getConstant(MulAmt1, VT));
12511
Eric Christopherfd179292009-08-27 18:07:15 +000012512 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012513 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012514 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012515 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012516 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012517 DAG.getConstant(MulAmt2, VT));
12518
12519 // Do not add new nodes to DAG combiner worklist.
12520 DCI.CombineTo(N, NewMul, false);
12521 }
12522 return SDValue();
12523}
12524
Evan Chengad9c0a32009-12-15 00:53:42 +000012525static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12526 SDValue N0 = N->getOperand(0);
12527 SDValue N1 = N->getOperand(1);
12528 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12529 EVT VT = N0.getValueType();
12530
12531 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12532 // since the result of setcc_c is all zero's or all ones.
12533 if (N1C && N0.getOpcode() == ISD::AND &&
12534 N0.getOperand(1).getOpcode() == ISD::Constant) {
12535 SDValue N00 = N0.getOperand(0);
12536 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12537 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12538 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12539 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12540 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12541 APInt ShAmt = N1C->getAPIntValue();
12542 Mask = Mask.shl(ShAmt);
12543 if (Mask != 0)
12544 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12545 N00, DAG.getConstant(Mask, VT));
12546 }
12547 }
12548
12549 return SDValue();
12550}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012551
Nate Begeman740ab032009-01-26 00:52:55 +000012552/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12553/// when possible.
12554static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12555 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012556 EVT VT = N->getValueType(0);
12557 if (!VT.isVector() && VT.isInteger() &&
12558 N->getOpcode() == ISD::SHL)
12559 return PerformSHLCombine(N, DAG);
12560
Nate Begeman740ab032009-01-26 00:52:55 +000012561 // On X86 with SSE2 support, we can transform this to a vector shift if
12562 // all elements are shifted by the same amount. We can't do this in legalize
12563 // because the a constant vector is typically transformed to a constant pool
12564 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000012565 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012566 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012567
Owen Anderson825b72b2009-08-11 20:47:22 +000012568 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012569 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012570
Mon P Wang3becd092009-01-28 08:12:05 +000012571 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012572 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012573 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012574 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012575 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12576 unsigned NumElts = VT.getVectorNumElements();
12577 unsigned i = 0;
12578 for (; i != NumElts; ++i) {
12579 SDValue Arg = ShAmtOp.getOperand(i);
12580 if (Arg.getOpcode() == ISD::UNDEF) continue;
12581 BaseShAmt = Arg;
12582 break;
12583 }
12584 for (; i != NumElts; ++i) {
12585 SDValue Arg = ShAmtOp.getOperand(i);
12586 if (Arg.getOpcode() == ISD::UNDEF) continue;
12587 if (Arg != BaseShAmt) {
12588 return SDValue();
12589 }
12590 }
12591 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012592 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012593 SDValue InVec = ShAmtOp.getOperand(0);
12594 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12595 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12596 unsigned i = 0;
12597 for (; i != NumElts; ++i) {
12598 SDValue Arg = InVec.getOperand(i);
12599 if (Arg.getOpcode() == ISD::UNDEF) continue;
12600 BaseShAmt = Arg;
12601 break;
12602 }
12603 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12604 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012605 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012606 if (C->getZExtValue() == SplatIdx)
12607 BaseShAmt = InVec.getOperand(1);
12608 }
12609 }
12610 if (BaseShAmt.getNode() == 0)
12611 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12612 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012613 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012614 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012615
Mon P Wangefa42202009-09-03 19:56:25 +000012616 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012617 if (EltVT.bitsGT(MVT::i32))
12618 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12619 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012620 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012621
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012622 // The shift amount is identical so we can do a vector shift.
12623 SDValue ValOp = N->getOperand(0);
12624 switch (N->getOpcode()) {
12625 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012626 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012627 break;
12628 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012629 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012630 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012631 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012632 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012633 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012634 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012635 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012636 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012637 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012638 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012639 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012640 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012641 break;
12642 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012643 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012644 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012645 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012646 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012647 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012648 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012649 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012650 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012651 break;
12652 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012653 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012654 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012655 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012656 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012657 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012658 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012659 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012660 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012661 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012662 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012663 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012664 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012665 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012666 }
12667 return SDValue();
12668}
12669
Nate Begemanb65c1752010-12-17 22:55:37 +000012670
Stuart Hastings865f0932011-06-03 23:53:54 +000012671// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12672// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12673// and friends. Likewise for OR -> CMPNEQSS.
12674static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12675 TargetLowering::DAGCombinerInfo &DCI,
12676 const X86Subtarget *Subtarget) {
12677 unsigned opcode;
12678
12679 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12680 // we're requiring SSE2 for both.
12681 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12682 SDValue N0 = N->getOperand(0);
12683 SDValue N1 = N->getOperand(1);
12684 SDValue CMP0 = N0->getOperand(1);
12685 SDValue CMP1 = N1->getOperand(1);
12686 DebugLoc DL = N->getDebugLoc();
12687
12688 // The SETCCs should both refer to the same CMP.
12689 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12690 return SDValue();
12691
12692 SDValue CMP00 = CMP0->getOperand(0);
12693 SDValue CMP01 = CMP0->getOperand(1);
12694 EVT VT = CMP00.getValueType();
12695
12696 if (VT == MVT::f32 || VT == MVT::f64) {
12697 bool ExpectingFlags = false;
12698 // Check for any users that want flags:
12699 for (SDNode::use_iterator UI = N->use_begin(),
12700 UE = N->use_end();
12701 !ExpectingFlags && UI != UE; ++UI)
12702 switch (UI->getOpcode()) {
12703 default:
12704 case ISD::BR_CC:
12705 case ISD::BRCOND:
12706 case ISD::SELECT:
12707 ExpectingFlags = true;
12708 break;
12709 case ISD::CopyToReg:
12710 case ISD::SIGN_EXTEND:
12711 case ISD::ZERO_EXTEND:
12712 case ISD::ANY_EXTEND:
12713 break;
12714 }
12715
12716 if (!ExpectingFlags) {
12717 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12718 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12719
12720 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12721 X86::CondCode tmp = cc0;
12722 cc0 = cc1;
12723 cc1 = tmp;
12724 }
12725
12726 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12727 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12728 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12729 X86ISD::NodeType NTOperator = is64BitFP ?
12730 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12731 // FIXME: need symbolic constants for these magic numbers.
12732 // See X86ATTInstPrinter.cpp:printSSECC().
12733 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12734 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12735 DAG.getConstant(x86cc, MVT::i8));
12736 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12737 OnesOrZeroesF);
12738 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12739 DAG.getConstant(1, MVT::i32));
12740 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12741 return OneBitOfTruth;
12742 }
12743 }
12744 }
12745 }
12746 return SDValue();
12747}
12748
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012749/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12750/// so it can be folded inside ANDNP.
12751static bool CanFoldXORWithAllOnes(const SDNode *N) {
12752 EVT VT = N->getValueType(0);
12753
12754 // Match direct AllOnes for 128 and 256-bit vectors
12755 if (ISD::isBuildVectorAllOnes(N))
12756 return true;
12757
12758 // Look through a bit convert.
12759 if (N->getOpcode() == ISD::BITCAST)
12760 N = N->getOperand(0).getNode();
12761
12762 // Sometimes the operand may come from a insert_subvector building a 256-bit
12763 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012764 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000012765 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
12766 SDValue V1 = N->getOperand(0);
12767 SDValue V2 = N->getOperand(1);
12768
12769 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12770 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12771 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12772 ISD::isBuildVectorAllOnes(V2.getNode()))
12773 return true;
12774 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012775
12776 return false;
12777}
12778
Nate Begemanb65c1752010-12-17 22:55:37 +000012779static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12780 TargetLowering::DAGCombinerInfo &DCI,
12781 const X86Subtarget *Subtarget) {
12782 if (DCI.isBeforeLegalizeOps())
12783 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012784
Stuart Hastings865f0932011-06-03 23:53:54 +000012785 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12786 if (R.getNode())
12787 return R;
12788
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012789 // Want to form ANDNP nodes:
12790 // 1) In the hopes of then easily combining them with OR and AND nodes
12791 // to form PBLEND/PSIGN.
12792 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012793 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012794 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012795 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012796
Nate Begemanb65c1752010-12-17 22:55:37 +000012797 SDValue N0 = N->getOperand(0);
12798 SDValue N1 = N->getOperand(1);
12799 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012800
Nate Begemanb65c1752010-12-17 22:55:37 +000012801 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012802 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012803 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12804 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012805 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012806
12807 // Check RHS for vnot
12808 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012809 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12810 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012811 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012812
Nate Begemanb65c1752010-12-17 22:55:37 +000012813 return SDValue();
12814}
12815
Evan Cheng760d1942010-01-04 21:22:48 +000012816static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012817 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012818 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012819 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012820 return SDValue();
12821
Stuart Hastings865f0932011-06-03 23:53:54 +000012822 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12823 if (R.getNode())
12824 return R;
12825
Evan Cheng760d1942010-01-04 21:22:48 +000012826 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012827 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012828 return SDValue();
12829
Evan Cheng760d1942010-01-04 21:22:48 +000012830 SDValue N0 = N->getOperand(0);
12831 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012832
Nate Begemanb65c1752010-12-17 22:55:37 +000012833 // look for psign/blend
12834 if (Subtarget->hasSSSE3()) {
12835 if (VT == MVT::v2i64) {
12836 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012837 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012838 std::swap(N0, N1);
12839 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012840 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012841 SDValue Mask = N1.getOperand(0);
12842 SDValue X = N1.getOperand(1);
12843 SDValue Y;
12844 if (N0.getOperand(0) == Mask)
12845 Y = N0.getOperand(1);
12846 if (N0.getOperand(1) == Mask)
12847 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012848
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012849 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012850 if (!Y.getNode())
12851 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012852
Nate Begemanb65c1752010-12-17 22:55:37 +000012853 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12854 if (Mask.getOpcode() != ISD::BITCAST ||
12855 X.getOpcode() != ISD::BITCAST ||
12856 Y.getOpcode() != ISD::BITCAST)
12857 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012858
Nate Begemanb65c1752010-12-17 22:55:37 +000012859 // Look through mask bitcast.
12860 Mask = Mask.getOperand(0);
12861 EVT MaskVT = Mask.getValueType();
12862
12863 // Validate that the Mask operand is a vector sra node. The sra node
12864 // will be an intrinsic.
12865 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12866 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012867
Nate Begemanb65c1752010-12-17 22:55:37 +000012868 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12869 // there is no psrai.b
12870 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12871 case Intrinsic::x86_sse2_psrai_w:
12872 case Intrinsic::x86_sse2_psrai_d:
12873 break;
12874 default: return SDValue();
12875 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012876
Nate Begemanb65c1752010-12-17 22:55:37 +000012877 // Check that the SRA is all signbits.
12878 SDValue SraC = Mask.getOperand(2);
12879 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12880 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12881 if ((SraAmt + 1) != EltBits)
12882 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012883
Nate Begemanb65c1752010-12-17 22:55:37 +000012884 DebugLoc DL = N->getDebugLoc();
12885
12886 // Now we know we at least have a plendvb with the mask val. See if
12887 // we can form a psignb/w/d.
12888 // psign = x.type == y.type == mask.type && y = sub(0, x);
12889 X = X.getOperand(0);
12890 Y = Y.getOperand(0);
12891 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12892 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12893 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12894 unsigned Opc = 0;
12895 switch (EltBits) {
12896 case 8: Opc = X86ISD::PSIGNB; break;
12897 case 16: Opc = X86ISD::PSIGNW; break;
12898 case 32: Opc = X86ISD::PSIGND; break;
12899 default: break;
12900 }
12901 if (Opc) {
12902 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12903 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12904 }
12905 }
12906 // PBLENDVB only available on SSE 4.1
12907 if (!Subtarget->hasSSE41())
12908 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012909
Nate Begemanb65c1752010-12-17 22:55:37 +000012910 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12911 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12912 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012913 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012914 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12915 }
12916 }
12917 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012918
Nate Begemanb65c1752010-12-17 22:55:37 +000012919 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012920 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12921 std::swap(N0, N1);
12922 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12923 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012924 if (!N0.hasOneUse() || !N1.hasOneUse())
12925 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012926
12927 SDValue ShAmt0 = N0.getOperand(1);
12928 if (ShAmt0.getValueType() != MVT::i8)
12929 return SDValue();
12930 SDValue ShAmt1 = N1.getOperand(1);
12931 if (ShAmt1.getValueType() != MVT::i8)
12932 return SDValue();
12933 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12934 ShAmt0 = ShAmt0.getOperand(0);
12935 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12936 ShAmt1 = ShAmt1.getOperand(0);
12937
12938 DebugLoc DL = N->getDebugLoc();
12939 unsigned Opc = X86ISD::SHLD;
12940 SDValue Op0 = N0.getOperand(0);
12941 SDValue Op1 = N1.getOperand(0);
12942 if (ShAmt0.getOpcode() == ISD::SUB) {
12943 Opc = X86ISD::SHRD;
12944 std::swap(Op0, Op1);
12945 std::swap(ShAmt0, ShAmt1);
12946 }
12947
Evan Cheng8b1190a2010-04-28 01:18:01 +000012948 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012949 if (ShAmt1.getOpcode() == ISD::SUB) {
12950 SDValue Sum = ShAmt1.getOperand(0);
12951 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012952 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12953 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12954 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12955 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012956 return DAG.getNode(Opc, DL, VT,
12957 Op0, Op1,
12958 DAG.getNode(ISD::TRUNCATE, DL,
12959 MVT::i8, ShAmt0));
12960 }
12961 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12962 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12963 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012964 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012965 return DAG.getNode(Opc, DL, VT,
12966 N0.getOperand(0), N1.getOperand(0),
12967 DAG.getNode(ISD::TRUNCATE, DL,
12968 MVT::i8, ShAmt0));
12969 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012970
Evan Cheng760d1942010-01-04 21:22:48 +000012971 return SDValue();
12972}
12973
Chris Lattner149a4e52008-02-22 02:09:43 +000012974/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012975static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012976 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000012977 StoreSDNode *St = cast<StoreSDNode>(N);
12978 EVT VT = St->getValue().getValueType();
12979 EVT StVT = St->getMemoryVT();
12980 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000012981 SDValue StoredVal = St->getOperand(1);
12982 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12983
12984 // If we are saving a concatination of two XMM registers, perform two stores.
Nadav Rotem6236f7f2011-08-11 17:05:47 +000012985 // This is better in Sandy Bridge cause one 256-bit mem op is done via two
12986 // 128-bit ones. If in the future the cost becomes only one memory access the
12987 // first version would be better.
Nadav Rotem5e742a32011-08-11 16:41:21 +000012988 if (VT.getSizeInBits() == 256 &&
12989 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
12990 StoredVal.getNumOperands() == 2) {
12991
12992 SDValue Value0 = StoredVal.getOperand(0);
12993 SDValue Value1 = StoredVal.getOperand(1);
12994
12995 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
12996 SDValue Ptr0 = St->getBasePtr();
12997 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
12998
12999 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
13000 St->getPointerInfo(), St->isVolatile(),
13001 St->isNonTemporal(), St->getAlignment());
13002 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
13003 St->getPointerInfo(), St->isVolatile(),
13004 St->isNonTemporal(), St->getAlignment());
13005 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
13006 }
Nadav Rotem614061b2011-08-10 19:30:14 +000013007
13008 // Optimize trunc store (of multiple scalars) to shuffle and store.
13009 // First, pack all of the elements in one place. Next, store to memory
13010 // in fewer chunks.
13011 if (St->isTruncatingStore() && VT.isVector()) {
13012 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13013 unsigned NumElems = VT.getVectorNumElements();
13014 assert(StVT != VT && "Cannot truncate to the same type");
13015 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
13016 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
13017
13018 // From, To sizes and ElemCount must be pow of two
13019 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
13020 // We are going to use the original vector elt for storing.
13021 // accumulated smaller vector elements must be a multiple of bigger size.
13022 if (0 != (NumElems * ToSz) % FromSz) return SDValue();
13023 unsigned SizeRatio = FromSz / ToSz;
13024
13025 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
13026
13027 // Create a type on which we perform the shuffle
13028 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
13029 StVT.getScalarType(), NumElems*SizeRatio);
13030
13031 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
13032
13033 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
13034 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13035 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
13036
13037 // Can't shuffle using an illegal type
13038 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
13039
13040 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
13041 DAG.getUNDEF(WideVec.getValueType()),
13042 ShuffleVec.data());
13043 // At this point all of the data is stored at the bottom of the
13044 // register. We now need to save it to mem.
13045
13046 // Find the largest store unit
13047 MVT StoreType = MVT::i8;
13048 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
13049 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
13050 MVT Tp = (MVT::SimpleValueType)tp;
13051 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
13052 StoreType = Tp;
13053 }
13054
13055 // Bitcast the original vector into a vector of store-size units
13056 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
13057 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
13058 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
13059 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
13060 SmallVector<SDValue, 8> Chains;
13061 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
13062 TLI.getPointerTy());
13063 SDValue Ptr = St->getBasePtr();
13064
13065 // Perform one or more big stores into memory.
13066 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
13067 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
13068 StoreType, ShuffWide,
13069 DAG.getIntPtrConstant(i));
13070 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
13071 St->getPointerInfo(), St->isVolatile(),
13072 St->isNonTemporal(), St->getAlignment());
13073 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
13074 Chains.push_back(Ch);
13075 }
13076
13077 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
13078 Chains.size());
13079 }
13080
13081
Chris Lattner149a4e52008-02-22 02:09:43 +000013082 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
13083 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000013084 // A preferable solution to the general problem is to figure out the right
13085 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000013086
13087 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000013088 if (VT.getSizeInBits() != 64)
13089 return SDValue();
13090
Devang Patel578efa92009-06-05 21:57:13 +000013091 const Function *F = DAG.getMachineFunction().getFunction();
13092 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000013093 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000013094 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000013095 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000013096 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000013097 isa<LoadSDNode>(St->getValue()) &&
13098 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
13099 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013100 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013101 LoadSDNode *Ld = 0;
13102 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000013103 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000013104 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013105 // Must be a store of a load. We currently handle two cases: the load
13106 // is a direct child, and it's under an intervening TokenFactor. It is
13107 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000013108 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000013109 Ld = cast<LoadSDNode>(St->getChain());
13110 else if (St->getValue().hasOneUse() &&
13111 ChainVal->getOpcode() == ISD::TokenFactor) {
13112 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013113 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000013114 TokenFactorIndex = i;
13115 Ld = cast<LoadSDNode>(St->getValue());
13116 } else
13117 Ops.push_back(ChainVal->getOperand(i));
13118 }
13119 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000013120
Evan Cheng536e6672009-03-12 05:59:15 +000013121 if (!Ld || !ISD::isNormalLoad(Ld))
13122 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013123
Evan Cheng536e6672009-03-12 05:59:15 +000013124 // If this is not the MMX case, i.e. we are just turning i64 load/store
13125 // into f64 load/store, avoid the transformation if there are multiple
13126 // uses of the loaded value.
13127 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
13128 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013129
Evan Cheng536e6672009-03-12 05:59:15 +000013130 DebugLoc LdDL = Ld->getDebugLoc();
13131 DebugLoc StDL = N->getDebugLoc();
13132 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
13133 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
13134 // pair instead.
13135 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013136 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000013137 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
13138 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013139 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013140 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000013141 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000013142 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000013143 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000013144 Ops.size());
13145 }
Evan Cheng536e6672009-03-12 05:59:15 +000013146 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000013147 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013148 St->isVolatile(), St->isNonTemporal(),
13149 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000013150 }
Evan Cheng536e6672009-03-12 05:59:15 +000013151
13152 // Otherwise, lower to two pairs of 32-bit loads / stores.
13153 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013154 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
13155 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013156
Owen Anderson825b72b2009-08-11 20:47:22 +000013157 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013158 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013159 Ld->isVolatile(), Ld->isNonTemporal(),
13160 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000013161 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013162 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000013163 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013164 MinAlign(Ld->getAlignment(), 4));
13165
13166 SDValue NewChain = LoLd.getValue(1);
13167 if (TokenFactorIndex != -1) {
13168 Ops.push_back(LoLd);
13169 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000013170 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000013171 Ops.size());
13172 }
13173
13174 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013175 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
13176 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013177
13178 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013179 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013180 St->isVolatile(), St->isNonTemporal(),
13181 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013182 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013183 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000013184 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013185 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013186 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000013187 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000013188 }
Dan Gohman475871a2008-07-27 21:46:04 +000013189 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000013190}
13191
Chris Lattner6cf73262008-01-25 06:14:17 +000013192/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
13193/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013194static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000013195 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
13196 // F[X]OR(0.0, x) -> x
13197 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000013198 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13199 if (C->getValueAPF().isPosZero())
13200 return N->getOperand(1);
13201 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13202 if (C->getValueAPF().isPosZero())
13203 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000013204 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013205}
13206
13207/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013208static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000013209 // FAND(0.0, x) -> 0.0
13210 // FAND(x, 0.0) -> 0.0
13211 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13212 if (C->getValueAPF().isPosZero())
13213 return N->getOperand(0);
13214 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13215 if (C->getValueAPF().isPosZero())
13216 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000013217 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013218}
13219
Dan Gohmane5af2d32009-01-29 01:59:02 +000013220static SDValue PerformBTCombine(SDNode *N,
13221 SelectionDAG &DAG,
13222 TargetLowering::DAGCombinerInfo &DCI) {
13223 // BT ignores high bits in the bit index operand.
13224 SDValue Op1 = N->getOperand(1);
13225 if (Op1.hasOneUse()) {
13226 unsigned BitWidth = Op1.getValueSizeInBits();
13227 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
13228 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013229 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
13230 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000013231 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000013232 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
13233 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
13234 DCI.CommitTargetLoweringOpt(TLO);
13235 }
13236 return SDValue();
13237}
Chris Lattner83e6c992006-10-04 06:57:07 +000013238
Eli Friedman7a5e5552009-06-07 06:52:44 +000013239static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
13240 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013241 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000013242 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000013243 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000013244 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000013245 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000013246 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013247 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013248 }
13249 return SDValue();
13250}
13251
Evan Cheng2e489c42009-12-16 00:53:11 +000013252static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
13253 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
13254 // (and (i32 x86isd::setcc_carry), 1)
13255 // This eliminates the zext. This transformation is necessary because
13256 // ISD::SETCC is always legalized to i8.
13257 DebugLoc dl = N->getDebugLoc();
13258 SDValue N0 = N->getOperand(0);
13259 EVT VT = N->getValueType(0);
13260 if (N0.getOpcode() == ISD::AND &&
13261 N0.hasOneUse() &&
13262 N0.getOperand(0).hasOneUse()) {
13263 SDValue N00 = N0.getOperand(0);
13264 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
13265 return SDValue();
13266 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
13267 if (!C || C->getZExtValue() != 1)
13268 return SDValue();
13269 return DAG.getNode(ISD::AND, dl, VT,
13270 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
13271 N00.getOperand(0), N00.getOperand(1)),
13272 DAG.getConstant(1, VT));
13273 }
13274
13275 return SDValue();
13276}
13277
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013278// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
13279static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
13280 unsigned X86CC = N->getConstantOperandVal(0);
13281 SDValue EFLAG = N->getOperand(1);
13282 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013283
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013284 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
13285 // a zext and produces an all-ones bit which is more useful than 0/1 in some
13286 // cases.
13287 if (X86CC == X86::COND_B)
13288 return DAG.getNode(ISD::AND, DL, MVT::i8,
13289 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
13290 DAG.getConstant(X86CC, MVT::i8), EFLAG),
13291 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013292
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013293 return SDValue();
13294}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013295
Benjamin Kramer1396c402011-06-18 11:09:41 +000013296static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
13297 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013298 SDValue Op0 = N->getOperand(0);
13299 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
13300 // a 32-bit target where SSE doesn't support i64->FP operations.
13301 if (Op0.getOpcode() == ISD::LOAD) {
13302 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
13303 EVT VT = Ld->getValueType(0);
13304 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
13305 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
13306 !XTLI->getSubtarget()->is64Bit() &&
13307 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000013308 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
13309 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013310 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
13311 return FILDChain;
13312 }
13313 }
13314 return SDValue();
13315}
13316
Chris Lattner23a01992010-12-20 01:37:09 +000013317// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
13318static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
13319 X86TargetLowering::DAGCombinerInfo &DCI) {
13320 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
13321 // the result is either zero or one (depending on the input carry bit).
13322 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
13323 if (X86::isZeroNode(N->getOperand(0)) &&
13324 X86::isZeroNode(N->getOperand(1)) &&
13325 // We don't have a good way to replace an EFLAGS use, so only do this when
13326 // dead right now.
13327 SDValue(N, 1).use_empty()) {
13328 DebugLoc DL = N->getDebugLoc();
13329 EVT VT = N->getValueType(0);
13330 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
13331 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
13332 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
13333 DAG.getConstant(X86::COND_B,MVT::i8),
13334 N->getOperand(2)),
13335 DAG.getConstant(1, VT));
13336 return DCI.CombineTo(N, Res1, CarryOut);
13337 }
13338
13339 return SDValue();
13340}
13341
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013342// fold (add Y, (sete X, 0)) -> adc 0, Y
13343// (add Y, (setne X, 0)) -> sbb -1, Y
13344// (sub (sete X, 0), Y) -> sbb 0, Y
13345// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013346static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013347 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013348
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013349 // Look through ZExts.
13350 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
13351 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
13352 return SDValue();
13353
13354 SDValue SetCC = Ext.getOperand(0);
13355 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
13356 return SDValue();
13357
13358 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
13359 if (CC != X86::COND_E && CC != X86::COND_NE)
13360 return SDValue();
13361
13362 SDValue Cmp = SetCC.getOperand(1);
13363 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000013364 !X86::isZeroNode(Cmp.getOperand(1)) ||
13365 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013366 return SDValue();
13367
13368 SDValue CmpOp0 = Cmp.getOperand(0);
13369 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
13370 DAG.getConstant(1, CmpOp0.getValueType()));
13371
13372 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
13373 if (CC == X86::COND_NE)
13374 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
13375 DL, OtherVal.getValueType(), OtherVal,
13376 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
13377 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
13378 DL, OtherVal.getValueType(), OtherVal,
13379 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
13380}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013381
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013382static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
13383 SDValue Op0 = N->getOperand(0);
13384 SDValue Op1 = N->getOperand(1);
13385
13386 // X86 can't encode an immediate LHS of a sub. See if we can push the
13387 // negation into a preceding instruction.
13388 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013389 // If the RHS of the sub is a XOR with one use and a constant, invert the
13390 // immediate. Then add one to the LHS of the sub so we can turn
13391 // X-Y -> X+~Y+1, saving one register.
13392 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
13393 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000013394 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013395 EVT VT = Op0.getValueType();
13396 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
13397 Op1.getOperand(0),
13398 DAG.getConstant(~XorC, VT));
13399 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000013400 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013401 }
13402 }
13403
13404 return OptimizeConditionalInDecrement(N, DAG);
13405}
13406
Dan Gohman475871a2008-07-27 21:46:04 +000013407SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000013408 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000013409 SelectionDAG &DAG = DCI.DAG;
13410 switch (N->getOpcode()) {
13411 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000013412 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013413 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000013414 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000013415 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013416 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
13417 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000013418 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000013419 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000013420 case ISD::SHL:
13421 case ISD::SRA:
13422 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000013423 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000013424 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000013425 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013426 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000013427 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000013428 case X86ISD::FOR: return PerformFORCombine(N, DAG);
13429 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000013430 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013431 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000013432 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013433 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013434 case X86ISD::SHUFPS: // Handle all target specific shuffles
13435 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000013436 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013437 case X86ISD::PUNPCKHBW:
13438 case X86ISD::PUNPCKHWD:
13439 case X86ISD::PUNPCKHDQ:
13440 case X86ISD::PUNPCKHQDQ:
13441 case X86ISD::UNPCKHPS:
13442 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000013443 case X86ISD::VUNPCKHPSY:
13444 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013445 case X86ISD::PUNPCKLBW:
13446 case X86ISD::PUNPCKLWD:
13447 case X86ISD::PUNPCKLDQ:
13448 case X86ISD::PUNPCKLQDQ:
13449 case X86ISD::UNPCKLPS:
13450 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000013451 case X86ISD::VUNPCKLPSY:
13452 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013453 case X86ISD::MOVHLPS:
13454 case X86ISD::MOVLHPS:
13455 case X86ISD::PSHUFD:
13456 case X86ISD::PSHUFHW:
13457 case X86ISD::PSHUFLW:
13458 case X86ISD::MOVSS:
13459 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000013460 case X86ISD::VPERMILPS:
13461 case X86ISD::VPERMILPSY:
13462 case X86ISD::VPERMILPD:
13463 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000013464 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000013465 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000013466 }
13467
Dan Gohman475871a2008-07-27 21:46:04 +000013468 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000013469}
13470
Evan Chenge5b51ac2010-04-17 06:13:15 +000013471/// isTypeDesirableForOp - Return true if the target has native support for
13472/// the specified value type and it is 'desirable' to use the type for the
13473/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
13474/// instruction encodings are longer and some i16 instructions are slow.
13475bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
13476 if (!isTypeLegal(VT))
13477 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013478 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000013479 return true;
13480
13481 switch (Opc) {
13482 default:
13483 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000013484 case ISD::LOAD:
13485 case ISD::SIGN_EXTEND:
13486 case ISD::ZERO_EXTEND:
13487 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013488 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013489 case ISD::SRL:
13490 case ISD::SUB:
13491 case ISD::ADD:
13492 case ISD::MUL:
13493 case ISD::AND:
13494 case ISD::OR:
13495 case ISD::XOR:
13496 return false;
13497 }
13498}
13499
13500/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013501/// beneficial for dag combiner to promote the specified node. If true, it
13502/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013503bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013504 EVT VT = Op.getValueType();
13505 if (VT != MVT::i16)
13506 return false;
13507
Evan Cheng4c26e932010-04-19 19:29:22 +000013508 bool Promote = false;
13509 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013510 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013511 default: break;
13512 case ISD::LOAD: {
13513 LoadSDNode *LD = cast<LoadSDNode>(Op);
13514 // If the non-extending load has a single use and it's not live out, then it
13515 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013516 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13517 Op.hasOneUse()*/) {
13518 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13519 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13520 // The only case where we'd want to promote LOAD (rather then it being
13521 // promoted as an operand is when it's only use is liveout.
13522 if (UI->getOpcode() != ISD::CopyToReg)
13523 return false;
13524 }
13525 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013526 Promote = true;
13527 break;
13528 }
13529 case ISD::SIGN_EXTEND:
13530 case ISD::ZERO_EXTEND:
13531 case ISD::ANY_EXTEND:
13532 Promote = true;
13533 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013534 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013535 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013536 SDValue N0 = Op.getOperand(0);
13537 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013538 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013539 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013540 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013541 break;
13542 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013543 case ISD::ADD:
13544 case ISD::MUL:
13545 case ISD::AND:
13546 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013547 case ISD::XOR:
13548 Commute = true;
13549 // fallthrough
13550 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013551 SDValue N0 = Op.getOperand(0);
13552 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000013553 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013554 return false;
13555 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000013556 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013557 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000013558 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013559 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013560 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013561 }
13562 }
13563
13564 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013565 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013566}
13567
Evan Cheng60c07e12006-07-05 22:17:51 +000013568//===----------------------------------------------------------------------===//
13569// X86 Inline Assembly Support
13570//===----------------------------------------------------------------------===//
13571
Chris Lattnerb8105652009-07-20 17:51:36 +000013572bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13573 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013574
13575 std::string AsmStr = IA->getAsmString();
13576
13577 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013578 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013579 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013580
13581 switch (AsmPieces.size()) {
13582 default: return false;
13583 case 1:
13584 AsmStr = AsmPieces[0];
13585 AsmPieces.clear();
13586 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13587
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013588 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013589 // we will turn this bswap into something that will be lowered to logical ops
13590 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13591 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013592 // bswap $0
13593 if (AsmPieces.size() == 2 &&
13594 (AsmPieces[0] == "bswap" ||
13595 AsmPieces[0] == "bswapq" ||
13596 AsmPieces[0] == "bswapl") &&
13597 (AsmPieces[1] == "$0" ||
13598 AsmPieces[1] == "${0:q}")) {
13599 // No need to check constraints, nothing other than the equivalent of
13600 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013601 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013602 if (!Ty || Ty->getBitWidth() % 16 != 0)
13603 return false;
13604 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013605 }
13606 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013607 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013608 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013609 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013610 AsmPieces[1] == "$$8," &&
13611 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013612 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13613 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013614 const std::string &ConstraintsStr = IA->getConstraintString();
13615 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013616 std::sort(AsmPieces.begin(), AsmPieces.end());
13617 if (AsmPieces.size() == 4 &&
13618 AsmPieces[0] == "~{cc}" &&
13619 AsmPieces[1] == "~{dirflag}" &&
13620 AsmPieces[2] == "~{flags}" &&
13621 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013622 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013623 if (!Ty || Ty->getBitWidth() % 16 != 0)
13624 return false;
13625 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013626 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013627 }
13628 break;
13629 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013630 if (CI->getType()->isIntegerTy(32) &&
13631 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13632 SmallVector<StringRef, 4> Words;
13633 SplitString(AsmPieces[0], Words, " \t,");
13634 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13635 Words[2] == "${0:w}") {
13636 Words.clear();
13637 SplitString(AsmPieces[1], Words, " \t,");
13638 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13639 Words[2] == "$0") {
13640 Words.clear();
13641 SplitString(AsmPieces[2], Words, " \t,");
13642 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13643 Words[2] == "${0:w}") {
13644 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013645 const std::string &ConstraintsStr = IA->getConstraintString();
13646 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013647 std::sort(AsmPieces.begin(), AsmPieces.end());
13648 if (AsmPieces.size() == 4 &&
13649 AsmPieces[0] == "~{cc}" &&
13650 AsmPieces[1] == "~{dirflag}" &&
13651 AsmPieces[2] == "~{flags}" &&
13652 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013653 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013654 if (!Ty || Ty->getBitWidth() % 16 != 0)
13655 return false;
13656 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013657 }
13658 }
13659 }
13660 }
13661 }
Evan Cheng55d42002011-01-08 01:24:27 +000013662
13663 if (CI->getType()->isIntegerTy(64)) {
13664 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13665 if (Constraints.size() >= 2 &&
13666 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13667 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13668 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13669 SmallVector<StringRef, 4> Words;
13670 SplitString(AsmPieces[0], Words, " \t");
13671 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013672 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013673 SplitString(AsmPieces[1], Words, " \t");
13674 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13675 Words.clear();
13676 SplitString(AsmPieces[2], Words, " \t,");
13677 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13678 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013679 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013680 if (!Ty || Ty->getBitWidth() % 16 != 0)
13681 return false;
13682 return IntrinsicLowering::LowerToByteSwap(CI);
13683 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013684 }
13685 }
13686 }
13687 }
13688 break;
13689 }
13690 return false;
13691}
13692
13693
13694
Chris Lattnerf4dff842006-07-11 02:54:03 +000013695/// getConstraintType - Given a constraint letter, return the type of
13696/// constraint it is for this target.
13697X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013698X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13699 if (Constraint.size() == 1) {
13700 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013701 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013702 case 'q':
13703 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013704 case 'f':
13705 case 't':
13706 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013707 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013708 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013709 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013710 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013711 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013712 case 'a':
13713 case 'b':
13714 case 'c':
13715 case 'd':
13716 case 'S':
13717 case 'D':
13718 case 'A':
13719 return C_Register;
13720 case 'I':
13721 case 'J':
13722 case 'K':
13723 case 'L':
13724 case 'M':
13725 case 'N':
13726 case 'G':
13727 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013728 case 'e':
13729 case 'Z':
13730 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013731 default:
13732 break;
13733 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013734 }
Chris Lattner4234f572007-03-25 02:14:49 +000013735 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013736}
13737
John Thompson44ab89e2010-10-29 17:29:13 +000013738/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013739/// This object must already have been set up with the operand type
13740/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013741TargetLowering::ConstraintWeight
13742 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013743 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013744 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013745 Value *CallOperandVal = info.CallOperandVal;
13746 // If we don't have a value, we can't do a match,
13747 // but allow it at the lowest weight.
13748 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013749 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013750 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013751 // Look at the constraint type.
13752 switch (*constraint) {
13753 default:
John Thompson44ab89e2010-10-29 17:29:13 +000013754 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13755 case 'R':
13756 case 'q':
13757 case 'Q':
13758 case 'a':
13759 case 'b':
13760 case 'c':
13761 case 'd':
13762 case 'S':
13763 case 'D':
13764 case 'A':
13765 if (CallOperandVal->getType()->isIntegerTy())
13766 weight = CW_SpecificReg;
13767 break;
13768 case 'f':
13769 case 't':
13770 case 'u':
13771 if (type->isFloatingPointTy())
13772 weight = CW_SpecificReg;
13773 break;
13774 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000013775 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000013776 weight = CW_SpecificReg;
13777 break;
13778 case 'x':
13779 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013780 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000013781 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013782 break;
13783 case 'I':
13784 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13785 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000013786 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013787 }
13788 break;
John Thompson44ab89e2010-10-29 17:29:13 +000013789 case 'J':
13790 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13791 if (C->getZExtValue() <= 63)
13792 weight = CW_Constant;
13793 }
13794 break;
13795 case 'K':
13796 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13797 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13798 weight = CW_Constant;
13799 }
13800 break;
13801 case 'L':
13802 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13803 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13804 weight = CW_Constant;
13805 }
13806 break;
13807 case 'M':
13808 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13809 if (C->getZExtValue() <= 3)
13810 weight = CW_Constant;
13811 }
13812 break;
13813 case 'N':
13814 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13815 if (C->getZExtValue() <= 0xff)
13816 weight = CW_Constant;
13817 }
13818 break;
13819 case 'G':
13820 case 'C':
13821 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13822 weight = CW_Constant;
13823 }
13824 break;
13825 case 'e':
13826 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13827 if ((C->getSExtValue() >= -0x80000000LL) &&
13828 (C->getSExtValue() <= 0x7fffffffLL))
13829 weight = CW_Constant;
13830 }
13831 break;
13832 case 'Z':
13833 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13834 if (C->getZExtValue() <= 0xffffffff)
13835 weight = CW_Constant;
13836 }
13837 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013838 }
13839 return weight;
13840}
13841
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013842/// LowerXConstraint - try to replace an X constraint, which matches anything,
13843/// with another that has more specific requirements based on the type of the
13844/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013845const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013846LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013847 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13848 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013849 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013850 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013851 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013852 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013853 return "x";
13854 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013855
Chris Lattner5e764232008-04-26 23:02:14 +000013856 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013857}
13858
Chris Lattner48884cd2007-08-25 00:47:38 +000013859/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13860/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013861void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013862 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013863 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013864 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013865 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013866
Eric Christopher100c8332011-06-02 23:16:42 +000013867 // Only support length 1 constraints for now.
13868 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013869
Eric Christopher100c8332011-06-02 23:16:42 +000013870 char ConstraintLetter = Constraint[0];
13871 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013872 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013873 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013874 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013875 if (C->getZExtValue() <= 31) {
13876 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013877 break;
13878 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013879 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013880 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013881 case 'J':
13882 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013883 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013884 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13885 break;
13886 }
13887 }
13888 return;
13889 case 'K':
13890 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013891 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013892 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13893 break;
13894 }
13895 }
13896 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013897 case 'N':
13898 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013899 if (C->getZExtValue() <= 255) {
13900 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013901 break;
13902 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013903 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013904 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013905 case 'e': {
13906 // 32-bit signed value
13907 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013908 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13909 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013910 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013911 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013912 break;
13913 }
13914 // FIXME gcc accepts some relocatable values here too, but only in certain
13915 // memory models; it's complicated.
13916 }
13917 return;
13918 }
13919 case 'Z': {
13920 // 32-bit unsigned value
13921 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013922 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13923 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013924 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13925 break;
13926 }
13927 }
13928 // FIXME gcc accepts some relocatable values here too, but only in certain
13929 // memory models; it's complicated.
13930 return;
13931 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013932 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013933 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013934 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013935 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013936 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013937 break;
13938 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013939
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013940 // In any sort of PIC mode addresses need to be computed at runtime by
13941 // adding in a register or some sort of table lookup. These can't
13942 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013943 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013944 return;
13945
Chris Lattnerdc43a882007-05-03 16:52:29 +000013946 // If we are in non-pic codegen mode, we allow the address of a global (with
13947 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013948 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013949 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013950
Chris Lattner49921962009-05-08 18:23:14 +000013951 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13952 while (1) {
13953 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13954 Offset += GA->getOffset();
13955 break;
13956 } else if (Op.getOpcode() == ISD::ADD) {
13957 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13958 Offset += C->getZExtValue();
13959 Op = Op.getOperand(0);
13960 continue;
13961 }
13962 } else if (Op.getOpcode() == ISD::SUB) {
13963 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13964 Offset += -C->getZExtValue();
13965 Op = Op.getOperand(0);
13966 continue;
13967 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013968 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013969
Chris Lattner49921962009-05-08 18:23:14 +000013970 // Otherwise, this isn't something we can handle, reject it.
13971 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013972 }
Eric Christopherfd179292009-08-27 18:07:15 +000013973
Dan Gohman46510a72010-04-15 01:51:59 +000013974 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013975 // If we require an extra load to get this address, as in PIC mode, we
13976 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013977 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13978 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013979 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013980
Devang Patel0d881da2010-07-06 22:08:15 +000013981 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13982 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013983 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013984 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013985 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013986
Gabor Greifba36cb52008-08-28 21:40:38 +000013987 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013988 Ops.push_back(Result);
13989 return;
13990 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013991 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013992}
13993
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013994std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013995X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013996 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013997 // First, see if this is a constraint that directly corresponds to an LLVM
13998 // register class.
13999 if (Constraint.size() == 1) {
14000 // GCC Constraint Letters
14001 switch (Constraint[0]) {
14002 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000014003 // TODO: Slight differences here in allocation order and leaving
14004 // RIP in the class. Do they matter any more here than they do
14005 // in the normal allocation?
14006 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
14007 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014008 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014009 return std::make_pair(0U, X86::GR32RegisterClass);
14010 else if (VT == MVT::i16)
14011 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014012 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014013 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014014 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000014015 return std::make_pair(0U, X86::GR64RegisterClass);
14016 break;
14017 }
14018 // 32-bit fallthrough
14019 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014020 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014021 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
14022 else if (VT == MVT::i16)
14023 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014024 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014025 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
14026 else if (VT == MVT::i64)
14027 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
14028 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014029 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000014030 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014031 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000014032 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014033 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000014034 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000014035 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000014036 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000014037 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014038 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014039 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014040 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
14041 if (VT == MVT::i16)
14042 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
14043 if (VT == MVT::i32 || !Subtarget->is64Bit())
14044 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
14045 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014046 case 'f': // FP Stack registers.
14047 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
14048 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000014049 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014050 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014051 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014052 return std::make_pair(0U, X86::RFP64RegisterClass);
14053 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000014054 case 'y': // MMX_REGS if MMX allowed.
14055 if (!Subtarget->hasMMX()) break;
14056 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014057 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014058 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014059 // FALL THROUGH.
14060 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014061 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000014062
Owen Anderson825b72b2009-08-11 20:47:22 +000014063 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000014064 default: break;
14065 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014066 case MVT::f32:
14067 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000014068 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014069 case MVT::f64:
14070 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000014071 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014072 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014073 case MVT::v16i8:
14074 case MVT::v8i16:
14075 case MVT::v4i32:
14076 case MVT::v2i64:
14077 case MVT::v4f32:
14078 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000014079 return std::make_pair(0U, X86::VR128RegisterClass);
14080 }
Chris Lattnerad043e82007-04-09 05:11:28 +000014081 break;
14082 }
14083 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014084
Chris Lattnerf76d1802006-07-31 23:26:50 +000014085 // Use the default implementation in TargetLowering to convert the register
14086 // constraint into a member of a register class.
14087 std::pair<unsigned, const TargetRegisterClass*> Res;
14088 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000014089
14090 // Not found as a standard register?
14091 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014092 // Map st(0) -> st(7) -> ST0
14093 if (Constraint.size() == 7 && Constraint[0] == '{' &&
14094 tolower(Constraint[1]) == 's' &&
14095 tolower(Constraint[2]) == 't' &&
14096 Constraint[3] == '(' &&
14097 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
14098 Constraint[5] == ')' &&
14099 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000014100
Chris Lattner56d77c72009-09-13 22:41:48 +000014101 Res.first = X86::ST0+Constraint[4]-'0';
14102 Res.second = X86::RFP80RegisterClass;
14103 return Res;
14104 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014105
Chris Lattner56d77c72009-09-13 22:41:48 +000014106 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014107 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000014108 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000014109 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014110 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000014111 }
Chris Lattner56d77c72009-09-13 22:41:48 +000014112
14113 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014114 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014115 Res.first = X86::EFLAGS;
14116 Res.second = X86::CCRRegisterClass;
14117 return Res;
14118 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014119
Dale Johannesen330169f2008-11-13 21:52:36 +000014120 // 'A' means EAX + EDX.
14121 if (Constraint == "A") {
14122 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000014123 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014124 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000014125 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000014126 return Res;
14127 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014128
Chris Lattnerf76d1802006-07-31 23:26:50 +000014129 // Otherwise, check to see if this is a register class of the wrong value
14130 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
14131 // turn into {ax},{dx}.
14132 if (Res.second->hasType(VT))
14133 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014134
Chris Lattnerf76d1802006-07-31 23:26:50 +000014135 // All of the single-register GCC register classes map their values onto
14136 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
14137 // really want an 8-bit or 32-bit register, map to the appropriate register
14138 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000014139 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000014140 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014141 unsigned DestReg = 0;
14142 switch (Res.first) {
14143 default: break;
14144 case X86::AX: DestReg = X86::AL; break;
14145 case X86::DX: DestReg = X86::DL; break;
14146 case X86::CX: DestReg = X86::CL; break;
14147 case X86::BX: DestReg = X86::BL; break;
14148 }
14149 if (DestReg) {
14150 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014151 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014152 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014153 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014154 unsigned DestReg = 0;
14155 switch (Res.first) {
14156 default: break;
14157 case X86::AX: DestReg = X86::EAX; break;
14158 case X86::DX: DestReg = X86::EDX; break;
14159 case X86::CX: DestReg = X86::ECX; break;
14160 case X86::BX: DestReg = X86::EBX; break;
14161 case X86::SI: DestReg = X86::ESI; break;
14162 case X86::DI: DestReg = X86::EDI; break;
14163 case X86::BP: DestReg = X86::EBP; break;
14164 case X86::SP: DestReg = X86::ESP; break;
14165 }
14166 if (DestReg) {
14167 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014168 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014169 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014170 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014171 unsigned DestReg = 0;
14172 switch (Res.first) {
14173 default: break;
14174 case X86::AX: DestReg = X86::RAX; break;
14175 case X86::DX: DestReg = X86::RDX; break;
14176 case X86::CX: DestReg = X86::RCX; break;
14177 case X86::BX: DestReg = X86::RBX; break;
14178 case X86::SI: DestReg = X86::RSI; break;
14179 case X86::DI: DestReg = X86::RDI; break;
14180 case X86::BP: DestReg = X86::RBP; break;
14181 case X86::SP: DestReg = X86::RSP; break;
14182 }
14183 if (DestReg) {
14184 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014185 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014186 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000014187 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000014188 } else if (Res.second == X86::FR32RegisterClass ||
14189 Res.second == X86::FR64RegisterClass ||
14190 Res.second == X86::VR128RegisterClass) {
14191 // Handle references to XMM physical registers that got mapped into the
14192 // wrong class. This can happen with constraints like {xmm0} where the
14193 // target independent register mapper will just pick the first match it can
14194 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000014195 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014196 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000014197 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014198 Res.second = X86::FR64RegisterClass;
14199 else if (X86::VR128RegisterClass->hasType(VT))
14200 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000014201 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014202
Chris Lattnerf76d1802006-07-31 23:26:50 +000014203 return Res;
14204}