blob: 9c940c49ca34e0ecb1db6fc62a7e540b0ef88265 [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()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000471 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000472 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
473 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
474 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
475 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
476 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
477 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
478 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000479 }
480
Eli Friedman43f51ae2011-08-26 21:21:21 +0000481 if (Subtarget->hasCmpxchg16b()) {
482 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
483 }
484
Evan Cheng3c992d22006-03-07 02:02:57 +0000485 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000486 if (!Subtarget->isTargetDarwin() &&
487 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000488 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000489 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000490 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000491
Owen Anderson825b72b2009-08-11 20:47:22 +0000492 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
493 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
494 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
495 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000496 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000497 setExceptionPointerRegister(X86::RAX);
498 setExceptionSelectorRegister(X86::RDX);
499 } else {
500 setExceptionPointerRegister(X86::EAX);
501 setExceptionSelectorRegister(X86::EDX);
502 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000503 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
504 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000505
Owen Anderson825b72b2009-08-11 20:47:22 +0000506 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000507
Owen Anderson825b72b2009-08-11 20:47:22 +0000508 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000509
Nate Begemanacc398c2006-01-25 18:21:52 +0000510 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 setOperationAction(ISD::VASTART , MVT::Other, Custom);
512 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000513 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000514 setOperationAction(ISD::VAARG , MVT::Other, Custom);
515 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000516 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000517 setOperationAction(ISD::VAARG , MVT::Other, Expand);
518 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000519 }
Evan Chengae642192007-03-02 23:16:35 +0000520
Owen Anderson825b72b2009-08-11 20:47:22 +0000521 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
522 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000523 setOperationAction(ISD::DYNAMIC_STACKALLOC,
524 (Subtarget->is64Bit() ? MVT::i64 : MVT::i32),
525 (Subtarget->isTargetCOFF()
526 && !Subtarget->isTargetEnvMacho()
527 ? Custom : Expand));
Chris Lattnerb99329e2006-01-13 02:42:53 +0000528
Evan Chengc7ce29b2009-02-13 22:36:38 +0000529 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000530 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000531 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000532 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
533 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000534
Evan Cheng223547a2006-01-31 22:28:30 +0000535 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000536 setOperationAction(ISD::FABS , MVT::f64, Custom);
537 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000538
539 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000540 setOperationAction(ISD::FNEG , MVT::f64, Custom);
541 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000542
Evan Cheng68c47cb2007-01-05 07:55:56 +0000543 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000544 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
545 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000546
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000547 // Lower this to FGETSIGNx86 plus an AND.
548 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
549 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
550
Evan Chengd25e9e82006-02-02 00:28:23 +0000551 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000552 setOperationAction(ISD::FSIN , MVT::f64, Expand);
553 setOperationAction(ISD::FCOS , MVT::f64, Expand);
554 setOperationAction(ISD::FSIN , MVT::f32, Expand);
555 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000556
Chris Lattnera54aa942006-01-29 06:26:08 +0000557 // Expand FP immediates into loads from the stack, except for the special
558 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000559 addLegalFPImmediate(APFloat(+0.0)); // xorpd
560 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000561 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000562 // Use SSE for f32, x87 for f64.
563 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000564 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
565 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000566
567 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000568 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000569
570 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000571 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000572
Owen Anderson825b72b2009-08-11 20:47:22 +0000573 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000574
575 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000576 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
577 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000578
579 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000580 setOperationAction(ISD::FSIN , MVT::f32, Expand);
581 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000582
Nate Begemane1795842008-02-14 08:57:00 +0000583 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000584 addLegalFPImmediate(APFloat(+0.0f)); // xorps
585 addLegalFPImmediate(APFloat(+0.0)); // FLD0
586 addLegalFPImmediate(APFloat(+1.0)); // FLD1
587 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
588 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
589
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000590 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000591 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
592 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000593 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000594 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000595 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000596 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000597 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
598 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000599
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
601 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
602 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
603 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000604
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000605 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000606 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
607 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000608 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000609 addLegalFPImmediate(APFloat(+0.0)); // FLD0
610 addLegalFPImmediate(APFloat(+1.0)); // FLD1
611 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
612 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000613 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
614 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
615 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
616 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000617 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000618
Cameron Zwarich33390842011-07-08 21:39:21 +0000619 // We don't support FMA.
620 setOperationAction(ISD::FMA, MVT::f64, Expand);
621 setOperationAction(ISD::FMA, MVT::f32, Expand);
622
Dale Johannesen59a58732007-08-05 18:49:15 +0000623 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000624 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000625 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
626 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
627 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000628 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000629 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000630 addLegalFPImmediate(TmpFlt); // FLD0
631 TmpFlt.changeSign();
632 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000633
634 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000635 APFloat TmpFlt2(+1.0);
636 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
637 &ignored);
638 addLegalFPImmediate(TmpFlt2); // FLD1
639 TmpFlt2.changeSign();
640 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
641 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000642
Evan Chengc7ce29b2009-02-13 22:36:38 +0000643 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000644 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
645 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000646 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000647
648 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000649 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000650
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000651 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000652 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
653 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
654 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000655
Owen Anderson825b72b2009-08-11 20:47:22 +0000656 setOperationAction(ISD::FLOG, MVT::f80, Expand);
657 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
658 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
659 setOperationAction(ISD::FEXP, MVT::f80, Expand);
660 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000661
Mon P Wangf007a8b2008-11-06 05:31:54 +0000662 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000663 // (for widening) or expand (for scalarization). Then we will selectively
664 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000665 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
666 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
667 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
668 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
669 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
670 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
671 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
672 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
673 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
674 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
675 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
676 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
677 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
678 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
679 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
680 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
681 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000682 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000683 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
684 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
686 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
687 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
710 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
711 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
715 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000716 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000717 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
718 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
719 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
720 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
721 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
722 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
723 setTruncStoreAction((MVT::SimpleValueType)VT,
724 (MVT::SimpleValueType)InnerVT, Expand);
725 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
726 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
727 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000728 }
729
Evan Chengc7ce29b2009-02-13 22:36:38 +0000730 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
731 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000732 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000733 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000734 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000735 }
736
Dale Johannesen0488fb62010-09-30 23:57:10 +0000737 // MMX-sized vectors (other than x86mmx) are expected to be expanded
738 // into smaller operations.
739 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
740 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
741 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
742 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
743 setOperationAction(ISD::AND, MVT::v8i8, Expand);
744 setOperationAction(ISD::AND, MVT::v4i16, Expand);
745 setOperationAction(ISD::AND, MVT::v2i32, Expand);
746 setOperationAction(ISD::AND, MVT::v1i64, Expand);
747 setOperationAction(ISD::OR, MVT::v8i8, Expand);
748 setOperationAction(ISD::OR, MVT::v4i16, Expand);
749 setOperationAction(ISD::OR, MVT::v2i32, Expand);
750 setOperationAction(ISD::OR, MVT::v1i64, Expand);
751 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
752 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
753 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
754 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
755 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
756 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
757 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
758 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
759 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
760 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
761 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
762 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
763 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000764 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
765 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
766 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
767 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000768
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000769 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000770 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000771
Owen Anderson825b72b2009-08-11 20:47:22 +0000772 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
773 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
774 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
775 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
776 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
777 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
778 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
779 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
780 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
781 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
782 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
783 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000784 }
785
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000786 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000787 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000788
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000789 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
790 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000791 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
792 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
793 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
794 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000795
Owen Anderson825b72b2009-08-11 20:47:22 +0000796 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
797 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
798 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
799 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
800 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
801 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
802 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
803 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
804 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
805 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
806 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
807 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
808 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
809 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
810 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
811 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000812
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
814 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
815 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
816 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000817
Owen Anderson825b72b2009-08-11 20:47:22 +0000818 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
819 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
820 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
821 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
822 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000823
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000824 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
825 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
826 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
827 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
828 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
829
Evan Cheng2c3ae372006-04-12 21:21:57 +0000830 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000831 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
832 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000833 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000834 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000835 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000836 // Do not attempt to custom lower non-128-bit vectors
837 if (!VT.is128BitVector())
838 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000839 setOperationAction(ISD::BUILD_VECTOR,
840 VT.getSimpleVT().SimpleTy, Custom);
841 setOperationAction(ISD::VECTOR_SHUFFLE,
842 VT.getSimpleVT().SimpleTy, Custom);
843 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
844 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000845 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000846
Owen Anderson825b72b2009-08-11 20:47:22 +0000847 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
848 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
849 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
850 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
851 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
852 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000853
Nate Begemancdd1eec2008-02-12 22:51:28 +0000854 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000855 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
856 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000857 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000858
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000859 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000860 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
861 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000862 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000863
864 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000865 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000866 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000867
Owen Andersond6662ad2009-08-10 20:46:15 +0000868 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000869 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000870 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000871 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000872 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000873 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000874 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000875 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000876 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000877 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000878 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000879
Owen Anderson825b72b2009-08-11 20:47:22 +0000880 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000881
Evan Cheng2c3ae372006-04-12 21:21:57 +0000882 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000883 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
884 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
885 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
886 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000887
Owen Anderson825b72b2009-08-11 20:47:22 +0000888 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
889 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000890 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000891
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000892 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000893 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
894 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
895 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
896 setOperationAction(ISD::FRINT, MVT::f32, Legal);
897 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
898 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
899 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
900 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
901 setOperationAction(ISD::FRINT, MVT::f64, Legal);
902 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
903
Nate Begeman14d12ca2008-02-11 04:19:36 +0000904 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000905 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000906
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000907 // Can turn SHL into an integer multiply.
908 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000909 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000910
Nate Begeman14d12ca2008-02-11 04:19:36 +0000911 // i8 and i16 vectors are custom , because the source register and source
912 // source memory operand types are not the same width. f32 vectors are
913 // custom since the immediate controlling the insert encodes additional
914 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
916 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
917 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
918 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000919
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
921 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
922 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
923 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000924
925 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000926 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
927 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000928 }
929 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000930
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000931 if (Subtarget->hasSSE2() || Subtarget->hasAVX()) {
Nadav Rotem43012222011-05-11 08:12:09 +0000932 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
933 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
934 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000935 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000936
937 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
938 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
939 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
940
941 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
942 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
943 }
944
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000945 if (Subtarget->hasSSE42() || Subtarget->hasAVX())
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000947
David Greene9b9838d2009-06-29 16:47:10 +0000948 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000949 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
950 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
951 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
952 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
953 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
954 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000955
Owen Anderson825b72b2009-08-11 20:47:22 +0000956 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000957 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
958 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000959
Owen Anderson825b72b2009-08-11 20:47:22 +0000960 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
961 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
962 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
963 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
964 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
965 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000966
Owen Anderson825b72b2009-08-11 20:47:22 +0000967 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
968 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
969 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
970 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
971 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
972 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000973
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000974 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
975 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000976 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000977
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000978 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
979 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
980 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
981 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
982 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
983 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
984
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000985 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
986 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
987 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
988 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
989
990 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
991 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
992 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
993 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
994
995 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
996 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
997
Craig Toppera5347802011-08-23 04:36:33 +0000998 setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
999 setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001000 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
1001 setOperationAction(ISD::VSETCC, MVT::v4i64, Custom);
1002
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001003 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1004 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1005 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1006
Craig Topper13894fa2011-08-24 06:14:18 +00001007 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1008 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1009 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1010 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1011
1012 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1013 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1014 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1015 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1016
1017 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1018 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1019 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1020 // Don't lower v32i8 because there is no 128-bit byte mul
1021
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001022 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001023 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001024 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1025 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1026 EVT VT = SVT;
1027
1028 // Extract subvector is special because the value type
1029 // (result) is 128-bit but the source is 256-bit wide.
1030 if (VT.is128BitVector())
1031 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1032
1033 // Do not attempt to custom lower other non-256-bit vectors
1034 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001035 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001036
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001037 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1038 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1039 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1040 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001041 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001042 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001043 }
1044
David Greene54d8eba2011-01-27 22:38:56 +00001045 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001046 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1047 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1048 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001049
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001050 // Do not attempt to promote non-256-bit vectors
1051 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001052 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001053
1054 setOperationAction(ISD::AND, SVT, Promote);
1055 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1056 setOperationAction(ISD::OR, SVT, Promote);
1057 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1058 setOperationAction(ISD::XOR, SVT, Promote);
1059 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1060 setOperationAction(ISD::LOAD, SVT, Promote);
1061 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1062 setOperationAction(ISD::SELECT, SVT, Promote);
1063 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001064 }
David Greene9b9838d2009-06-29 16:47:10 +00001065 }
1066
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001067 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1068 // of this type with custom code.
1069 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1070 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1071 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1072 }
1073
Evan Cheng6be2c582006-04-05 23:38:46 +00001074 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001075 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001076
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001077
Eli Friedman962f5492010-06-02 19:35:46 +00001078 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1079 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001080 //
Eli Friedman962f5492010-06-02 19:35:46 +00001081 // FIXME: We really should do custom legalization for addition and
1082 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1083 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001084 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1085 // Add/Sub/Mul with overflow operations are custom lowered.
1086 MVT VT = IntVTs[i];
1087 setOperationAction(ISD::SADDO, VT, Custom);
1088 setOperationAction(ISD::UADDO, VT, Custom);
1089 setOperationAction(ISD::SSUBO, VT, Custom);
1090 setOperationAction(ISD::USUBO, VT, Custom);
1091 setOperationAction(ISD::SMULO, VT, Custom);
1092 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001093 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001094
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001095 // There are no 8-bit 3-address imul/mul instructions
1096 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1097 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001098
Evan Chengd54f2d52009-03-31 19:38:51 +00001099 if (!Subtarget->is64Bit()) {
1100 // These libcalls are not available in 32-bit.
1101 setLibcallName(RTLIB::SHL_I128, 0);
1102 setLibcallName(RTLIB::SRL_I128, 0);
1103 setLibcallName(RTLIB::SRA_I128, 0);
1104 }
1105
Evan Cheng206ee9d2006-07-07 08:33:52 +00001106 // We have target-specific dag combine patterns for the following nodes:
1107 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001108 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001109 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001110 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001111 setTargetDAGCombine(ISD::SHL);
1112 setTargetDAGCombine(ISD::SRA);
1113 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001114 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001115 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001116 setTargetDAGCombine(ISD::ADD);
1117 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001118 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001119 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001120 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001121 if (Subtarget->is64Bit())
1122 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001123
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001124 computeRegisterProperties();
1125
Evan Cheng05219282011-01-06 06:52:41 +00001126 // On Darwin, -Os means optimize for size without hurting performance,
1127 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001128 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001129 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001130 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001131 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1132 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1133 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001134 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001135 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001136
1137 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001138}
1139
Scott Michel5b8f82e2008-03-10 15:42:14 +00001140
Owen Anderson825b72b2009-08-11 20:47:22 +00001141MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1142 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001143}
1144
1145
Evan Cheng29286502008-01-23 23:17:41 +00001146/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1147/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001148static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001149 if (MaxAlign == 16)
1150 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001151 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001152 if (VTy->getBitWidth() == 128)
1153 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001154 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001155 unsigned EltAlign = 0;
1156 getMaxByValAlign(ATy->getElementType(), EltAlign);
1157 if (EltAlign > MaxAlign)
1158 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001159 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001160 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1161 unsigned EltAlign = 0;
1162 getMaxByValAlign(STy->getElementType(i), EltAlign);
1163 if (EltAlign > MaxAlign)
1164 MaxAlign = EltAlign;
1165 if (MaxAlign == 16)
1166 break;
1167 }
1168 }
1169 return;
1170}
1171
1172/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1173/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001174/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1175/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001176unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001177 if (Subtarget->is64Bit()) {
1178 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001179 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001180 if (TyAlign > 8)
1181 return TyAlign;
1182 return 8;
1183 }
1184
Evan Cheng29286502008-01-23 23:17:41 +00001185 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001186 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001187 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001188 return Align;
1189}
Chris Lattner2b02a442007-02-25 08:29:00 +00001190
Evan Chengf0df0312008-05-15 08:39:06 +00001191/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001192/// and store operations as a result of memset, memcpy, and memmove
1193/// lowering. If DstAlign is zero that means it's safe to destination
1194/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1195/// means there isn't a need to check it against alignment requirement,
1196/// probably because the source does not need to be loaded. If
1197/// 'NonScalarIntSafe' is true, that means it's safe to return a
1198/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1199/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1200/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001201/// It returns EVT::Other if the type should be determined using generic
1202/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001203EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001204X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1205 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001206 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001207 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001208 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001209 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1210 // linux. This is because the stack realignment code can't handle certain
1211 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001212 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001213 if (NonScalarIntSafe &&
1214 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001215 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001216 (Subtarget->isUnalignedMemAccessFast() ||
1217 ((DstAlign == 0 || DstAlign >= 16) &&
1218 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001219 Subtarget->getStackAlignment() >= 16) {
1220 if (Subtarget->hasSSE2())
1221 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001222 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001223 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001224 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001225 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001226 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001227 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001228 // Do not use f64 to lower memcpy if source is string constant. It's
1229 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001230 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001231 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001232 }
Evan Chengf0df0312008-05-15 08:39:06 +00001233 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001234 return MVT::i64;
1235 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001236}
1237
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001238/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1239/// current function. The returned value is a member of the
1240/// MachineJumpTableInfo::JTEntryKind enum.
1241unsigned X86TargetLowering::getJumpTableEncoding() const {
1242 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1243 // symbol.
1244 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1245 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001246 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001247
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001248 // Otherwise, use the normal jump table encoding heuristics.
1249 return TargetLowering::getJumpTableEncoding();
1250}
1251
Chris Lattnerc64daab2010-01-26 05:02:42 +00001252const MCExpr *
1253X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1254 const MachineBasicBlock *MBB,
1255 unsigned uid,MCContext &Ctx) const{
1256 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1257 Subtarget->isPICStyleGOT());
1258 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1259 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001260 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1261 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001262}
1263
Evan Chengcc415862007-11-09 01:32:10 +00001264/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1265/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001266SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001267 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001268 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001269 // This doesn't have DebugLoc associated with it, but is not really the
1270 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001271 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001272 return Table;
1273}
1274
Chris Lattner589c6f62010-01-26 06:28:43 +00001275/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1276/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1277/// MCExpr.
1278const MCExpr *X86TargetLowering::
1279getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1280 MCContext &Ctx) const {
1281 // X86-64 uses RIP relative addressing based on the jump table label.
1282 if (Subtarget->isPICStyleRIPRel())
1283 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1284
1285 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001286 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001287}
1288
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001289// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001290std::pair<const TargetRegisterClass*, uint8_t>
1291X86TargetLowering::findRepresentativeClass(EVT VT) const{
1292 const TargetRegisterClass *RRC = 0;
1293 uint8_t Cost = 1;
1294 switch (VT.getSimpleVT().SimpleTy) {
1295 default:
1296 return TargetLowering::findRepresentativeClass(VT);
1297 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1298 RRC = (Subtarget->is64Bit()
1299 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1300 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001301 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001302 RRC = X86::VR64RegisterClass;
1303 break;
1304 case MVT::f32: case MVT::f64:
1305 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1306 case MVT::v4f32: case MVT::v2f64:
1307 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1308 case MVT::v4f64:
1309 RRC = X86::VR128RegisterClass;
1310 break;
1311 }
1312 return std::make_pair(RRC, Cost);
1313}
1314
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001315bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1316 unsigned &Offset) const {
1317 if (!Subtarget->isTargetLinux())
1318 return false;
1319
1320 if (Subtarget->is64Bit()) {
1321 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1322 Offset = 0x28;
1323 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1324 AddressSpace = 256;
1325 else
1326 AddressSpace = 257;
1327 } else {
1328 // %gs:0x14 on i386
1329 Offset = 0x14;
1330 AddressSpace = 256;
1331 }
1332 return true;
1333}
1334
1335
Chris Lattner2b02a442007-02-25 08:29:00 +00001336//===----------------------------------------------------------------------===//
1337// Return Value Calling Convention Implementation
1338//===----------------------------------------------------------------------===//
1339
Chris Lattner59ed56b2007-02-28 04:55:35 +00001340#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001341
Michael J. Spencerec38de22010-10-10 22:04:20 +00001342bool
Eric Christopher471e4222011-06-08 23:55:35 +00001343X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1344 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001345 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001346 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001347 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001348 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001349 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001350 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001351}
1352
Dan Gohman98ca4f22009-08-05 01:29:28 +00001353SDValue
1354X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001355 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001356 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001357 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001358 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001359 MachineFunction &MF = DAG.getMachineFunction();
1360 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001361
Chris Lattner9774c912007-02-27 05:28:59 +00001362 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001363 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001364 RVLocs, *DAG.getContext());
1365 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001366
Evan Chengdcea1632010-02-04 02:40:39 +00001367 // Add the regs to the liveout set for the function.
1368 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1369 for (unsigned i = 0; i != RVLocs.size(); ++i)
1370 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1371 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001372
Dan Gohman475871a2008-07-27 21:46:04 +00001373 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001374
Dan Gohman475871a2008-07-27 21:46:04 +00001375 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001376 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1377 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001378 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1379 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001380
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001381 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001382 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1383 CCValAssign &VA = RVLocs[i];
1384 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001385 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001386 EVT ValVT = ValToCopy.getValueType();
1387
Dale Johannesenc4510512010-09-24 19:05:48 +00001388 // If this is x86-64, and we disabled SSE, we can't return FP values,
1389 // or SSE or MMX vectors.
1390 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1391 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001392 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001393 report_fatal_error("SSE register return with SSE disabled");
1394 }
1395 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1396 // llvm-gcc has never done it right and no one has noticed, so this
1397 // should be OK for now.
1398 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001399 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001400 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001401
Chris Lattner447ff682008-03-11 03:23:40 +00001402 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1403 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001404 if (VA.getLocReg() == X86::ST0 ||
1405 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001406 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1407 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001408 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001409 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001410 RetOps.push_back(ValToCopy);
1411 // Don't emit a copytoreg.
1412 continue;
1413 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001414
Evan Cheng242b38b2009-02-23 09:03:22 +00001415 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1416 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001417 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001418 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001419 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001420 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001421 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1422 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001423 // If we don't have SSE2 available, convert to v4f32 so the generated
1424 // register is legal.
1425 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001426 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001427 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001428 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001429 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001430
Dale Johannesendd64c412009-02-04 00:33:20 +00001431 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001432 Flag = Chain.getValue(1);
1433 }
Dan Gohman61a92132008-04-21 23:59:07 +00001434
1435 // The x86-64 ABI for returning structs by value requires that we copy
1436 // the sret argument into %rax for the return. We saved the argument into
1437 // a virtual register in the entry block, so now we copy the value out
1438 // and into %rax.
1439 if (Subtarget->is64Bit() &&
1440 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1441 MachineFunction &MF = DAG.getMachineFunction();
1442 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1443 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001444 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001445 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001446 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001447
Dale Johannesendd64c412009-02-04 00:33:20 +00001448 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001449 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001450
1451 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001452 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001453 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001454
Chris Lattner447ff682008-03-11 03:23:40 +00001455 RetOps[0] = Chain; // Update chain.
1456
1457 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001458 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001459 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001460
1461 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001462 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001463}
1464
Evan Cheng3d2125c2010-11-30 23:55:39 +00001465bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1466 if (N->getNumValues() != 1)
1467 return false;
1468 if (!N->hasNUsesOfValue(1, 0))
1469 return false;
1470
1471 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001472 if (Copy->getOpcode() != ISD::CopyToReg &&
1473 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001474 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001475
1476 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001477 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001478 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001479 if (UI->getOpcode() != X86ISD::RET_FLAG)
1480 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001481 HasRet = true;
1482 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001483
Evan Cheng1bf891a2010-12-01 22:59:46 +00001484 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001485}
1486
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001487EVT
1488X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001489 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001490 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001491 // TODO: Is this also valid on 32-bit?
1492 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001493 ReturnMVT = MVT::i8;
1494 else
1495 ReturnMVT = MVT::i32;
1496
1497 EVT MinVT = getRegisterType(Context, ReturnMVT);
1498 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001499}
1500
Dan Gohman98ca4f22009-08-05 01:29:28 +00001501/// LowerCallResult - Lower the result values of a call into the
1502/// appropriate copies out of appropriate physical registers.
1503///
1504SDValue
1505X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001506 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001507 const SmallVectorImpl<ISD::InputArg> &Ins,
1508 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001509 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001510
Chris Lattnere32bbf62007-02-28 07:09:55 +00001511 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001512 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001513 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001514 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1515 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001516 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001517
Chris Lattner3085e152007-02-25 08:59:22 +00001518 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001519 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001520 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001521 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001522
Torok Edwin3f142c32009-02-01 18:15:56 +00001523 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001524 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001525 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001526 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001527 }
1528
Evan Cheng79fb3b42009-02-20 20:43:02 +00001529 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001530
1531 // If this is a call to a function that returns an fp value on the floating
1532 // point stack, we must guarantee the the value is popped from the stack, so
1533 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001534 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001535 // instead.
1536 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1537 // If we prefer to use the value in xmm registers, copy it out as f80 and
1538 // use a truncate to move it from fp stack reg to xmm reg.
1539 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001540 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001541 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1542 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001543 Val = Chain.getValue(0);
1544
1545 // Round the f80 to the right size, which also moves it to the appropriate
1546 // xmm register.
1547 if (CopyVT != VA.getValVT())
1548 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1549 // This truncation won't change the value.
1550 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001551 } else {
1552 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1553 CopyVT, InFlag).getValue(1);
1554 Val = Chain.getValue(0);
1555 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001556 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001557 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001558 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001559
Dan Gohman98ca4f22009-08-05 01:29:28 +00001560 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001561}
1562
1563
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001564//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001565// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001566//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001567// StdCall calling convention seems to be standard for many Windows' API
1568// routines and around. It differs from C calling convention just a little:
1569// callee should clean up the stack, not caller. Symbols should be also
1570// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001571// For info on fast calling convention see Fast Calling Convention (tail call)
1572// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001573
Dan Gohman98ca4f22009-08-05 01:29:28 +00001574/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001575/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001576static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1577 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001578 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001579
Dan Gohman98ca4f22009-08-05 01:29:28 +00001580 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001581}
1582
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001583/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001584/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001585static bool
1586ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1587 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001588 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001589
Dan Gohman98ca4f22009-08-05 01:29:28 +00001590 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001591}
1592
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001593/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1594/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001595/// the specific parameter attribute. The copy will be passed as a byval
1596/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001597static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001598CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001599 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1600 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001601 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001602
Dale Johannesendd64c412009-02-04 00:33:20 +00001603 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001604 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001605 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001606}
1607
Chris Lattner29689432010-03-11 00:22:57 +00001608/// IsTailCallConvention - Return true if the calling convention is one that
1609/// supports tail call optimization.
1610static bool IsTailCallConvention(CallingConv::ID CC) {
1611 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1612}
1613
Evan Cheng485fafc2011-03-21 01:19:09 +00001614bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1615 if (!CI->isTailCall())
1616 return false;
1617
1618 CallSite CS(CI);
1619 CallingConv::ID CalleeCC = CS.getCallingConv();
1620 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1621 return false;
1622
1623 return true;
1624}
1625
Evan Cheng0c439eb2010-01-27 00:07:07 +00001626/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1627/// a tailcall target by changing its ABI.
1628static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001629 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001630}
1631
Dan Gohman98ca4f22009-08-05 01:29:28 +00001632SDValue
1633X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001634 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001635 const SmallVectorImpl<ISD::InputArg> &Ins,
1636 DebugLoc dl, SelectionDAG &DAG,
1637 const CCValAssign &VA,
1638 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001639 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001640 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001641 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001642 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001643 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001644 EVT ValVT;
1645
1646 // If value is passed by pointer we have address passed instead of the value
1647 // itself.
1648 if (VA.getLocInfo() == CCValAssign::Indirect)
1649 ValVT = VA.getLocVT();
1650 else
1651 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001652
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001653 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001654 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001655 // In case of tail call optimization mark all arguments mutable. Since they
1656 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001657 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001658 unsigned Bytes = Flags.getByValSize();
1659 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1660 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001661 return DAG.getFrameIndex(FI, getPointerTy());
1662 } else {
1663 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001664 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001665 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1666 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001667 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001668 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001669 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001670}
1671
Dan Gohman475871a2008-07-27 21:46:04 +00001672SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001673X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001674 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001675 bool isVarArg,
1676 const SmallVectorImpl<ISD::InputArg> &Ins,
1677 DebugLoc dl,
1678 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001679 SmallVectorImpl<SDValue> &InVals)
1680 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001681 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001682 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001683
Gordon Henriksen86737662008-01-05 16:56:59 +00001684 const Function* Fn = MF.getFunction();
1685 if (Fn->hasExternalLinkage() &&
1686 Subtarget->isTargetCygMing() &&
1687 Fn->getName() == "main")
1688 FuncInfo->setForceFramePointer(true);
1689
Evan Cheng1bc78042006-04-26 01:20:17 +00001690 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001691 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001692 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001693
Chris Lattner29689432010-03-11 00:22:57 +00001694 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1695 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001696
Chris Lattner638402b2007-02-28 07:00:42 +00001697 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001698 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001699 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001700 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001701
1702 // Allocate shadow area for Win64
1703 if (IsWin64) {
1704 CCInfo.AllocateStack(32, 8);
1705 }
1706
Duncan Sands45907662010-10-31 13:21:44 +00001707 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001708
Chris Lattnerf39f7712007-02-28 05:46:49 +00001709 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001710 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001711 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1712 CCValAssign &VA = ArgLocs[i];
1713 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1714 // places.
1715 assert(VA.getValNo() != LastVal &&
1716 "Don't support value assigned to multiple locs yet");
1717 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001718
Chris Lattnerf39f7712007-02-28 05:46:49 +00001719 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001720 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001721 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001722 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001723 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001724 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001725 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001726 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001727 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001728 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001729 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001730 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1731 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001732 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001733 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001734 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001735 RC = X86::VR64RegisterClass;
1736 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001737 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001738
Devang Patel68e6bee2011-02-21 23:21:26 +00001739 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001740 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001741
Chris Lattnerf39f7712007-02-28 05:46:49 +00001742 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1743 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1744 // right size.
1745 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001746 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001747 DAG.getValueType(VA.getValVT()));
1748 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001749 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001750 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001751 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001752 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001753
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001754 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001755 // Handle MMX values passed in XMM regs.
1756 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001757 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1758 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001759 } else
1760 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001761 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001762 } else {
1763 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001764 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001765 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001766
1767 // If value is passed via pointer - do a load.
1768 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001769 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1770 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001771
Dan Gohman98ca4f22009-08-05 01:29:28 +00001772 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001773 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001774
Dan Gohman61a92132008-04-21 23:59:07 +00001775 // The x86-64 ABI for returning structs by value requires that we copy
1776 // the sret argument into %rax for the return. Save the argument into
1777 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001778 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001779 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1780 unsigned Reg = FuncInfo->getSRetReturnReg();
1781 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001782 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001783 FuncInfo->setSRetReturnReg(Reg);
1784 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001785 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001786 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001787 }
1788
Chris Lattnerf39f7712007-02-28 05:46:49 +00001789 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001790 // Align stack specially for tail calls.
1791 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001792 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001793
Evan Cheng1bc78042006-04-26 01:20:17 +00001794 // If the function takes variable number of arguments, make a frame index for
1795 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001796 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001797 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1798 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001799 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001800 }
1801 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001802 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1803
1804 // FIXME: We should really autogenerate these arrays
1805 static const unsigned GPR64ArgRegsWin64[] = {
1806 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001807 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001808 static const unsigned GPR64ArgRegs64Bit[] = {
1809 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1810 };
1811 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001812 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1813 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1814 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001815 const unsigned *GPR64ArgRegs;
1816 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001817
1818 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001819 // The XMM registers which might contain var arg parameters are shadowed
1820 // in their paired GPR. So we only need to save the GPR to their home
1821 // slots.
1822 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001823 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001824 } else {
1825 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1826 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001827
1828 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001829 }
1830 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1831 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001832
Devang Patel578efa92009-06-05 21:57:13 +00001833 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001834 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001835 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001836 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001837 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001838 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001839 // Kernel mode asks for SSE to be disabled, so don't push them
1840 // on the stack.
1841 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001842
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001843 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001844 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001845 // Get to the caller-allocated home save location. Add 8 to account
1846 // for the return address.
1847 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001848 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001849 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001850 // Fixup to set vararg frame on shadow area (4 x i64).
1851 if (NumIntRegs < 4)
1852 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001853 } else {
1854 // For X86-64, if there are vararg parameters that are passed via
1855 // registers, then we must store them to their spots on the stack so they
1856 // may be loaded by deferencing the result of va_next.
1857 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1858 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1859 FuncInfo->setRegSaveFrameIndex(
1860 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001861 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001862 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001863
Gordon Henriksen86737662008-01-05 16:56:59 +00001864 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001865 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001866 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1867 getPointerTy());
1868 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001869 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001870 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1871 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001872 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001873 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001874 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001875 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001876 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001877 MachinePointerInfo::getFixedStack(
1878 FuncInfo->getRegSaveFrameIndex(), Offset),
1879 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001880 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001881 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001882 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001883
Dan Gohmanface41a2009-08-16 21:24:25 +00001884 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1885 // Now store the XMM (fp + vector) parameter registers.
1886 SmallVector<SDValue, 11> SaveXMMOps;
1887 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001888
Devang Patel68e6bee2011-02-21 23:21:26 +00001889 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001890 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1891 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001892
Dan Gohman1e93df62010-04-17 14:41:14 +00001893 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1894 FuncInfo->getRegSaveFrameIndex()));
1895 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1896 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001897
Dan Gohmanface41a2009-08-16 21:24:25 +00001898 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001899 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001900 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001901 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1902 SaveXMMOps.push_back(Val);
1903 }
1904 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1905 MVT::Other,
1906 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001907 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001908
1909 if (!MemOps.empty())
1910 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1911 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001912 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001913 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001914
Gordon Henriksen86737662008-01-05 16:56:59 +00001915 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001916 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001917 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001918 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001919 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001920 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001921 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001922 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001923 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001924
Gordon Henriksen86737662008-01-05 16:56:59 +00001925 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001926 // RegSaveFrameIndex is X86-64 only.
1927 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001928 if (CallConv == CallingConv::X86_FastCall ||
1929 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001930 // fastcc functions can't have varargs.
1931 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001932 }
Evan Cheng25caf632006-05-23 21:06:34 +00001933
Dan Gohman98ca4f22009-08-05 01:29:28 +00001934 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001935}
1936
Dan Gohman475871a2008-07-27 21:46:04 +00001937SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001938X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1939 SDValue StackPtr, SDValue Arg,
1940 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001941 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001942 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001943 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001944 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001945 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001946 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001947 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001948
1949 return DAG.getStore(Chain, dl, Arg, PtrOff,
1950 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001951 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001952}
1953
Bill Wendling64e87322009-01-16 19:25:27 +00001954/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001955/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001956SDValue
1957X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001958 SDValue &OutRetAddr, SDValue Chain,
1959 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001960 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001961 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001962 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001963 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001964
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001965 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001966 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1967 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001968 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001969}
1970
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001971/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001972/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001973static SDValue
1974EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001975 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001976 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001977 // Store the return address to the appropriate stack slot.
1978 if (!FPDiff) return Chain;
1979 // Calculate the new stack slot for the return address.
1980 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001981 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001982 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001983 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001984 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001985 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001986 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001987 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001988 return Chain;
1989}
1990
Dan Gohman98ca4f22009-08-05 01:29:28 +00001991SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001992X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001993 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001994 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001995 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001996 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001997 const SmallVectorImpl<ISD::InputArg> &Ins,
1998 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001999 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002000 MachineFunction &MF = DAG.getMachineFunction();
2001 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002002 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002003 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002004 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002005
Evan Cheng5f941932010-02-05 02:21:12 +00002006 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002007 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002008 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2009 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00002010 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002011
2012 // Sibcalls are automatically detected tailcalls which do not require
2013 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00002014 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002015 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002016
2017 if (isTailCall)
2018 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002019 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002020
Chris Lattner29689432010-03-11 00:22:57 +00002021 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2022 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002023
Chris Lattner638402b2007-02-28 07:00:42 +00002024 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002025 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002026 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002027 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002028
2029 // Allocate shadow area for Win64
2030 if (IsWin64) {
2031 CCInfo.AllocateStack(32, 8);
2032 }
2033
Duncan Sands45907662010-10-31 13:21:44 +00002034 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002035
Chris Lattner423c5f42007-02-28 05:31:48 +00002036 // Get a count of how many bytes are to be pushed on the stack.
2037 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002038 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002039 // This is a sibcall. The memory operands are available in caller's
2040 // own caller's stack.
2041 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002042 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002043 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002044
Gordon Henriksen86737662008-01-05 16:56:59 +00002045 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002046 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002047 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002048 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002049 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2050 FPDiff = NumBytesCallerPushed - NumBytes;
2051
2052 // Set the delta of movement of the returnaddr stackslot.
2053 // But only set if delta is greater than previous delta.
2054 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2055 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2056 }
2057
Evan Chengf22f9b32010-02-06 03:28:46 +00002058 if (!IsSibcall)
2059 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002060
Dan Gohman475871a2008-07-27 21:46:04 +00002061 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002062 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002063 if (isTailCall && FPDiff)
2064 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2065 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002066
Dan Gohman475871a2008-07-27 21:46:04 +00002067 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2068 SmallVector<SDValue, 8> MemOpChains;
2069 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002070
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002071 // Walk the register/memloc assignments, inserting copies/loads. In the case
2072 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002073 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2074 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002075 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002076 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002077 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002078 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002079
Chris Lattner423c5f42007-02-28 05:31:48 +00002080 // Promote the value if needed.
2081 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002082 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002083 case CCValAssign::Full: break;
2084 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002085 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002086 break;
2087 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002088 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002089 break;
2090 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002091 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2092 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002093 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002094 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2095 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002096 } else
2097 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2098 break;
2099 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002100 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002101 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002102 case CCValAssign::Indirect: {
2103 // Store the argument.
2104 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002105 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002106 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002107 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002108 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002109 Arg = SpillSlot;
2110 break;
2111 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002112 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002113
Chris Lattner423c5f42007-02-28 05:31:48 +00002114 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002115 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2116 if (isVarArg && IsWin64) {
2117 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2118 // shadow reg if callee is a varargs function.
2119 unsigned ShadowReg = 0;
2120 switch (VA.getLocReg()) {
2121 case X86::XMM0: ShadowReg = X86::RCX; break;
2122 case X86::XMM1: ShadowReg = X86::RDX; break;
2123 case X86::XMM2: ShadowReg = X86::R8; break;
2124 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002125 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002126 if (ShadowReg)
2127 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002128 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002129 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002130 assert(VA.isMemLoc());
2131 if (StackPtr.getNode() == 0)
2132 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2133 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2134 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002135 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002136 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002137
Evan Cheng32fe1032006-05-25 00:59:30 +00002138 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002139 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002140 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002141
Evan Cheng347d5f72006-04-28 21:29:37 +00002142 // Build a sequence of copy-to-reg nodes chained together with token chain
2143 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002144 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002145 // Tail call byval lowering might overwrite argument registers so in case of
2146 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002147 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002148 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002149 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002150 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002151 InFlag = Chain.getValue(1);
2152 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002153
Chris Lattner88e1fd52009-07-09 04:24:46 +00002154 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002155 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2156 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002157 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002158 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2159 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002160 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002161 InFlag);
2162 InFlag = Chain.getValue(1);
2163 } else {
2164 // If we are tail calling and generating PIC/GOT style code load the
2165 // address of the callee into ECX. The value in ecx is used as target of
2166 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2167 // for tail calls on PIC/GOT architectures. Normally we would just put the
2168 // address of GOT into ebx and then call target@PLT. But for tail calls
2169 // ebx would be restored (since ebx is callee saved) before jumping to the
2170 // target@PLT.
2171
2172 // Note: The actual moving to ECX is done further down.
2173 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2174 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2175 !G->getGlobal()->hasProtectedVisibility())
2176 Callee = LowerGlobalAddress(Callee, DAG);
2177 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002178 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002179 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002180 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002181
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002182 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002183 // From AMD64 ABI document:
2184 // For calls that may call functions that use varargs or stdargs
2185 // (prototype-less calls or calls to functions containing ellipsis (...) in
2186 // the declaration) %al is used as hidden argument to specify the number
2187 // of SSE registers used. The contents of %al do not need to match exactly
2188 // the number of registers, but must be an ubound on the number of SSE
2189 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002190
Gordon Henriksen86737662008-01-05 16:56:59 +00002191 // Count the number of XMM registers allocated.
2192 static const unsigned XMMArgRegs[] = {
2193 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2194 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2195 };
2196 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002197 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002198 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002199
Dale Johannesendd64c412009-02-04 00:33:20 +00002200 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002201 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002202 InFlag = Chain.getValue(1);
2203 }
2204
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002205
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002206 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002207 if (isTailCall) {
2208 // Force all the incoming stack arguments to be loaded from the stack
2209 // before any new outgoing arguments are stored to the stack, because the
2210 // outgoing stack slots may alias the incoming argument stack slots, and
2211 // the alias isn't otherwise explicit. This is slightly more conservative
2212 // than necessary, because it means that each store effectively depends
2213 // on every argument instead of just those arguments it would clobber.
2214 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2215
Dan Gohman475871a2008-07-27 21:46:04 +00002216 SmallVector<SDValue, 8> MemOpChains2;
2217 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002218 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002219 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002220 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002221 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002222 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2223 CCValAssign &VA = ArgLocs[i];
2224 if (VA.isRegLoc())
2225 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002226 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002227 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002228 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002229 // Create frame index.
2230 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002231 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002232 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002233 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002234
Duncan Sands276dcbd2008-03-21 09:14:45 +00002235 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002236 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002237 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002238 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002239 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002240 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002241 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002242
Dan Gohman98ca4f22009-08-05 01:29:28 +00002243 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2244 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002245 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002246 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002247 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002248 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002249 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002250 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002251 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002252 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002253 }
2254 }
2255
2256 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002257 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002258 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002259
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002260 // Copy arguments to their registers.
2261 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002262 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002263 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002264 InFlag = Chain.getValue(1);
2265 }
Dan Gohman475871a2008-07-27 21:46:04 +00002266 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002267
Gordon Henriksen86737662008-01-05 16:56:59 +00002268 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002269 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002270 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002271 }
2272
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002273 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2274 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2275 // In the 64-bit large code model, we have to make all calls
2276 // through a register, since the call instruction's 32-bit
2277 // pc-relative offset may not be large enough to hold the whole
2278 // address.
2279 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002280 // If the callee is a GlobalAddress node (quite common, every direct call
2281 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2282 // it.
2283
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002284 // We should use extra load for direct calls to dllimported functions in
2285 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002286 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002287 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002288 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002289 bool ExtraLoad = false;
2290 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002291
Chris Lattner48a7d022009-07-09 05:02:21 +00002292 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2293 // external symbols most go through the PLT in PIC mode. If the symbol
2294 // has hidden or protected visibility, or if it is static or local, then
2295 // we don't need to use the PLT - we can directly call it.
2296 if (Subtarget->isTargetELF() &&
2297 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002298 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002299 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002300 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002301 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002302 (!Subtarget->getTargetTriple().isMacOSX() ||
2303 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002304 // PC-relative references to external symbols should go through $stub,
2305 // unless we're building with the leopard linker or later, which
2306 // automatically synthesizes these stubs.
2307 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002308 } else if (Subtarget->isPICStyleRIPRel() &&
2309 isa<Function>(GV) &&
2310 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2311 // If the function is marked as non-lazy, generate an indirect call
2312 // which loads from the GOT directly. This avoids runtime overhead
2313 // at the cost of eager binding (and one extra byte of encoding).
2314 OpFlags = X86II::MO_GOTPCREL;
2315 WrapperKind = X86ISD::WrapperRIP;
2316 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002317 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002318
Devang Patel0d881da2010-07-06 22:08:15 +00002319 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002320 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002321
2322 // Add a wrapper if needed.
2323 if (WrapperKind != ISD::DELETED_NODE)
2324 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2325 // Add extra indirection if needed.
2326 if (ExtraLoad)
2327 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2328 MachinePointerInfo::getGOT(),
2329 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002330 }
Bill Wendling056292f2008-09-16 21:48:12 +00002331 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002332 unsigned char OpFlags = 0;
2333
Evan Cheng1bf891a2010-12-01 22:59:46 +00002334 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2335 // external symbols should go through the PLT.
2336 if (Subtarget->isTargetELF() &&
2337 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2338 OpFlags = X86II::MO_PLT;
2339 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002340 (!Subtarget->getTargetTriple().isMacOSX() ||
2341 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002342 // PC-relative references to external symbols should go through $stub,
2343 // unless we're building with the leopard linker or later, which
2344 // automatically synthesizes these stubs.
2345 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002346 }
Eric Christopherfd179292009-08-27 18:07:15 +00002347
Chris Lattner48a7d022009-07-09 05:02:21 +00002348 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2349 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002350 }
2351
Chris Lattnerd96d0722007-02-25 06:40:16 +00002352 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002353 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002354 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002355
Evan Chengf22f9b32010-02-06 03:28:46 +00002356 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002357 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2358 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002359 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002360 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002361
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002362 Ops.push_back(Chain);
2363 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002364
Dan Gohman98ca4f22009-08-05 01:29:28 +00002365 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002366 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002367
Gordon Henriksen86737662008-01-05 16:56:59 +00002368 // Add argument registers to the end of the list so that they are known live
2369 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002370 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2371 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2372 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002373
Evan Cheng586ccac2008-03-18 23:36:35 +00002374 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002375 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002376 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2377
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002378 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002379 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002380 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002381
Gabor Greifba36cb52008-08-28 21:40:38 +00002382 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002383 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002384
Dan Gohman98ca4f22009-08-05 01:29:28 +00002385 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002386 // We used to do:
2387 //// If this is the first return lowered for this function, add the regs
2388 //// to the liveout set for the function.
2389 // This isn't right, although it's probably harmless on x86; liveouts
2390 // should be computed from returns not tail calls. Consider a void
2391 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002392 return DAG.getNode(X86ISD::TC_RETURN, dl,
2393 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002394 }
2395
Dale Johannesenace16102009-02-03 19:33:06 +00002396 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002397 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002398
Chris Lattner2d297092006-05-23 18:50:38 +00002399 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002400 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002401 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002402 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002403 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002404 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002405 // pops the hidden struct pointer, so we have to push it back.
2406 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002407 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002408 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002409 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002410
Gordon Henriksenae636f82008-01-03 16:47:34 +00002411 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002412 if (!IsSibcall) {
2413 Chain = DAG.getCALLSEQ_END(Chain,
2414 DAG.getIntPtrConstant(NumBytes, true),
2415 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2416 true),
2417 InFlag);
2418 InFlag = Chain.getValue(1);
2419 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002420
Chris Lattner3085e152007-02-25 08:59:22 +00002421 // Handle result values, copying them out of physregs into vregs that we
2422 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002423 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2424 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002425}
2426
Evan Cheng25ab6902006-09-08 06:48:29 +00002427
2428//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002429// Fast Calling Convention (tail call) implementation
2430//===----------------------------------------------------------------------===//
2431
2432// Like std call, callee cleans arguments, convention except that ECX is
2433// reserved for storing the tail called function address. Only 2 registers are
2434// free for argument passing (inreg). Tail call optimization is performed
2435// provided:
2436// * tailcallopt is enabled
2437// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002438// On X86_64 architecture with GOT-style position independent code only local
2439// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002440// To keep the stack aligned according to platform abi the function
2441// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2442// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002443// If a tail called function callee has more arguments than the caller the
2444// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002445// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002446// original REtADDR, but before the saved framepointer or the spilled registers
2447// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2448// stack layout:
2449// arg1
2450// arg2
2451// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002452// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002453// move area ]
2454// (possible EBP)
2455// ESI
2456// EDI
2457// local1 ..
2458
2459/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2460/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002461unsigned
2462X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2463 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002464 MachineFunction &MF = DAG.getMachineFunction();
2465 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002466 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002467 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002468 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002469 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002470 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002471 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2472 // Number smaller than 12 so just add the difference.
2473 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2474 } else {
2475 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002476 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002477 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002478 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002479 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002480}
2481
Evan Cheng5f941932010-02-05 02:21:12 +00002482/// MatchingStackOffset - Return true if the given stack call argument is
2483/// already available in the same position (relatively) of the caller's
2484/// incoming argument stack.
2485static
2486bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2487 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2488 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002489 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2490 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002491 if (Arg.getOpcode() == ISD::CopyFromReg) {
2492 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002493 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002494 return false;
2495 MachineInstr *Def = MRI->getVRegDef(VR);
2496 if (!Def)
2497 return false;
2498 if (!Flags.isByVal()) {
2499 if (!TII->isLoadFromStackSlot(Def, FI))
2500 return false;
2501 } else {
2502 unsigned Opcode = Def->getOpcode();
2503 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2504 Def->getOperand(1).isFI()) {
2505 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002506 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002507 } else
2508 return false;
2509 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002510 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2511 if (Flags.isByVal())
2512 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002513 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002514 // define @foo(%struct.X* %A) {
2515 // tail call @bar(%struct.X* byval %A)
2516 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002517 return false;
2518 SDValue Ptr = Ld->getBasePtr();
2519 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2520 if (!FINode)
2521 return false;
2522 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002523 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002524 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002525 FI = FINode->getIndex();
2526 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002527 } else
2528 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002529
Evan Cheng4cae1332010-03-05 08:38:04 +00002530 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002531 if (!MFI->isFixedObjectIndex(FI))
2532 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002533 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002534}
2535
Dan Gohman98ca4f22009-08-05 01:29:28 +00002536/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2537/// for tail call optimization. Targets which want to do tail call
2538/// optimization should implement this function.
2539bool
2540X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002541 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002542 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002543 bool isCalleeStructRet,
2544 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002545 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002546 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002547 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002548 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002549 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002550 CalleeCC != CallingConv::C)
2551 return false;
2552
Evan Cheng7096ae42010-01-29 06:45:59 +00002553 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002554 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002555 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002556 CallingConv::ID CallerCC = CallerF->getCallingConv();
2557 bool CCMatch = CallerCC == CalleeCC;
2558
Dan Gohman1797ed52010-02-08 20:27:50 +00002559 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002560 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002561 return true;
2562 return false;
2563 }
2564
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002565 // Look for obvious safe cases to perform tail call optimization that do not
2566 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002567
Evan Cheng2c12cb42010-03-26 16:26:03 +00002568 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2569 // emit a special epilogue.
2570 if (RegInfo->needsStackRealignment(MF))
2571 return false;
2572
Evan Chenga375d472010-03-15 18:54:48 +00002573 // Also avoid sibcall optimization if either caller or callee uses struct
2574 // return semantics.
2575 if (isCalleeStructRet || isCallerStructRet)
2576 return false;
2577
Chad Rosier2416da32011-06-24 21:15:36 +00002578 // An stdcall caller is expected to clean up its arguments; the callee
2579 // isn't going to do that.
2580 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2581 return false;
2582
Chad Rosier871f6642011-05-18 19:59:50 +00002583 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002584 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002585 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002586
2587 // Optimizing for varargs on Win64 is unlikely to be safe without
2588 // additional testing.
2589 if (Subtarget->isTargetWin64())
2590 return false;
2591
Chad Rosier871f6642011-05-18 19:59:50 +00002592 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002593 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2594 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002595
Chad Rosier871f6642011-05-18 19:59:50 +00002596 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2597 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2598 if (!ArgLocs[i].isRegLoc())
2599 return false;
2600 }
2601
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002602 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2603 // Therefore if it's not used by the call it is not safe to optimize this into
2604 // a sibcall.
2605 bool Unused = false;
2606 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2607 if (!Ins[i].Used) {
2608 Unused = true;
2609 break;
2610 }
2611 }
2612 if (Unused) {
2613 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002614 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2615 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002616 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002617 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002618 CCValAssign &VA = RVLocs[i];
2619 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2620 return false;
2621 }
2622 }
2623
Evan Cheng13617962010-04-30 01:12:32 +00002624 // If the calling conventions do not match, then we'd better make sure the
2625 // results are returned in the same way as what the caller expects.
2626 if (!CCMatch) {
2627 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002628 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2629 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002630 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2631
2632 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002633 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2634 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002635 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2636
2637 if (RVLocs1.size() != RVLocs2.size())
2638 return false;
2639 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2640 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2641 return false;
2642 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2643 return false;
2644 if (RVLocs1[i].isRegLoc()) {
2645 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2646 return false;
2647 } else {
2648 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2649 return false;
2650 }
2651 }
2652 }
2653
Evan Chenga6bff982010-01-30 01:22:00 +00002654 // If the callee takes no arguments then go on to check the results of the
2655 // call.
2656 if (!Outs.empty()) {
2657 // Check if stack adjustment is needed. For now, do not do this if any
2658 // argument is passed on the stack.
2659 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002660 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2661 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002662
2663 // Allocate shadow area for Win64
2664 if (Subtarget->isTargetWin64()) {
2665 CCInfo.AllocateStack(32, 8);
2666 }
2667
Duncan Sands45907662010-10-31 13:21:44 +00002668 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002669 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002670 MachineFunction &MF = DAG.getMachineFunction();
2671 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2672 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002673
2674 // Check if the arguments are already laid out in the right way as
2675 // the caller's fixed stack objects.
2676 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002677 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2678 const X86InstrInfo *TII =
2679 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002680 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2681 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002682 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002683 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002684 if (VA.getLocInfo() == CCValAssign::Indirect)
2685 return false;
2686 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002687 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2688 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002689 return false;
2690 }
2691 }
2692 }
Evan Cheng9c044672010-05-29 01:35:22 +00002693
2694 // If the tailcall address may be in a register, then make sure it's
2695 // possible to register allocate for it. In 32-bit, the call address can
2696 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002697 // callee-saved registers are restored. These happen to be the same
2698 // registers used to pass 'inreg' arguments so watch out for those.
2699 if (!Subtarget->is64Bit() &&
2700 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002701 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002702 unsigned NumInRegs = 0;
2703 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2704 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002705 if (!VA.isRegLoc())
2706 continue;
2707 unsigned Reg = VA.getLocReg();
2708 switch (Reg) {
2709 default: break;
2710 case X86::EAX: case X86::EDX: case X86::ECX:
2711 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002712 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002713 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002714 }
2715 }
2716 }
Evan Chenga6bff982010-01-30 01:22:00 +00002717 }
Evan Chengb1712452010-01-27 06:25:16 +00002718
Evan Cheng86809cc2010-02-03 03:28:02 +00002719 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002720}
2721
Dan Gohman3df24e62008-09-03 23:12:08 +00002722FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002723X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2724 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002725}
2726
2727
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002728//===----------------------------------------------------------------------===//
2729// Other Lowering Hooks
2730//===----------------------------------------------------------------------===//
2731
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002732static bool MayFoldLoad(SDValue Op) {
2733 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2734}
2735
2736static bool MayFoldIntoStore(SDValue Op) {
2737 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2738}
2739
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002740static bool isTargetShuffle(unsigned Opcode) {
2741 switch(Opcode) {
2742 default: return false;
2743 case X86ISD::PSHUFD:
2744 case X86ISD::PSHUFHW:
2745 case X86ISD::PSHUFLW:
2746 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002747 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002748 case X86ISD::SHUFPS:
2749 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002750 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002751 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002752 case X86ISD::MOVLPS:
2753 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002754 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002755 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002756 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002757 case X86ISD::MOVSS:
2758 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002759 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002760 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002761 case X86ISD::VUNPCKLPSY:
2762 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002763 case X86ISD::PUNPCKLWD:
2764 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002765 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002766 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002767 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002768 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002769 case X86ISD::VUNPCKHPSY:
2770 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002771 case X86ISD::PUNPCKHWD:
2772 case X86ISD::PUNPCKHBW:
2773 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002774 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002775 case X86ISD::VPERMILPS:
2776 case X86ISD::VPERMILPSY:
2777 case X86ISD::VPERMILPD:
2778 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002779 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002780 return true;
2781 }
2782 return false;
2783}
2784
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002785static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002786 SDValue V1, SelectionDAG &DAG) {
2787 switch(Opc) {
2788 default: llvm_unreachable("Unknown x86 shuffle node");
2789 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002790 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002791 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002792 return DAG.getNode(Opc, dl, VT, V1);
2793 }
2794
2795 return SDValue();
2796}
2797
2798static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002799 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002800 switch(Opc) {
2801 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002802 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002803 case X86ISD::PSHUFHW:
2804 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002805 case X86ISD::VPERMILPS:
2806 case X86ISD::VPERMILPSY:
2807 case X86ISD::VPERMILPD:
2808 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002809 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2810 }
2811
2812 return SDValue();
2813}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002814
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002815static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2816 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2817 switch(Opc) {
2818 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002819 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002820 case X86ISD::SHUFPD:
2821 case X86ISD::SHUFPS:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002822 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002823 return DAG.getNode(Opc, dl, VT, V1, V2,
2824 DAG.getConstant(TargetMask, MVT::i8));
2825 }
2826 return SDValue();
2827}
2828
2829static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2830 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2831 switch(Opc) {
2832 default: llvm_unreachable("Unknown x86 shuffle node");
2833 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002834 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002835 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002836 case X86ISD::MOVLPS:
2837 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002838 case X86ISD::MOVSS:
2839 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002840 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002841 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002842 case X86ISD::VUNPCKLPSY:
2843 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002844 case X86ISD::PUNPCKLWD:
2845 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002846 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002847 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002848 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002849 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002850 case X86ISD::VUNPCKHPSY:
2851 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002852 case X86ISD::PUNPCKHWD:
2853 case X86ISD::PUNPCKHBW:
2854 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002855 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002856 return DAG.getNode(Opc, dl, VT, V1, V2);
2857 }
2858 return SDValue();
2859}
2860
Dan Gohmand858e902010-04-17 15:26:15 +00002861SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002862 MachineFunction &MF = DAG.getMachineFunction();
2863 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2864 int ReturnAddrIndex = FuncInfo->getRAIndex();
2865
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002866 if (ReturnAddrIndex == 0) {
2867 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002868 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002869 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002870 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002871 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002872 }
2873
Evan Cheng25ab6902006-09-08 06:48:29 +00002874 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002875}
2876
2877
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002878bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2879 bool hasSymbolicDisplacement) {
2880 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002881 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002882 return false;
2883
2884 // If we don't have a symbolic displacement - we don't have any extra
2885 // restrictions.
2886 if (!hasSymbolicDisplacement)
2887 return true;
2888
2889 // FIXME: Some tweaks might be needed for medium code model.
2890 if (M != CodeModel::Small && M != CodeModel::Kernel)
2891 return false;
2892
2893 // For small code model we assume that latest object is 16MB before end of 31
2894 // bits boundary. We may also accept pretty large negative constants knowing
2895 // that all objects are in the positive half of address space.
2896 if (M == CodeModel::Small && Offset < 16*1024*1024)
2897 return true;
2898
2899 // For kernel code model we know that all object resist in the negative half
2900 // of 32bits address space. We may not accept negative offsets, since they may
2901 // be just off and we may accept pretty large positive ones.
2902 if (M == CodeModel::Kernel && Offset > 0)
2903 return true;
2904
2905 return false;
2906}
2907
Evan Chengef41ff62011-06-23 17:54:54 +00002908/// isCalleePop - Determines whether the callee is required to pop its
2909/// own arguments. Callee pop is necessary to support tail calls.
2910bool X86::isCalleePop(CallingConv::ID CallingConv,
2911 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2912 if (IsVarArg)
2913 return false;
2914
2915 switch (CallingConv) {
2916 default:
2917 return false;
2918 case CallingConv::X86_StdCall:
2919 return !is64Bit;
2920 case CallingConv::X86_FastCall:
2921 return !is64Bit;
2922 case CallingConv::X86_ThisCall:
2923 return !is64Bit;
2924 case CallingConv::Fast:
2925 return TailCallOpt;
2926 case CallingConv::GHC:
2927 return TailCallOpt;
2928 }
2929}
2930
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002931/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2932/// specific condition code, returning the condition code and the LHS/RHS of the
2933/// comparison to make.
2934static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2935 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002936 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002937 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2938 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2939 // X > -1 -> X == 0, jump !sign.
2940 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002941 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002942 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2943 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002944 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002945 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002946 // X < 1 -> X <= 0
2947 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002948 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002949 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002950 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002951
Evan Chengd9558e02006-01-06 00:43:03 +00002952 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002953 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002954 case ISD::SETEQ: return X86::COND_E;
2955 case ISD::SETGT: return X86::COND_G;
2956 case ISD::SETGE: return X86::COND_GE;
2957 case ISD::SETLT: return X86::COND_L;
2958 case ISD::SETLE: return X86::COND_LE;
2959 case ISD::SETNE: return X86::COND_NE;
2960 case ISD::SETULT: return X86::COND_B;
2961 case ISD::SETUGT: return X86::COND_A;
2962 case ISD::SETULE: return X86::COND_BE;
2963 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002964 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002965 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002966
Chris Lattner4c78e022008-12-23 23:42:27 +00002967 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002968
Chris Lattner4c78e022008-12-23 23:42:27 +00002969 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002970 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2971 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002972 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2973 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002974 }
2975
Chris Lattner4c78e022008-12-23 23:42:27 +00002976 switch (SetCCOpcode) {
2977 default: break;
2978 case ISD::SETOLT:
2979 case ISD::SETOLE:
2980 case ISD::SETUGT:
2981 case ISD::SETUGE:
2982 std::swap(LHS, RHS);
2983 break;
2984 }
2985
2986 // On a floating point condition, the flags are set as follows:
2987 // ZF PF CF op
2988 // 0 | 0 | 0 | X > Y
2989 // 0 | 0 | 1 | X < Y
2990 // 1 | 0 | 0 | X == Y
2991 // 1 | 1 | 1 | unordered
2992 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002993 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002994 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002995 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002996 case ISD::SETOLT: // flipped
2997 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002998 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002999 case ISD::SETOLE: // flipped
3000 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003001 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003002 case ISD::SETUGT: // flipped
3003 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003004 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003005 case ISD::SETUGE: // flipped
3006 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003007 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003008 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003009 case ISD::SETNE: return X86::COND_NE;
3010 case ISD::SETUO: return X86::COND_P;
3011 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003012 case ISD::SETOEQ:
3013 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003014 }
Evan Chengd9558e02006-01-06 00:43:03 +00003015}
3016
Evan Cheng4a460802006-01-11 00:33:36 +00003017/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3018/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003019/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003020static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003021 switch (X86CC) {
3022 default:
3023 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003024 case X86::COND_B:
3025 case X86::COND_BE:
3026 case X86::COND_E:
3027 case X86::COND_P:
3028 case X86::COND_A:
3029 case X86::COND_AE:
3030 case X86::COND_NE:
3031 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003032 return true;
3033 }
3034}
3035
Evan Chengeb2f9692009-10-27 19:56:55 +00003036/// isFPImmLegal - Returns true if the target can instruction select the
3037/// specified FP immediate natively. If false, the legalizer will
3038/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003039bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003040 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3041 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3042 return true;
3043 }
3044 return false;
3045}
3046
Nate Begeman9008ca62009-04-27 18:41:29 +00003047/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3048/// the specified range (L, H].
3049static bool isUndefOrInRange(int Val, int Low, int Hi) {
3050 return (Val < 0) || (Val >= Low && Val < Hi);
3051}
3052
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00003053/// isUndefOrInRange - Return true if every element in Mask, begining
3054/// from position Pos and ending in Pos+Size, falls within the specified
3055/// range (L, L+Pos]. or is undef.
3056static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3057 int Pos, int Size, int Low, int Hi) {
3058 for (int i = Pos, e = Pos+Size; i != e; ++i)
3059 if (!isUndefOrInRange(Mask[i], Low, Hi))
3060 return false;
3061 return true;
3062}
3063
Nate Begeman9008ca62009-04-27 18:41:29 +00003064/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3065/// specified value.
3066static bool isUndefOrEqual(int Val, int CmpVal) {
3067 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003068 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003069 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003070}
3071
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003072/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3073/// from position Pos and ending in Pos+Size, falls within the specified
3074/// sequential range (L, L+Pos]. or is undef.
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003075static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3076 int Pos, int Size, int Low) {
3077 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3078 if (!isUndefOrEqual(Mask[i], Low))
3079 return false;
3080 return true;
3081}
3082
Nate Begeman9008ca62009-04-27 18:41:29 +00003083/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3084/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3085/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003086static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003087 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003088 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003089 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003090 return (Mask[0] < 2 && Mask[1] < 2);
3091 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003092}
3093
Nate Begeman9008ca62009-04-27 18:41:29 +00003094bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003095 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003096 N->getMask(M);
3097 return ::isPSHUFDMask(M, N->getValueType(0));
3098}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003099
Nate Begeman9008ca62009-04-27 18:41:29 +00003100/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3101/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003102static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003103 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003104 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003105
Nate Begeman9008ca62009-04-27 18:41:29 +00003106 // Lower quadword copied in order or undef.
3107 for (int i = 0; i != 4; ++i)
3108 if (Mask[i] >= 0 && Mask[i] != i)
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 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003112 for (int i = 4; i != 8; ++i)
3113 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003114 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003115
Evan Cheng506d3df2006-03-29 23:07:14 +00003116 return true;
3117}
3118
Nate Begeman9008ca62009-04-27 18:41:29 +00003119bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003120 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003121 N->getMask(M);
3122 return ::isPSHUFHWMask(M, N->getValueType(0));
3123}
Evan Cheng506d3df2006-03-29 23:07:14 +00003124
Nate Begeman9008ca62009-04-27 18:41:29 +00003125/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3126/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003127static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003128 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003129 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003130
Rafael Espindola15684b22009-04-24 12:40:33 +00003131 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003132 for (int i = 4; i != 8; ++i)
3133 if (Mask[i] >= 0 && Mask[i] != i)
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 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003137 for (int i = 0; i != 4; ++i)
3138 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003139 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003140
Rafael Espindola15684b22009-04-24 12:40:33 +00003141 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003142}
3143
Nate Begeman9008ca62009-04-27 18:41:29 +00003144bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003145 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003146 N->getMask(M);
3147 return ::isPSHUFLWMask(M, N->getValueType(0));
3148}
3149
Nate Begemana09008b2009-10-19 02:17:23 +00003150/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3151/// is suitable for input to PALIGNR.
3152static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3153 bool hasSSSE3) {
3154 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003155 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3156 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003157
Nate Begemana09008b2009-10-19 02:17:23 +00003158 // Do not handle v2i64 / v2f64 shuffles with palignr.
3159 if (e < 4 || !hasSSSE3)
3160 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003161
Nate Begemana09008b2009-10-19 02:17:23 +00003162 for (i = 0; i != e; ++i)
3163 if (Mask[i] >= 0)
3164 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003165
Nate Begemana09008b2009-10-19 02:17:23 +00003166 // All undef, not a palignr.
3167 if (i == e)
3168 return false;
3169
Eli Friedman63f8dde2011-07-25 21:36:45 +00003170 // Make sure we're shifting in the right direction.
3171 if (Mask[i] <= i)
3172 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003173
3174 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003175
Nate Begemana09008b2009-10-19 02:17:23 +00003176 // Check the rest of the elements to see if they are consecutive.
3177 for (++i; i != e; ++i) {
3178 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003179 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003180 return false;
3181 }
3182 return true;
3183}
3184
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003185/// isVSHUFPSYMask - Return true if the specified VECTOR_SHUFFLE operand
3186/// specifies a shuffle of elements that is suitable for input to 256-bit
3187/// VSHUFPSY.
3188static bool isVSHUFPSYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3189 const X86Subtarget *Subtarget) {
3190 int NumElems = VT.getVectorNumElements();
3191
3192 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3193 return false;
3194
3195 if (NumElems != 8)
3196 return false;
3197
3198 // VSHUFPSY divides the resulting vector into 4 chunks.
3199 // The sources are also splitted into 4 chunks, and each destination
3200 // chunk must come from a different source chunk.
3201 //
3202 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3203 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3204 //
3205 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3206 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3207 //
3208 int QuarterSize = NumElems/4;
3209 int HalfSize = QuarterSize*2;
3210 for (int i = 0; i < QuarterSize; ++i)
3211 if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3212 return false;
3213 for (int i = QuarterSize; i < QuarterSize*2; ++i)
3214 if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3215 return false;
3216
3217 // The mask of the second half must be the same as the first but with
3218 // the appropriate offsets. This works in the same way as VPERMILPS
3219 // works with masks.
3220 for (int i = QuarterSize*2; i < QuarterSize*3; ++i) {
3221 if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3222 return false;
3223 int FstHalfIdx = i-HalfSize;
3224 if (Mask[FstHalfIdx] < 0)
3225 continue;
3226 if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3227 return false;
3228 }
3229 for (int i = QuarterSize*3; i < NumElems; ++i) {
3230 if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3231 return false;
3232 int FstHalfIdx = i-HalfSize;
3233 if (Mask[FstHalfIdx] < 0)
3234 continue;
3235 if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3236 return false;
3237
3238 }
3239
3240 return true;
3241}
3242
3243/// getShuffleVSHUFPSYImmediate - Return the appropriate immediate to shuffle
3244/// the specified VECTOR_MASK mask with VSHUFPSY instruction.
3245static unsigned getShuffleVSHUFPSYImmediate(SDNode *N) {
3246 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3247 EVT VT = SVOp->getValueType(0);
3248 int NumElems = VT.getVectorNumElements();
3249
3250 assert(NumElems == 8 && VT.getSizeInBits() == 256 &&
3251 "Only supports v8i32 and v8f32 types");
3252
3253 int HalfSize = NumElems/2;
3254 unsigned Mask = 0;
3255 for (int i = 0; i != NumElems ; ++i) {
3256 if (SVOp->getMaskElt(i) < 0)
3257 continue;
3258 // The mask of the first half must be equal to the second one.
3259 unsigned Shamt = (i%HalfSize)*2;
3260 unsigned Elt = SVOp->getMaskElt(i) % HalfSize;
3261 Mask |= Elt << Shamt;
3262 }
3263
3264 return Mask;
3265}
3266
3267/// isVSHUFPDYMask - Return true if the specified VECTOR_SHUFFLE operand
3268/// specifies a shuffle of elements that is suitable for input to 256-bit
3269/// VSHUFPDY. This shuffle doesn't have the same restriction as the PS
3270/// version and the mask of the second half isn't binded with the first
3271/// one.
3272static bool isVSHUFPDYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3273 const X86Subtarget *Subtarget) {
3274 int NumElems = VT.getVectorNumElements();
3275
3276 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3277 return false;
3278
3279 if (NumElems != 4)
3280 return false;
3281
3282 // VSHUFPSY divides the resulting vector into 4 chunks.
3283 // The sources are also splitted into 4 chunks, and each destination
3284 // chunk must come from a different source chunk.
3285 //
3286 // SRC1 => X3 X2 X1 X0
3287 // SRC2 => Y3 Y2 Y1 Y0
3288 //
3289 // DST => Y2..Y3, X2..X3, Y1..Y0, X1..X0
3290 //
3291 int QuarterSize = NumElems/4;
3292 int HalfSize = QuarterSize*2;
3293 for (int i = 0; i < QuarterSize; ++i)
3294 if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3295 return false;
3296 for (int i = QuarterSize; i < QuarterSize*2; ++i)
3297 if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3298 return false;
3299 for (int i = QuarterSize*2; i < QuarterSize*3; ++i)
3300 if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3301 return false;
3302 for (int i = QuarterSize*3; i < NumElems; ++i)
3303 if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3304 return false;
3305
3306 return true;
3307}
3308
3309/// getShuffleVSHUFPDYImmediate - Return the appropriate immediate to shuffle
3310/// the specified VECTOR_MASK mask with VSHUFPDY instruction.
3311static unsigned getShuffleVSHUFPDYImmediate(SDNode *N) {
3312 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3313 EVT VT = SVOp->getValueType(0);
3314 int NumElems = VT.getVectorNumElements();
3315
3316 assert(NumElems == 4 && VT.getSizeInBits() == 256 &&
3317 "Only supports v4i64 and v4f64 types");
3318
3319 int HalfSize = NumElems/2;
3320 unsigned Mask = 0;
3321 for (int i = 0; i != NumElems ; ++i) {
3322 if (SVOp->getMaskElt(i) < 0)
3323 continue;
3324 int Elt = SVOp->getMaskElt(i) % HalfSize;
3325 Mask |= Elt << i;
3326 }
3327
3328 return Mask;
3329}
3330
Evan Cheng14aed5e2006-03-24 01:18:28 +00003331/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003332/// specifies a shuffle of elements that is suitable for input to 128-bit
3333/// SHUFPS and SHUFPD.
Owen Andersone50ed302009-08-10 22:56:29 +00003334static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003335 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003336
3337 if (VT.getSizeInBits() != 128)
3338 return false;
3339
Nate Begeman9008ca62009-04-27 18:41:29 +00003340 if (NumElems != 2 && NumElems != 4)
3341 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003342
Nate Begeman9008ca62009-04-27 18:41:29 +00003343 int Half = NumElems / 2;
3344 for (int i = 0; i < Half; ++i)
3345 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003346 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003347 for (int i = Half; i < NumElems; ++i)
3348 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003349 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003350
Evan Cheng14aed5e2006-03-24 01:18:28 +00003351 return true;
3352}
3353
Nate Begeman9008ca62009-04-27 18:41:29 +00003354bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3355 SmallVector<int, 8> M;
3356 N->getMask(M);
3357 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003358}
3359
Evan Cheng213d2cf2007-05-17 18:45:50 +00003360/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003361/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3362/// half elements to come from vector 1 (which would equal the dest.) and
3363/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003364static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003365 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003366
3367 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003368 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003369
Nate Begeman9008ca62009-04-27 18:41:29 +00003370 int Half = NumElems / 2;
3371 for (int i = 0; i < Half; ++i)
3372 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003373 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003374 for (int i = Half; i < NumElems; ++i)
3375 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003376 return false;
3377 return true;
3378}
3379
Nate Begeman9008ca62009-04-27 18:41:29 +00003380static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3381 SmallVector<int, 8> M;
3382 N->getMask(M);
3383 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003384}
3385
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003386/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3387/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003388bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003389 EVT VT = N->getValueType(0);
3390 unsigned NumElems = VT.getVectorNumElements();
3391
3392 if (VT.getSizeInBits() != 128)
3393 return false;
3394
3395 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003396 return false;
3397
Evan Cheng2064a2b2006-03-28 06:50:32 +00003398 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003399 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3400 isUndefOrEqual(N->getMaskElt(1), 7) &&
3401 isUndefOrEqual(N->getMaskElt(2), 2) &&
3402 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003403}
3404
Nate Begeman0b10b912009-11-07 23:17:15 +00003405/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3406/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3407/// <2, 3, 2, 3>
3408bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003409 EVT VT = N->getValueType(0);
3410 unsigned NumElems = VT.getVectorNumElements();
3411
3412 if (VT.getSizeInBits() != 128)
3413 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003414
Nate Begeman0b10b912009-11-07 23:17:15 +00003415 if (NumElems != 4)
3416 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003417
Nate Begeman0b10b912009-11-07 23:17:15 +00003418 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003419 isUndefOrEqual(N->getMaskElt(1), 3) &&
3420 isUndefOrEqual(N->getMaskElt(2), 2) &&
3421 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003422}
3423
Evan Cheng5ced1d82006-04-06 23:23:56 +00003424/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3425/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003426bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3427 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003428
Evan Cheng5ced1d82006-04-06 23:23:56 +00003429 if (NumElems != 2 && NumElems != 4)
3430 return false;
3431
Evan Chengc5cdff22006-04-07 21:53:05 +00003432 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003433 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003434 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003435
Evan Chengc5cdff22006-04-07 21:53:05 +00003436 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003437 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003438 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003439
3440 return true;
3441}
3442
Nate Begeman0b10b912009-11-07 23:17:15 +00003443/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3444/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3445bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003446 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003447
David Greenea20244d2011-03-02 17:23:43 +00003448 if ((NumElems != 2 && NumElems != 4)
3449 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003450 return false;
3451
Evan Chengc5cdff22006-04-07 21:53:05 +00003452 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003453 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003454 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003455
Nate Begeman9008ca62009-04-27 18:41:29 +00003456 for (unsigned i = 0; i < NumElems/2; ++i)
3457 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003458 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003459
3460 return true;
3461}
3462
Evan Cheng0038e592006-03-28 00:39:58 +00003463/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3464/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003465static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003466 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003467 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003468
3469 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3470 "Unsupported vector type for unpckh");
3471
3472 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003473 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003474
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003475 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3476 // independently on 128-bit lanes.
3477 unsigned NumLanes = VT.getSizeInBits()/128;
3478 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003479
3480 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003481 unsigned End = NumLaneElts;
3482 for (unsigned s = 0; s < NumLanes; ++s) {
3483 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003484 i != End;
3485 i += 2, ++j) {
3486 int BitI = Mask[i];
3487 int BitI1 = Mask[i+1];
3488 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003489 return false;
David Greenea20244d2011-03-02 17:23:43 +00003490 if (V2IsSplat) {
3491 if (!isUndefOrEqual(BitI1, NumElts))
3492 return false;
3493 } else {
3494 if (!isUndefOrEqual(BitI1, j + NumElts))
3495 return false;
3496 }
Evan Cheng39623da2006-04-20 08:58:49 +00003497 }
David Greenea20244d2011-03-02 17:23:43 +00003498 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003499 Start += NumLaneElts;
3500 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003501 }
David Greenea20244d2011-03-02 17:23:43 +00003502
Evan Cheng0038e592006-03-28 00:39:58 +00003503 return true;
3504}
3505
Nate Begeman9008ca62009-04-27 18:41:29 +00003506bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3507 SmallVector<int, 8> M;
3508 N->getMask(M);
3509 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003510}
3511
Evan Cheng4fcb9222006-03-28 02:43:26 +00003512/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3513/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003514static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003515 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003516 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003517
3518 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3519 "Unsupported vector type for unpckh");
3520
3521 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003522 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003523
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003524 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3525 // independently on 128-bit lanes.
3526 unsigned NumLanes = VT.getSizeInBits()/128;
3527 unsigned NumLaneElts = NumElts/NumLanes;
3528
3529 unsigned Start = 0;
3530 unsigned End = NumLaneElts;
3531 for (unsigned l = 0; l != NumLanes; ++l) {
3532 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3533 i != End; i += 2, ++j) {
3534 int BitI = Mask[i];
3535 int BitI1 = Mask[i+1];
3536 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003537 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003538 if (V2IsSplat) {
3539 if (isUndefOrEqual(BitI1, NumElts))
3540 return false;
3541 } else {
3542 if (!isUndefOrEqual(BitI1, j+NumElts))
3543 return false;
3544 }
Evan Cheng39623da2006-04-20 08:58:49 +00003545 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003546 // Process the next 128 bits.
3547 Start += NumLaneElts;
3548 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003549 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003550 return true;
3551}
3552
Nate Begeman9008ca62009-04-27 18:41:29 +00003553bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3554 SmallVector<int, 8> M;
3555 N->getMask(M);
3556 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003557}
3558
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003559/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3560/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3561/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003562static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003563 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003564 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003565 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003566
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003567 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3568 // FIXME: Need a better way to get rid of this, there's no latency difference
3569 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3570 // the former later. We should also remove the "_undef" special mask.
3571 if (NumElems == 4 && VT.getSizeInBits() == 256)
3572 return false;
3573
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003574 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3575 // independently on 128-bit lanes.
3576 unsigned NumLanes = VT.getSizeInBits() / 128;
3577 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003578
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003579 for (unsigned s = 0; s < NumLanes; ++s) {
3580 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3581 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003582 i += 2, ++j) {
3583 int BitI = Mask[i];
3584 int BitI1 = Mask[i+1];
3585
3586 if (!isUndefOrEqual(BitI, j))
3587 return false;
3588 if (!isUndefOrEqual(BitI1, j))
3589 return false;
3590 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003591 }
David Greenea20244d2011-03-02 17:23:43 +00003592
Rafael Espindola15684b22009-04-24 12:40:33 +00003593 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003594}
3595
Nate Begeman9008ca62009-04-27 18:41:29 +00003596bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3597 SmallVector<int, 8> M;
3598 N->getMask(M);
3599 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3600}
3601
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003602/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3603/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3604/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003605static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003606 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003607 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3608 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003609
Nate Begeman9008ca62009-04-27 18:41:29 +00003610 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3611 int BitI = Mask[i];
3612 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003613 if (!isUndefOrEqual(BitI, j))
3614 return false;
3615 if (!isUndefOrEqual(BitI1, j))
3616 return false;
3617 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003618 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003619}
3620
Nate Begeman9008ca62009-04-27 18:41:29 +00003621bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3622 SmallVector<int, 8> M;
3623 N->getMask(M);
3624 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3625}
3626
Evan Cheng017dcc62006-04-21 01:05:10 +00003627/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3628/// specifies a shuffle of elements that is suitable for input to MOVSS,
3629/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003630static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003631 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003632 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003633
3634 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003635
Nate Begeman9008ca62009-04-27 18:41:29 +00003636 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003637 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003638
Nate Begeman9008ca62009-04-27 18:41:29 +00003639 for (int i = 1; i < NumElts; ++i)
3640 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003641 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003642
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003643 return true;
3644}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003645
Nate Begeman9008ca62009-04-27 18:41:29 +00003646bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3647 SmallVector<int, 8> M;
3648 N->getMask(M);
3649 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003650}
3651
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003652/// isVPERM2F128Mask - Match 256-bit shuffles where the elements are considered
3653/// as permutations between 128-bit chunks or halves. As an example: this
3654/// shuffle bellow:
3655/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3656/// The first half comes from the second half of V1 and the second half from the
3657/// the second half of V2.
3658static bool isVPERM2F128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3659 const X86Subtarget *Subtarget) {
3660 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3661 return false;
3662
3663 // The shuffle result is divided into half A and half B. In total the two
3664 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3665 // B must come from C, D, E or F.
3666 int HalfSize = VT.getVectorNumElements()/2;
3667 bool MatchA = false, MatchB = false;
3668
3669 // Check if A comes from one of C, D, E, F.
3670 for (int Half = 0; Half < 4; ++Half) {
3671 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3672 MatchA = true;
3673 break;
3674 }
3675 }
3676
3677 // Check if B comes from one of C, D, E, F.
3678 for (int Half = 0; Half < 4; ++Half) {
3679 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3680 MatchB = true;
3681 break;
3682 }
3683 }
3684
3685 return MatchA && MatchB;
3686}
3687
3688/// getShuffleVPERM2F128Immediate - Return the appropriate immediate to shuffle
3689/// the specified VECTOR_MASK mask with VPERM2F128 instructions.
3690static unsigned getShuffleVPERM2F128Immediate(SDNode *N) {
3691 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3692 EVT VT = SVOp->getValueType(0);
3693
3694 int HalfSize = VT.getVectorNumElements()/2;
3695
3696 int FstHalf = 0, SndHalf = 0;
3697 for (int i = 0; i < HalfSize; ++i) {
3698 if (SVOp->getMaskElt(i) > 0) {
3699 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3700 break;
3701 }
3702 }
3703 for (int i = HalfSize; i < HalfSize*2; ++i) {
3704 if (SVOp->getMaskElt(i) > 0) {
3705 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3706 break;
3707 }
3708 }
3709
3710 return (FstHalf | (SndHalf << 4));
3711}
3712
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003713/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3714/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3715/// Note that VPERMIL mask matching is different depending whether theunderlying
3716/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3717/// to the same elements of the low, but to the higher half of the source.
3718/// In VPERMILPD the two lanes could be shuffled independently of each other
3719/// with the same restriction that lanes can't be crossed.
3720static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3721 const X86Subtarget *Subtarget) {
3722 int NumElts = VT.getVectorNumElements();
3723 int NumLanes = VT.getSizeInBits()/128;
3724
3725 if (!Subtarget->hasAVX())
3726 return false;
3727
3728 // Match any permutation of 128-bit vector with 64-bit types
3729 if (NumLanes == 1 && NumElts != 2)
3730 return false;
3731
3732 // Only match 256-bit with 32 types
3733 if (VT.getSizeInBits() == 256 && NumElts != 4)
3734 return false;
3735
3736 // The mask on the high lane is independent of the low. Both can match
3737 // any element in inside its own lane, but can't cross.
3738 int LaneSize = NumElts/NumLanes;
3739 for (int l = 0; l < NumLanes; ++l)
3740 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3741 int LaneStart = l*LaneSize;
3742 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3743 return false;
3744 }
3745
3746 return true;
3747}
3748
3749/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3750/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3751/// Note that VPERMIL mask matching is different depending whether theunderlying
3752/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3753/// to the same elements of the low, but to the higher half of the source.
3754/// In VPERMILPD the two lanes could be shuffled independently of each other
3755/// with the same restriction that lanes can't be crossed.
3756static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3757 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003758 unsigned NumElts = VT.getVectorNumElements();
3759 unsigned NumLanes = VT.getSizeInBits()/128;
3760
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003761 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003762 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003763
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003764 // Match any permutation of 128-bit vector with 32-bit types
3765 if (NumLanes == 1 && NumElts != 4)
3766 return false;
3767
3768 // Only match 256-bit with 32 types
3769 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003770 return false;
3771
3772 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003773 // they can differ if any of the corresponding index in a lane is undef
3774 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003775 int LaneSize = NumElts/NumLanes;
3776 for (int i = 0; i < LaneSize; ++i) {
3777 int HighElt = i+LaneSize;
Bruno Cardoso Lopes155a92a2011-08-10 01:54:17 +00003778 bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3779 bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3780
3781 if (!HighValid || !LowValid)
3782 return false;
3783 if (Mask[i] < 0 || Mask[HighElt] < 0)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003784 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003785 if (Mask[HighElt]-Mask[i] != LaneSize)
3786 return false;
3787 }
3788
3789 return true;
3790}
3791
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003792/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3793/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3794static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003795 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3796 EVT VT = SVOp->getValueType(0);
3797
3798 int NumElts = VT.getVectorNumElements();
3799 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003800 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003801
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003802 // Although the mask is equal for both lanes do it twice to get the cases
3803 // where a mask will match because the same mask element is undef on the
3804 // first half but valid on the second. This would get pathological cases
3805 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003806 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003807 for (int l = 0; l < NumLanes; ++l) {
3808 for (int i = 0; i < LaneSize; ++i) {
3809 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3810 if (MaskElt < 0)
3811 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003812 if (MaskElt >= LaneSize)
3813 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003814 Mask |= MaskElt << (i*2);
3815 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003816 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003817
3818 return Mask;
3819}
3820
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003821/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3822/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3823static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3824 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3825 EVT VT = SVOp->getValueType(0);
3826
3827 int NumElts = VT.getVectorNumElements();
3828 int NumLanes = VT.getSizeInBits()/128;
3829
3830 unsigned Mask = 0;
3831 int LaneSize = NumElts/NumLanes;
3832 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003833 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3834 int MaskElt = SVOp->getMaskElt(i);
3835 if (MaskElt < 0)
3836 continue;
3837 Mask |= (MaskElt-l*LaneSize) << i;
3838 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003839
3840 return Mask;
3841}
3842
Evan Cheng017dcc62006-04-21 01:05:10 +00003843/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3844/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003845/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003846static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003847 bool V2IsSplat = false, bool V2IsUndef = false) {
3848 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003849 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003850 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003851
Nate Begeman9008ca62009-04-27 18:41:29 +00003852 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003853 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003854
Nate Begeman9008ca62009-04-27 18:41:29 +00003855 for (int i = 1; i < NumOps; ++i)
3856 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3857 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3858 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003859 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003860
Evan Cheng39623da2006-04-20 08:58:49 +00003861 return true;
3862}
3863
Nate Begeman9008ca62009-04-27 18:41:29 +00003864static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003865 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003866 SmallVector<int, 8> M;
3867 N->getMask(M);
3868 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003869}
3870
Evan Chengd9539472006-04-14 21:59:03 +00003871/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3872/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003873/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3874bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3875 const X86Subtarget *Subtarget) {
3876 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003877 return false;
3878
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003879 // The second vector must be undef
3880 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3881 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003882
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003883 EVT VT = N->getValueType(0);
3884 unsigned NumElems = VT.getVectorNumElements();
3885
3886 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3887 (VT.getSizeInBits() == 256 && NumElems != 8))
3888 return false;
3889
3890 // "i+1" is the value the indexed mask element must have
3891 for (unsigned i = 0; i < NumElems; i += 2)
3892 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3893 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003894 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003895
3896 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003897}
3898
3899/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3900/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003901/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3902bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3903 const X86Subtarget *Subtarget) {
3904 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003905 return false;
3906
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003907 // The second vector must be undef
3908 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3909 return false;
3910
3911 EVT VT = N->getValueType(0);
3912 unsigned NumElems = VT.getVectorNumElements();
3913
3914 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3915 (VT.getSizeInBits() == 256 && NumElems != 8))
3916 return false;
3917
3918 // "i" is the value the indexed mask element must have
3919 for (unsigned i = 0; i < NumElems; i += 2)
3920 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3921 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003922 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003923
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003924 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003925}
3926
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003927/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
3928/// specifies a shuffle of elements that is suitable for input to 256-bit
3929/// version of MOVDDUP.
3930static bool isMOVDDUPYMask(ShuffleVectorSDNode *N,
3931 const X86Subtarget *Subtarget) {
3932 EVT VT = N->getValueType(0);
3933 int NumElts = VT.getVectorNumElements();
3934 bool V2IsUndef = N->getOperand(1).getOpcode() == ISD::UNDEF;
3935
3936 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256 ||
3937 !V2IsUndef || NumElts != 4)
3938 return false;
3939
3940 for (int i = 0; i != NumElts/2; ++i)
3941 if (!isUndefOrEqual(N->getMaskElt(i), 0))
3942 return false;
3943 for (int i = NumElts/2; i != NumElts; ++i)
3944 if (!isUndefOrEqual(N->getMaskElt(i), NumElts/2))
3945 return false;
3946 return true;
3947}
3948
Evan Cheng0b457f02008-09-25 20:50:48 +00003949/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003950/// specifies a shuffle of elements that is suitable for input to 128-bit
3951/// version of MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003952bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003953 EVT VT = N->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00003954
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003955 if (VT.getSizeInBits() != 128)
3956 return false;
3957
3958 int e = VT.getVectorNumElements() / 2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003959 for (int i = 0; i < e; ++i)
3960 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003961 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003962 for (int i = 0; i < e; ++i)
3963 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003964 return false;
3965 return true;
3966}
3967
David Greenec38a03e2011-02-03 15:50:00 +00003968/// isVEXTRACTF128Index - Return true if the specified
3969/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3970/// suitable for input to VEXTRACTF128.
3971bool X86::isVEXTRACTF128Index(SDNode *N) {
3972 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3973 return false;
3974
3975 // The index should be aligned on a 128-bit boundary.
3976 uint64_t Index =
3977 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3978
3979 unsigned VL = N->getValueType(0).getVectorNumElements();
3980 unsigned VBits = N->getValueType(0).getSizeInBits();
3981 unsigned ElSize = VBits / VL;
3982 bool Result = (Index * ElSize) % 128 == 0;
3983
3984 return Result;
3985}
3986
David Greeneccacdc12011-02-04 16:08:29 +00003987/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3988/// operand specifies a subvector insert that is suitable for input to
3989/// VINSERTF128.
3990bool X86::isVINSERTF128Index(SDNode *N) {
3991 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3992 return false;
3993
3994 // The index should be aligned on a 128-bit boundary.
3995 uint64_t Index =
3996 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3997
3998 unsigned VL = N->getValueType(0).getVectorNumElements();
3999 unsigned VBits = N->getValueType(0).getSizeInBits();
4000 unsigned ElSize = VBits / VL;
4001 bool Result = (Index * ElSize) % 128 == 0;
4002
4003 return Result;
4004}
4005
Evan Cheng63d33002006-03-22 08:01:21 +00004006/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004007/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00004008unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004009 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4010 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
4011
Evan Chengb9df0ca2006-03-22 02:53:00 +00004012 unsigned Shift = (NumOperands == 4) ? 2 : 1;
4013 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00004014 for (int i = 0; i < NumOperands; ++i) {
4015 int Val = SVOp->getMaskElt(NumOperands-i-1);
4016 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00004017 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00004018 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00004019 if (i != NumOperands - 1)
4020 Mask <<= Shift;
4021 }
Evan Cheng63d33002006-03-22 08:01:21 +00004022 return Mask;
4023}
4024
Evan Cheng506d3df2006-03-29 23:07:14 +00004025/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004026/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00004027unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004028 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00004029 unsigned Mask = 0;
4030 // 8 nodes, but we only care about the last 4.
4031 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004032 int Val = SVOp->getMaskElt(i);
4033 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00004034 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00004035 if (i != 4)
4036 Mask <<= 2;
4037 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004038 return Mask;
4039}
4040
4041/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004042/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00004043unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004044 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00004045 unsigned Mask = 0;
4046 // 8 nodes, but we only care about the first 4.
4047 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004048 int Val = SVOp->getMaskElt(i);
4049 if (Val >= 0)
4050 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00004051 if (i != 0)
4052 Mask <<= 2;
4053 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004054 return Mask;
4055}
4056
Nate Begemana09008b2009-10-19 02:17:23 +00004057/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4058/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4059unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
4060 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4061 EVT VVT = N->getValueType(0);
4062 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
4063 int Val = 0;
4064
4065 unsigned i, e;
4066 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
4067 Val = SVOp->getMaskElt(i);
4068 if (Val >= 0)
4069 break;
4070 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00004071 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004072 return (Val - i) * EltSize;
4073}
4074
David Greenec38a03e2011-02-03 15:50:00 +00004075/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4076/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4077/// instructions.
4078unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4079 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4080 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4081
4082 uint64_t Index =
4083 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4084
4085 EVT VecVT = N->getOperand(0).getValueType();
4086 EVT ElVT = VecVT.getVectorElementType();
4087
4088 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004089 return Index / NumElemsPerChunk;
4090}
4091
David Greeneccacdc12011-02-04 16:08:29 +00004092/// getInsertVINSERTF128Immediate - Return the appropriate immediate
4093/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4094/// instructions.
4095unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4096 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4097 llvm_unreachable("Illegal insert subvector for VINSERTF128");
4098
4099 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004100 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004101
4102 EVT VecVT = N->getValueType(0);
4103 EVT ElVT = VecVT.getVectorElementType();
4104
4105 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004106 return Index / NumElemsPerChunk;
4107}
4108
Evan Cheng37b73872009-07-30 08:33:02 +00004109/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4110/// constant +0.0.
4111bool X86::isZeroNode(SDValue Elt) {
4112 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00004113 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00004114 (isa<ConstantFPSDNode>(Elt) &&
4115 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4116}
4117
Nate Begeman9008ca62009-04-27 18:41:29 +00004118/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4119/// their permute mask.
4120static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4121 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004122 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004123 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004124 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004125
Nate Begeman5a5ca152009-04-29 05:20:52 +00004126 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004127 int idx = SVOp->getMaskElt(i);
4128 if (idx < 0)
4129 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004130 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00004131 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004132 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004133 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004134 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004135 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4136 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004137}
4138
Evan Cheng779ccea2007-12-07 21:30:01 +00004139/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
4140/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00004141static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004142 unsigned NumElems = VT.getVectorNumElements();
4143 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004144 int idx = Mask[i];
4145 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004146 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004147 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00004148 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004149 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004150 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004151 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004152}
4153
Evan Cheng533a0aa2006-04-19 20:35:22 +00004154/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4155/// match movhlps. The lower half elements should come from upper half of
4156/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004157/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00004158static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004159 EVT VT = Op->getValueType(0);
4160 if (VT.getSizeInBits() != 128)
4161 return false;
4162 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004163 return false;
4164 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004165 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004166 return false;
4167 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004168 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004169 return false;
4170 return true;
4171}
4172
Evan Cheng5ced1d82006-04-06 23:23:56 +00004173/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004174/// is promoted to a vector. It also returns the LoadSDNode by reference if
4175/// required.
4176static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004177 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4178 return false;
4179 N = N->getOperand(0).getNode();
4180 if (!ISD::isNON_EXTLoad(N))
4181 return false;
4182 if (LD)
4183 *LD = cast<LoadSDNode>(N);
4184 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004185}
4186
Evan Cheng533a0aa2006-04-19 20:35:22 +00004187/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4188/// match movlp{s|d}. The lower half elements should come from lower half of
4189/// V1 (and in order), and the upper half elements should come from the upper
4190/// half of V2 (and in order). And since V1 will become the source of the
4191/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004192static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4193 ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004194 EVT VT = Op->getValueType(0);
4195 if (VT.getSizeInBits() != 128)
4196 return false;
4197
Evan Cheng466685d2006-10-09 20:57:25 +00004198 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004199 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004200 // Is V2 is a vector load, don't do this transformation. We will try to use
4201 // load folding shufps op.
4202 if (ISD::isNON_EXTLoad(V2))
4203 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004204
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004205 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004206
Evan Cheng533a0aa2006-04-19 20:35:22 +00004207 if (NumElems != 2 && NumElems != 4)
4208 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004209 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004210 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004211 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004212 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004213 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004214 return false;
4215 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004216}
4217
Evan Cheng39623da2006-04-20 08:58:49 +00004218/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4219/// all the same.
4220static bool isSplatVector(SDNode *N) {
4221 if (N->getOpcode() != ISD::BUILD_VECTOR)
4222 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004223
Dan Gohman475871a2008-07-27 21:46:04 +00004224 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004225 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4226 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004227 return false;
4228 return true;
4229}
4230
Evan Cheng213d2cf2007-05-17 18:45:50 +00004231/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004232/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004233/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004234static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004235 SDValue V1 = N->getOperand(0);
4236 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004237 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4238 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004239 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004240 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004241 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004242 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4243 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004244 if (Opc != ISD::BUILD_VECTOR ||
4245 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004246 return false;
4247 } else if (Idx >= 0) {
4248 unsigned Opc = V1.getOpcode();
4249 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4250 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004251 if (Opc != ISD::BUILD_VECTOR ||
4252 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004253 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004254 }
4255 }
4256 return true;
4257}
4258
4259/// getZeroVector - Returns a vector of specified type with all zero elements.
4260///
Owen Andersone50ed302009-08-10 22:56:29 +00004261static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004262 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004263 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004264
Dale Johannesen0488fb62010-09-30 23:57:10 +00004265 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004266 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004267 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00004268 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004269 if (HasSSE2) { // SSE2
4270 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4271 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4272 } else { // SSE1
4273 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4274 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4275 }
4276 } else if (VT.getSizeInBits() == 256) { // AVX
4277 // 256-bit logic and arithmetic instructions in AVX are
4278 // all floating-point, no support for integer ops. Default
4279 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00004280 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004281 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4282 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00004283 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004284 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004285}
4286
Chris Lattner8a594482007-11-25 00:24:49 +00004287/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004288/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
4289/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
4290/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00004291static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004292 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004293 assert((VT.is128BitVector() || VT.is256BitVector())
4294 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004295
Owen Anderson825b72b2009-08-11 20:47:22 +00004296 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004297 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
4298 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004299
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004300 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004301 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4302 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4303 Vec = Insert128BitVector(InsV, Vec,
4304 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4305 }
4306
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004307 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004308}
4309
Evan Cheng39623da2006-04-20 08:58:49 +00004310/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4311/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004312static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004313 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004314 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004315
Evan Cheng39623da2006-04-20 08:58:49 +00004316 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004317 SmallVector<int, 8> MaskVec;
4318 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004319
Nate Begeman5a5ca152009-04-29 05:20:52 +00004320 for (unsigned i = 0; i != NumElems; ++i) {
4321 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004322 MaskVec[i] = NumElems;
4323 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004324 }
Evan Cheng39623da2006-04-20 08:58:49 +00004325 }
Evan Cheng39623da2006-04-20 08:58:49 +00004326 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004327 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4328 SVOp->getOperand(1), &MaskVec[0]);
4329 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004330}
4331
Evan Cheng017dcc62006-04-21 01:05:10 +00004332/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4333/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004334static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004335 SDValue V2) {
4336 unsigned NumElems = VT.getVectorNumElements();
4337 SmallVector<int, 8> Mask;
4338 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004339 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004340 Mask.push_back(i);
4341 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004342}
4343
Nate Begeman9008ca62009-04-27 18:41:29 +00004344/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004345static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004346 SDValue V2) {
4347 unsigned NumElems = VT.getVectorNumElements();
4348 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004349 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004350 Mask.push_back(i);
4351 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004352 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004353 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004354}
4355
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004356/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004357static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004358 SDValue V2) {
4359 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004360 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004361 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004362 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004363 Mask.push_back(i + Half);
4364 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004365 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004366 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004367}
4368
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004369// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004370// a generic shuffle instruction because the target has no such instructions.
4371// Generate shuffles which repeat i16 and i8 several times until they can be
4372// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004373static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004374 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004375 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004376 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004377
Nate Begeman9008ca62009-04-27 18:41:29 +00004378 while (NumElems > 4) {
4379 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004380 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004381 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004382 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004383 EltNo -= NumElems/2;
4384 }
4385 NumElems >>= 1;
4386 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004387 return V;
4388}
Eric Christopherfd179292009-08-27 18:07:15 +00004389
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004390/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4391static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4392 EVT VT = V.getValueType();
4393 DebugLoc dl = V.getDebugLoc();
4394 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4395 && "Vector size not supported");
4396
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004397 if (VT.getSizeInBits() == 128) {
4398 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004399 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004400 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4401 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004402 } else {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004403 // To use VPERMILPS to splat scalars, the second half of indicies must
4404 // refer to the higher part, which is a duplication of the lower one,
4405 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004406 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4407 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004408
4409 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4410 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4411 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004412 }
4413
4414 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4415}
4416
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004417/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004418static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4419 EVT SrcVT = SV->getValueType(0);
4420 SDValue V1 = SV->getOperand(0);
4421 DebugLoc dl = SV->getDebugLoc();
4422
4423 int EltNo = SV->getSplatIndex();
4424 int NumElems = SrcVT.getVectorNumElements();
4425 unsigned Size = SrcVT.getSizeInBits();
4426
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004427 assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4428 "Unknown how to promote splat for type");
4429
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004430 // Extract the 128-bit part containing the splat element and update
4431 // the splat element index when it refers to the higher register.
4432 if (Size == 256) {
4433 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4434 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4435 if (Idx > 0)
4436 EltNo -= NumElems/2;
4437 }
4438
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004439 // All i16 and i8 vector types can't be used directly by a generic shuffle
4440 // instruction because the target has no such instruction. Generate shuffles
4441 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004442 // be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004443 EVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004444 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004445 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004446
4447 // Recreate the 256-bit vector and place the same 128-bit vector
4448 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004449 // to use VPERM* to shuffle the vectors
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004450 if (Size == 256) {
4451 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4452 DAG.getConstant(0, MVT::i32), DAG, dl);
4453 V1 = Insert128BitVector(InsV, V1,
4454 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4455 }
4456
4457 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004458}
4459
Evan Chengba05f722006-04-21 23:03:30 +00004460/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004461/// vector of zero or undef vector. This produces a shuffle where the low
4462/// element of V2 is swizzled into the zero/undef vector, landing at element
4463/// 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 +00004464static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004465 bool isZero, bool HasSSE2,
4466 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004467 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004468 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004469 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4470 unsigned NumElems = VT.getVectorNumElements();
4471 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004472 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004473 // If this is the insertion idx, put the low elt of V2 here.
4474 MaskVec.push_back(i == Idx ? NumElems : i);
4475 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004476}
4477
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004478/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4479/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004480static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4481 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004482 if (Depth == 6)
4483 return SDValue(); // Limit search depth.
4484
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004485 SDValue V = SDValue(N, 0);
4486 EVT VT = V.getValueType();
4487 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004488
4489 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4490 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4491 Index = SV->getMaskElt(Index);
4492
4493 if (Index < 0)
4494 return DAG.getUNDEF(VT.getVectorElementType());
4495
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004496 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004497 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004498 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004499 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004500
4501 // Recurse into target specific vector shuffles to find scalars.
4502 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004503 int NumElems = VT.getVectorNumElements();
4504 SmallVector<unsigned, 16> ShuffleMask;
4505 SDValue ImmN;
4506
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004507 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004508 case X86ISD::SHUFPS:
4509 case X86ISD::SHUFPD:
4510 ImmN = N->getOperand(N->getNumOperands()-1);
4511 DecodeSHUFPSMask(NumElems,
4512 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4513 ShuffleMask);
4514 break;
4515 case X86ISD::PUNPCKHBW:
4516 case X86ISD::PUNPCKHWD:
4517 case X86ISD::PUNPCKHDQ:
4518 case X86ISD::PUNPCKHQDQ:
4519 DecodePUNPCKHMask(NumElems, ShuffleMask);
4520 break;
4521 case X86ISD::UNPCKHPS:
4522 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004523 case X86ISD::VUNPCKHPSY:
4524 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004525 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4526 break;
4527 case X86ISD::PUNPCKLBW:
4528 case X86ISD::PUNPCKLWD:
4529 case X86ISD::PUNPCKLDQ:
4530 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004531 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004532 break;
4533 case X86ISD::UNPCKLPS:
4534 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004535 case X86ISD::VUNPCKLPSY:
4536 case X86ISD::VUNPCKLPDY:
4537 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004538 break;
4539 case X86ISD::MOVHLPS:
4540 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4541 break;
4542 case X86ISD::MOVLHPS:
4543 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4544 break;
4545 case X86ISD::PSHUFD:
4546 ImmN = N->getOperand(N->getNumOperands()-1);
4547 DecodePSHUFMask(NumElems,
4548 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4549 ShuffleMask);
4550 break;
4551 case X86ISD::PSHUFHW:
4552 ImmN = N->getOperand(N->getNumOperands()-1);
4553 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4554 ShuffleMask);
4555 break;
4556 case X86ISD::PSHUFLW:
4557 ImmN = N->getOperand(N->getNumOperands()-1);
4558 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4559 ShuffleMask);
4560 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004561 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004562 case X86ISD::MOVSD: {
4563 // The index 0 always comes from the first element of the second source,
4564 // this is why MOVSS and MOVSD are used in the first place. The other
4565 // elements come from the other positions of the first source vector.
4566 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004567 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4568 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004569 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004570 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004571 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004572 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004573 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004574 break;
4575 case X86ISD::VPERMILPSY:
4576 ImmN = N->getOperand(N->getNumOperands()-1);
4577 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4578 ShuffleMask);
4579 break;
4580 case X86ISD::VPERMILPD:
4581 ImmN = N->getOperand(N->getNumOperands()-1);
4582 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4583 ShuffleMask);
4584 break;
4585 case X86ISD::VPERMILPDY:
4586 ImmN = N->getOperand(N->getNumOperands()-1);
4587 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4588 ShuffleMask);
4589 break;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004590 case X86ISD::VPERM2F128:
4591 ImmN = N->getOperand(N->getNumOperands()-1);
4592 DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4593 ShuffleMask);
4594 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004595 default:
4596 assert("not implemented for target shuffle node");
4597 return SDValue();
4598 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004599
4600 Index = ShuffleMask[Index];
4601 if (Index < 0)
4602 return DAG.getUNDEF(VT.getVectorElementType());
4603
4604 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4605 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4606 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004607 }
4608
4609 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004610 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004611 V = V.getOperand(0);
4612 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004613 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004614
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004615 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004616 return SDValue();
4617 }
4618
4619 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4620 return (Index == 0) ? V.getOperand(0)
4621 : DAG.getUNDEF(VT.getVectorElementType());
4622
4623 if (V.getOpcode() == ISD::BUILD_VECTOR)
4624 return V.getOperand(Index);
4625
4626 return SDValue();
4627}
4628
4629/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4630/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004631/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004632static
4633unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4634 bool ZerosFromLeft, SelectionDAG &DAG) {
4635 int i = 0;
4636
4637 while (i < NumElems) {
4638 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004639 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004640 if (!(Elt.getNode() &&
4641 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4642 break;
4643 ++i;
4644 }
4645
4646 return i;
4647}
4648
4649/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4650/// MaskE correspond consecutively to elements from one of the vector operands,
4651/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4652static
4653bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4654 int OpIdx, int NumElems, unsigned &OpNum) {
4655 bool SeenV1 = false;
4656 bool SeenV2 = false;
4657
4658 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4659 int Idx = SVOp->getMaskElt(i);
4660 // Ignore undef indicies
4661 if (Idx < 0)
4662 continue;
4663
4664 if (Idx < NumElems)
4665 SeenV1 = true;
4666 else
4667 SeenV2 = true;
4668
4669 // Only accept consecutive elements from the same vector
4670 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4671 return false;
4672 }
4673
4674 OpNum = SeenV1 ? 0 : 1;
4675 return true;
4676}
4677
4678/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4679/// logical left shift of a vector.
4680static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4681 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4682 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4683 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4684 false /* check zeros from right */, DAG);
4685 unsigned OpSrc;
4686
4687 if (!NumZeros)
4688 return false;
4689
4690 // Considering the elements in the mask that are not consecutive zeros,
4691 // check if they consecutively come from only one of the source vectors.
4692 //
4693 // V1 = {X, A, B, C} 0
4694 // \ \ \ /
4695 // vector_shuffle V1, V2 <1, 2, 3, X>
4696 //
4697 if (!isShuffleMaskConsecutive(SVOp,
4698 0, // Mask Start Index
4699 NumElems-NumZeros-1, // Mask End Index
4700 NumZeros, // Where to start looking in the src vector
4701 NumElems, // Number of elements in vector
4702 OpSrc)) // Which source operand ?
4703 return false;
4704
4705 isLeft = false;
4706 ShAmt = NumZeros;
4707 ShVal = SVOp->getOperand(OpSrc);
4708 return true;
4709}
4710
4711/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4712/// logical left shift of a vector.
4713static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4714 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4715 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4716 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4717 true /* check zeros from left */, DAG);
4718 unsigned OpSrc;
4719
4720 if (!NumZeros)
4721 return false;
4722
4723 // Considering the elements in the mask that are not consecutive zeros,
4724 // check if they consecutively come from only one of the source vectors.
4725 //
4726 // 0 { A, B, X, X } = V2
4727 // / \ / /
4728 // vector_shuffle V1, V2 <X, X, 4, 5>
4729 //
4730 if (!isShuffleMaskConsecutive(SVOp,
4731 NumZeros, // Mask Start Index
4732 NumElems-1, // Mask End Index
4733 0, // Where to start looking in the src vector
4734 NumElems, // Number of elements in vector
4735 OpSrc)) // Which source operand ?
4736 return false;
4737
4738 isLeft = true;
4739 ShAmt = NumZeros;
4740 ShVal = SVOp->getOperand(OpSrc);
4741 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004742}
4743
4744/// isVectorShift - Returns true if the shuffle can be implemented as a
4745/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004746static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004747 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004748 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4749 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4750 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004751
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004752 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004753}
4754
Evan Chengc78d3b42006-04-24 18:01:45 +00004755/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4756///
Dan Gohman475871a2008-07-27 21:46:04 +00004757static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004758 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004759 SelectionDAG &DAG,
4760 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004761 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004762 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004763
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004764 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004765 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004766 bool First = true;
4767 for (unsigned i = 0; i < 16; ++i) {
4768 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4769 if (ThisIsNonZero && First) {
4770 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004771 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004772 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004773 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004774 First = false;
4775 }
4776
4777 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004778 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004779 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4780 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004781 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004782 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004783 }
4784 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004785 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4786 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4787 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004788 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004789 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004790 } else
4791 ThisElt = LastElt;
4792
Gabor Greifba36cb52008-08-28 21:40:38 +00004793 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004794 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004795 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004796 }
4797 }
4798
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004799 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004800}
4801
Bill Wendlinga348c562007-03-22 18:42:45 +00004802/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004803///
Dan Gohman475871a2008-07-27 21:46:04 +00004804static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004805 unsigned NumNonZero, unsigned NumZero,
4806 SelectionDAG &DAG,
4807 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004808 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004809 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004810
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004811 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004812 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004813 bool First = true;
4814 for (unsigned i = 0; i < 8; ++i) {
4815 bool isNonZero = (NonZeros & (1 << i)) != 0;
4816 if (isNonZero) {
4817 if (First) {
4818 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004819 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004820 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004821 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004822 First = false;
4823 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004824 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004825 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004826 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004827 }
4828 }
4829
4830 return V;
4831}
4832
Evan Chengf26ffe92008-05-29 08:22:04 +00004833/// getVShift - Return a vector logical shift node.
4834///
Owen Andersone50ed302009-08-10 22:56:29 +00004835static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004836 unsigned NumBits, SelectionDAG &DAG,
4837 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004838 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004839 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004840 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4841 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004842 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004843 DAG.getConstant(NumBits,
4844 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004845}
4846
Dan Gohman475871a2008-07-27 21:46:04 +00004847SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004848X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004849 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004850
Evan Chengc3630942009-12-09 21:00:30 +00004851 // Check if the scalar load can be widened into a vector load. And if
4852 // the address is "base + cst" see if the cst can be "absorbed" into
4853 // the shuffle mask.
4854 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4855 SDValue Ptr = LD->getBasePtr();
4856 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4857 return SDValue();
4858 EVT PVT = LD->getValueType(0);
4859 if (PVT != MVT::i32 && PVT != MVT::f32)
4860 return SDValue();
4861
4862 int FI = -1;
4863 int64_t Offset = 0;
4864 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4865 FI = FINode->getIndex();
4866 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004867 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004868 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4869 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4870 Offset = Ptr.getConstantOperandVal(1);
4871 Ptr = Ptr.getOperand(0);
4872 } else {
4873 return SDValue();
4874 }
4875
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004876 // FIXME: 256-bit vector instructions don't require a strict alignment,
4877 // improve this code to support it better.
4878 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004879 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004880 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004881 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004882 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004883 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004884 // Can't change the alignment. FIXME: It's possible to compute
4885 // the exact stack offset and reference FI + adjust offset instead.
4886 // If someone *really* cares about this. That's the way to implement it.
4887 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004888 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004889 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004890 }
4891 }
4892
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004893 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004894 // Ptr + (Offset & ~15).
4895 if (Offset < 0)
4896 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004897 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004898 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004899 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004900 if (StartOffset)
4901 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4902 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4903
4904 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004905 int NumElems = VT.getVectorNumElements();
4906
4907 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4908 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4909 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004910 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004911 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004912
4913 // Canonicalize it to a v4i32 or v8i32 shuffle.
4914 SmallVector<int, 8> Mask;
4915 for (int i = 0; i < NumElems; ++i)
4916 Mask.push_back(EltNo);
4917
4918 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4919 return DAG.getNode(ISD::BITCAST, dl, NVT,
4920 DAG.getVectorShuffle(CanonVT, dl, V1,
4921 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004922 }
4923
4924 return SDValue();
4925}
4926
Michael J. Spencerec38de22010-10-10 22:04:20 +00004927/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4928/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004929/// load which has the same value as a build_vector whose operands are 'elts'.
4930///
4931/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004932///
Nate Begeman1449f292010-03-24 22:19:06 +00004933/// FIXME: we'd also like to handle the case where the last elements are zero
4934/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4935/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004936static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004937 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004938 EVT EltVT = VT.getVectorElementType();
4939 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004940
Nate Begemanfdea31a2010-03-24 20:49:50 +00004941 LoadSDNode *LDBase = NULL;
4942 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004943
Nate Begeman1449f292010-03-24 22:19:06 +00004944 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004945 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004946 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004947 for (unsigned i = 0; i < NumElems; ++i) {
4948 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004949
Nate Begemanfdea31a2010-03-24 20:49:50 +00004950 if (!Elt.getNode() ||
4951 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4952 return SDValue();
4953 if (!LDBase) {
4954 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4955 return SDValue();
4956 LDBase = cast<LoadSDNode>(Elt.getNode());
4957 LastLoadedElt = i;
4958 continue;
4959 }
4960 if (Elt.getOpcode() == ISD::UNDEF)
4961 continue;
4962
4963 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4964 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4965 return SDValue();
4966 LastLoadedElt = i;
4967 }
Nate Begeman1449f292010-03-24 22:19:06 +00004968
4969 // If we have found an entire vector of loads and undefs, then return a large
4970 // load of the entire vector width starting at the base pointer. If we found
4971 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004972 if (LastLoadedElt == NumElems - 1) {
4973 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004974 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004975 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004976 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004977 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004978 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004979 LDBase->isVolatile(), LDBase->isNonTemporal(),
4980 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004981 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4982 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004983 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4984 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004985 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4986 Ops, 2, MVT::i32,
4987 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004988 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004989 }
4990 return SDValue();
4991}
4992
Evan Chengc3630942009-12-09 21:00:30 +00004993SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004994X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004995 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004996
David Greenef125a292011-02-08 19:04:41 +00004997 EVT VT = Op.getValueType();
4998 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004999 unsigned NumElems = Op.getNumOperands();
5000
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005001 // Vectors containing all zeros can be matched by pxor and xorps later
5002 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5003 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5004 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00005005 if (Op.getValueType() == MVT::v4i32 ||
5006 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005007 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005008
Dale Johannesenace16102009-02-03 19:33:06 +00005009 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005010 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005011
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005012 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5013 // vectors or broken into v4i32 operations on 256-bit vectors.
5014 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5015 if (Op.getValueType() == MVT::v4i32)
5016 return Op;
5017
5018 return getOnesVector(Op.getValueType(), DAG, dl);
5019 }
5020
Owen Andersone50ed302009-08-10 22:56:29 +00005021 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005022
Evan Cheng0db9fe62006-04-25 20:13:52 +00005023 unsigned NumZero = 0;
5024 unsigned NumNonZero = 0;
5025 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005026 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005027 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005028 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005029 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005030 if (Elt.getOpcode() == ISD::UNDEF)
5031 continue;
5032 Values.insert(Elt);
5033 if (Elt.getOpcode() != ISD::Constant &&
5034 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005035 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005036 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005037 NumZero++;
5038 else {
5039 NonZeros |= (1 << i);
5040 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005041 }
5042 }
5043
Chris Lattner97a2a562010-08-26 05:24:29 +00005044 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5045 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005046 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005047
Chris Lattner67f453a2008-03-09 05:42:06 +00005048 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005049 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005050 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005051 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005052
Chris Lattner62098042008-03-09 01:05:04 +00005053 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5054 // the value are obviously zero, truncate the value to i32 and do the
5055 // insertion that way. Only do this if the value is non-constant or if the
5056 // value is a constant being inserted into element 0. It is cheaper to do
5057 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005058 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005059 (!IsAllConstants || Idx == 0)) {
5060 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005061 // Handle SSE only.
5062 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5063 EVT VecVT = MVT::v4i32;
5064 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005065
Chris Lattner62098042008-03-09 01:05:04 +00005066 // Truncate the value (which may itself be a constant) to i32, and
5067 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005068 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005069 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00005070 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
5071 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005072
Chris Lattner62098042008-03-09 01:05:04 +00005073 // Now we have our 32-bit value zero extended in the low element of
5074 // a vector. If Idx != 0, swizzle it into place.
5075 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005076 SmallVector<int, 4> Mask;
5077 Mask.push_back(Idx);
5078 for (unsigned i = 1; i != VecElts; ++i)
5079 Mask.push_back(i);
5080 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00005081 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00005082 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005083 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005084 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00005085 }
5086 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005087
Chris Lattner19f79692008-03-08 22:59:52 +00005088 // If we have a constant or non-constant insertion into the low element of
5089 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5090 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005091 // depending on what the source datatype is.
5092 if (Idx == 0) {
5093 if (NumZero == 0) {
5094 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00005095 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5096 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00005097 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5098 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5099 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
5100 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00005101 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5102 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005103 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
5104 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00005105 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
5106 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
5107 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005108 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005109 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005110 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005111
5112 // Is it a vector logical left shift?
5113 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005114 X86::isZeroNode(Op.getOperand(0)) &&
5115 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005116 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005117 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005118 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005119 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005120 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005121 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005122
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005123 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005124 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005125
Chris Lattner19f79692008-03-08 22:59:52 +00005126 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5127 // is a non-constant being inserted into an element other than the low one,
5128 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5129 // movd/movss) to move this into the low element, then shuffle it into
5130 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005131 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005132 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005133
Evan Cheng0db9fe62006-04-25 20:13:52 +00005134 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00005135 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
5136 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005137 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005138 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00005139 MaskVec.push_back(i == Idx ? 0 : 1);
5140 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005141 }
5142 }
5143
Chris Lattner67f453a2008-03-09 05:42:06 +00005144 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005145 if (Values.size() == 1) {
5146 if (EVTBits == 32) {
5147 // Instead of a shuffle like this:
5148 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5149 // Check if it's possible to issue this instead.
5150 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5151 unsigned Idx = CountTrailingZeros_32(NonZeros);
5152 SDValue Item = Op.getOperand(Idx);
5153 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5154 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5155 }
Dan Gohman475871a2008-07-27 21:46:04 +00005156 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005157 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005158
Dan Gohmana3941172007-07-24 22:55:08 +00005159 // A vector full of immediates; various special cases are already
5160 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005161 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005162 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005163
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005164 // For AVX-length vectors, build the individual 128-bit pieces and use
5165 // shuffles to put them in place.
5166 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
5167 SmallVector<SDValue, 32> V;
5168 for (unsigned i = 0; i < NumElems; ++i)
5169 V.push_back(Op.getOperand(i));
5170
5171 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5172
5173 // Build both the lower and upper subvector.
5174 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5175 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5176 NumElems/2);
5177
5178 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00005179 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
5180 DAG.getConstant(0, MVT::i32), DAG, dl);
5181 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005182 DAG, dl);
5183 }
5184
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005185 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005186 if (EVTBits == 64) {
5187 if (NumNonZero == 1) {
5188 // One half is zero or undef.
5189 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005190 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005191 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00005192 return getShuffleVectorZeroOrUndef(V2, Idx, true,
5193 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005194 }
Dan Gohman475871a2008-07-27 21:46:04 +00005195 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005196 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005197
5198 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005199 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005200 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00005201 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005202 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005203 }
5204
Bill Wendling826f36f2007-03-28 00:57:11 +00005205 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005206 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00005207 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005208 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005209 }
5210
5211 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005212 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00005213 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005214 if (NumElems == 4 && NumZero > 0) {
5215 for (unsigned i = 0; i < 4; ++i) {
5216 bool isZero = !(NonZeros & (1 << i));
5217 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00005218 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005219 else
Dale Johannesenace16102009-02-03 19:33:06 +00005220 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005221 }
5222
5223 for (unsigned i = 0; i < 2; ++i) {
5224 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5225 default: break;
5226 case 0:
5227 V[i] = V[i*2]; // Must be a zero vector.
5228 break;
5229 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005230 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005231 break;
5232 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005233 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005234 break;
5235 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005236 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005237 break;
5238 }
5239 }
5240
Nate Begeman9008ca62009-04-27 18:41:29 +00005241 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005242 bool Reverse = (NonZeros & 0x3) == 2;
5243 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005244 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005245 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5246 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005247 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5248 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005249 }
5250
Nate Begemanfdea31a2010-03-24 20:49:50 +00005251 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5252 // Check for a build vector of consecutive loads.
5253 for (unsigned i = 0; i < NumElems; ++i)
5254 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005255
Nate Begemanfdea31a2010-03-24 20:49:50 +00005256 // Check for elements which are consecutive loads.
5257 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5258 if (LD.getNode())
5259 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005260
5261 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005262 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005263 SDValue Result;
5264 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5265 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5266 else
5267 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005268
Chris Lattner24faf612010-08-28 17:59:08 +00005269 for (unsigned i = 1; i < NumElems; ++i) {
5270 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5271 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005272 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005273 }
5274 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005275 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005276
Chris Lattner6e80e442010-08-28 17:15:43 +00005277 // Otherwise, expand into a number of unpckl*, start by extending each of
5278 // our (non-undef) elements to the full vector width with the element in the
5279 // bottom slot of the vector (which generates no code for SSE).
5280 for (unsigned i = 0; i < NumElems; ++i) {
5281 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5282 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5283 else
5284 V[i] = DAG.getUNDEF(VT);
5285 }
5286
5287 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005288 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5289 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5290 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005291 unsigned EltStride = NumElems >> 1;
5292 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005293 for (unsigned i = 0; i < EltStride; ++i) {
5294 // If V[i+EltStride] is undef and this is the first round of mixing,
5295 // then it is safe to just drop this shuffle: V[i] is already in the
5296 // right place, the one element (since it's the first round) being
5297 // inserted as undef can be dropped. This isn't safe for successive
5298 // rounds because they will permute elements within both vectors.
5299 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5300 EltStride == NumElems/2)
5301 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005302
Chris Lattner6e80e442010-08-28 17:15:43 +00005303 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005304 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005305 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005306 }
5307 return V[0];
5308 }
Dan Gohman475871a2008-07-27 21:46:04 +00005309 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005310}
5311
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005312// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5313// them in a MMX register. This is better than doing a stack convert.
5314static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005315 DebugLoc dl = Op.getDebugLoc();
5316 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005317
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005318 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5319 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5320 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005321 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005322 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5323 InVec = Op.getOperand(1);
5324 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5325 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005326 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005327 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5328 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5329 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005330 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005331 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5332 Mask[0] = 0; Mask[1] = 2;
5333 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5334 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005335 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005336}
5337
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005338// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5339// to create 256-bit vectors from two other 128-bit ones.
5340static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5341 DebugLoc dl = Op.getDebugLoc();
5342 EVT ResVT = Op.getValueType();
5343
5344 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5345
5346 SDValue V1 = Op.getOperand(0);
5347 SDValue V2 = Op.getOperand(1);
5348 unsigned NumElems = ResVT.getVectorNumElements();
5349
5350 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5351 DAG.getConstant(0, MVT::i32), DAG, dl);
5352 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5353 DAG, dl);
5354}
5355
5356SDValue
5357X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005358 EVT ResVT = Op.getValueType();
5359
5360 assert(Op.getNumOperands() == 2);
5361 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5362 "Unsupported CONCAT_VECTORS for value type");
5363
5364 // We support concatenate two MMX registers and place them in a MMX register.
5365 // This is better than doing a stack convert.
5366 if (ResVT.is128BitVector())
5367 return LowerMMXCONCAT_VECTORS(Op, DAG);
5368
5369 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5370 // from two other 128-bit ones.
5371 return LowerAVXCONCAT_VECTORS(Op, DAG);
5372}
5373
Nate Begemanb9a47b82009-02-23 08:49:38 +00005374// v8i16 shuffles - Prefer shuffles in the following order:
5375// 1. [all] pshuflw, pshufhw, optional move
5376// 2. [ssse3] 1 x pshufb
5377// 3. [ssse3] 2 x pshufb + 1 x por
5378// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005379SDValue
5380X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5381 SelectionDAG &DAG) const {
5382 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005383 SDValue V1 = SVOp->getOperand(0);
5384 SDValue V2 = SVOp->getOperand(1);
5385 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005386 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005387
Nate Begemanb9a47b82009-02-23 08:49:38 +00005388 // Determine if more than 1 of the words in each of the low and high quadwords
5389 // of the result come from the same quadword of one of the two inputs. Undef
5390 // mask values count as coming from any quadword, for better codegen.
5391 SmallVector<unsigned, 4> LoQuad(4);
5392 SmallVector<unsigned, 4> HiQuad(4);
5393 BitVector InputQuads(4);
5394 for (unsigned i = 0; i < 8; ++i) {
5395 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005396 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005397 MaskVals.push_back(EltIdx);
5398 if (EltIdx < 0) {
5399 ++Quad[0];
5400 ++Quad[1];
5401 ++Quad[2];
5402 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005403 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005404 }
5405 ++Quad[EltIdx / 4];
5406 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005407 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005408
Nate Begemanb9a47b82009-02-23 08:49:38 +00005409 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005410 unsigned MaxQuad = 1;
5411 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005412 if (LoQuad[i] > MaxQuad) {
5413 BestLoQuad = i;
5414 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005415 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005416 }
5417
Nate Begemanb9a47b82009-02-23 08:49:38 +00005418 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005419 MaxQuad = 1;
5420 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005421 if (HiQuad[i] > MaxQuad) {
5422 BestHiQuad = i;
5423 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005424 }
5425 }
5426
Nate Begemanb9a47b82009-02-23 08:49:38 +00005427 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005428 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005429 // single pshufb instruction is necessary. If There are more than 2 input
5430 // quads, disable the next transformation since it does not help SSSE3.
5431 bool V1Used = InputQuads[0] || InputQuads[1];
5432 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005433 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005434 if (InputQuads.count() == 2 && V1Used && V2Used) {
5435 BestLoQuad = InputQuads.find_first();
5436 BestHiQuad = InputQuads.find_next(BestLoQuad);
5437 }
5438 if (InputQuads.count() > 2) {
5439 BestLoQuad = -1;
5440 BestHiQuad = -1;
5441 }
5442 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005443
Nate Begemanb9a47b82009-02-23 08:49:38 +00005444 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5445 // the shuffle mask. If a quad is scored as -1, that means that it contains
5446 // words from all 4 input quadwords.
5447 SDValue NewV;
5448 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005449 SmallVector<int, 8> MaskV;
5450 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5451 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005452 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005453 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5454 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5455 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005456
Nate Begemanb9a47b82009-02-23 08:49:38 +00005457 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5458 // source words for the shuffle, to aid later transformations.
5459 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005460 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005461 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005462 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005463 if (idx != (int)i)
5464 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005465 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005466 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005467 AllWordsInNewV = false;
5468 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005469 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005470
Nate Begemanb9a47b82009-02-23 08:49:38 +00005471 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5472 if (AllWordsInNewV) {
5473 for (int i = 0; i != 8; ++i) {
5474 int idx = MaskVals[i];
5475 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005476 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005477 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005478 if ((idx != i) && idx < 4)
5479 pshufhw = false;
5480 if ((idx != i) && idx > 3)
5481 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005482 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005483 V1 = NewV;
5484 V2Used = false;
5485 BestLoQuad = 0;
5486 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005487 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005488
Nate Begemanb9a47b82009-02-23 08:49:38 +00005489 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5490 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005491 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005492 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5493 unsigned TargetMask = 0;
5494 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005495 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005496 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5497 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5498 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005499 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005500 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005501 }
Eric Christopherfd179292009-08-27 18:07:15 +00005502
Nate Begemanb9a47b82009-02-23 08:49:38 +00005503 // If we have SSSE3, and all words of the result are from 1 input vector,
5504 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5505 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005506 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005507 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005508
Nate Begemanb9a47b82009-02-23 08:49:38 +00005509 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005510 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005511 // mask, and elements that come from V1 in the V2 mask, so that the two
5512 // results can be OR'd together.
5513 bool TwoInputs = V1Used && V2Used;
5514 for (unsigned i = 0; i != 8; ++i) {
5515 int EltIdx = MaskVals[i] * 2;
5516 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005517 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5518 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005519 continue;
5520 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005521 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5522 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005523 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005524 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005525 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005526 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005527 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005528 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005529 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005530
Nate Begemanb9a47b82009-02-23 08:49:38 +00005531 // Calculate the shuffle mask for the second input, shuffle it, and
5532 // OR it with the first shuffled input.
5533 pshufbMask.clear();
5534 for (unsigned i = 0; i != 8; ++i) {
5535 int EltIdx = MaskVals[i] * 2;
5536 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005537 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5538 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005539 continue;
5540 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005541 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5542 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005543 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005544 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005545 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005546 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005547 MVT::v16i8, &pshufbMask[0], 16));
5548 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005549 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005550 }
5551
5552 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5553 // and update MaskVals with new element order.
5554 BitVector InOrder(8);
5555 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005556 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005557 for (int i = 0; i != 4; ++i) {
5558 int idx = MaskVals[i];
5559 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005560 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005561 InOrder.set(i);
5562 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005563 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005564 InOrder.set(i);
5565 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005566 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005567 }
5568 }
5569 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005570 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005571 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005572 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005573
5574 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5575 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5576 NewV.getOperand(0),
5577 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5578 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005579 }
Eric Christopherfd179292009-08-27 18:07:15 +00005580
Nate Begemanb9a47b82009-02-23 08:49:38 +00005581 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5582 // and update MaskVals with the new element order.
5583 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005584 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005585 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005586 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005587 for (unsigned i = 4; i != 8; ++i) {
5588 int idx = MaskVals[i];
5589 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005590 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005591 InOrder.set(i);
5592 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005593 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005594 InOrder.set(i);
5595 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005596 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005597 }
5598 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005599 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005600 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005601
5602 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5603 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5604 NewV.getOperand(0),
5605 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5606 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005607 }
Eric Christopherfd179292009-08-27 18:07:15 +00005608
Nate Begemanb9a47b82009-02-23 08:49:38 +00005609 // In case BestHi & BestLo were both -1, which means each quadword has a word
5610 // from each of the four input quadwords, calculate the InOrder bitvector now
5611 // before falling through to the insert/extract cleanup.
5612 if (BestLoQuad == -1 && BestHiQuad == -1) {
5613 NewV = V1;
5614 for (int i = 0; i != 8; ++i)
5615 if (MaskVals[i] < 0 || MaskVals[i] == i)
5616 InOrder.set(i);
5617 }
Eric Christopherfd179292009-08-27 18:07:15 +00005618
Nate Begemanb9a47b82009-02-23 08:49:38 +00005619 // The other elements are put in the right place using pextrw and pinsrw.
5620 for (unsigned i = 0; i != 8; ++i) {
5621 if (InOrder[i])
5622 continue;
5623 int EltIdx = MaskVals[i];
5624 if (EltIdx < 0)
5625 continue;
5626 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005627 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005628 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005629 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005630 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005631 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005632 DAG.getIntPtrConstant(i));
5633 }
5634 return NewV;
5635}
5636
5637// v16i8 shuffles - Prefer shuffles in the following order:
5638// 1. [ssse3] 1 x pshufb
5639// 2. [ssse3] 2 x pshufb + 1 x por
5640// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5641static
Nate Begeman9008ca62009-04-27 18:41:29 +00005642SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005643 SelectionDAG &DAG,
5644 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005645 SDValue V1 = SVOp->getOperand(0);
5646 SDValue V2 = SVOp->getOperand(1);
5647 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005648 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005649 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005650
Nate Begemanb9a47b82009-02-23 08:49:38 +00005651 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005652 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005653 // present, fall back to case 3.
5654 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5655 bool V1Only = true;
5656 bool V2Only = true;
5657 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005658 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005659 if (EltIdx < 0)
5660 continue;
5661 if (EltIdx < 16)
5662 V2Only = false;
5663 else
5664 V1Only = false;
5665 }
Eric Christopherfd179292009-08-27 18:07:15 +00005666
Nate Begemanb9a47b82009-02-23 08:49:38 +00005667 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5668 if (TLI.getSubtarget()->hasSSSE3()) {
5669 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005670
Nate Begemanb9a47b82009-02-23 08:49:38 +00005671 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005672 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005673 //
5674 // Otherwise, we have elements from both input vectors, and must zero out
5675 // elements that come from V2 in the first mask, and V1 in the second mask
5676 // so that we can OR them together.
5677 bool TwoInputs = !(V1Only || V2Only);
5678 for (unsigned i = 0; i != 16; ++i) {
5679 int EltIdx = MaskVals[i];
5680 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005681 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005682 continue;
5683 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005684 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005685 }
5686 // If all the elements are from V2, assign it to V1 and return after
5687 // building the first pshufb.
5688 if (V2Only)
5689 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005690 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005691 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005692 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005693 if (!TwoInputs)
5694 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005695
Nate Begemanb9a47b82009-02-23 08:49:38 +00005696 // Calculate the shuffle mask for the second input, shuffle it, and
5697 // OR it with the first shuffled input.
5698 pshufbMask.clear();
5699 for (unsigned i = 0; i != 16; ++i) {
5700 int EltIdx = MaskVals[i];
5701 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005702 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005703 continue;
5704 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005705 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005706 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005707 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005708 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005709 MVT::v16i8, &pshufbMask[0], 16));
5710 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005711 }
Eric Christopherfd179292009-08-27 18:07:15 +00005712
Nate Begemanb9a47b82009-02-23 08:49:38 +00005713 // No SSSE3 - Calculate in place words and then fix all out of place words
5714 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5715 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005716 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5717 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005718 SDValue NewV = V2Only ? V2 : V1;
5719 for (int i = 0; i != 8; ++i) {
5720 int Elt0 = MaskVals[i*2];
5721 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005722
Nate Begemanb9a47b82009-02-23 08:49:38 +00005723 // This word of the result is all undef, skip it.
5724 if (Elt0 < 0 && Elt1 < 0)
5725 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005726
Nate Begemanb9a47b82009-02-23 08:49:38 +00005727 // This word of the result is already in the correct place, skip it.
5728 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5729 continue;
5730 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5731 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005732
Nate Begemanb9a47b82009-02-23 08:49:38 +00005733 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5734 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5735 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005736
5737 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5738 // using a single extract together, load it and store it.
5739 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005740 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005741 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005742 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005743 DAG.getIntPtrConstant(i));
5744 continue;
5745 }
5746
Nate Begemanb9a47b82009-02-23 08:49:38 +00005747 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005748 // source byte is not also odd, shift the extracted word left 8 bits
5749 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005750 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005751 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005752 DAG.getIntPtrConstant(Elt1 / 2));
5753 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005754 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005755 DAG.getConstant(8,
5756 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005757 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005758 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5759 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005760 }
5761 // If Elt0 is defined, extract it from the appropriate source. If the
5762 // source byte is not also even, shift the extracted word right 8 bits. If
5763 // Elt1 was also defined, OR the extracted values together before
5764 // inserting them in the result.
5765 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005766 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005767 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5768 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005769 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005770 DAG.getConstant(8,
5771 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005772 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005773 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5774 DAG.getConstant(0x00FF, MVT::i16));
5775 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005776 : InsElt0;
5777 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005778 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005779 DAG.getIntPtrConstant(i));
5780 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005781 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005782}
5783
Evan Cheng7a831ce2007-12-15 03:00:47 +00005784/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005785/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005786/// done when every pair / quad of shuffle mask elements point to elements in
5787/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005788/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005789static
Nate Begeman9008ca62009-04-27 18:41:29 +00005790SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005791 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005792 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005793 SDValue V1 = SVOp->getOperand(0);
5794 SDValue V2 = SVOp->getOperand(1);
5795 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005796 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005797 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005798 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005799 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005800 case MVT::v4f32: NewVT = MVT::v2f64; break;
5801 case MVT::v4i32: NewVT = MVT::v2i64; break;
5802 case MVT::v8i16: NewVT = MVT::v4i32; break;
5803 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005804 }
5805
Nate Begeman9008ca62009-04-27 18:41:29 +00005806 int Scale = NumElems / NewWidth;
5807 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005808 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005809 int StartIdx = -1;
5810 for (int j = 0; j < Scale; ++j) {
5811 int EltIdx = SVOp->getMaskElt(i+j);
5812 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005813 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005814 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005815 StartIdx = EltIdx - (EltIdx % Scale);
5816 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005817 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005818 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005819 if (StartIdx == -1)
5820 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005821 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005822 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005823 }
5824
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005825 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5826 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005827 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005828}
5829
Evan Chengd880b972008-05-09 21:53:03 +00005830/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005831///
Owen Andersone50ed302009-08-10 22:56:29 +00005832static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005833 SDValue SrcOp, SelectionDAG &DAG,
5834 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005835 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005836 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005837 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005838 LD = dyn_cast<LoadSDNode>(SrcOp);
5839 if (!LD) {
5840 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5841 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005842 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005843 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005844 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005845 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005846 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005847 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005848 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005849 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005850 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5851 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5852 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005853 SrcOp.getOperand(0)
5854 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005855 }
5856 }
5857 }
5858
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005859 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005860 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005861 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005862 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005863}
5864
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005865/// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
5866/// shuffle node referes to only one lane in the sources.
5867static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
5868 EVT VT = SVOp->getValueType(0);
5869 int NumElems = VT.getVectorNumElements();
5870 int HalfSize = NumElems/2;
5871 SmallVector<int, 16> M;
5872 SVOp->getMask(M);
5873 bool MatchA = false, MatchB = false;
5874
5875 for (int l = 0; l < NumElems*2; l += HalfSize) {
5876 if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
5877 MatchA = true;
5878 break;
5879 }
5880 }
5881
5882 for (int l = 0; l < NumElems*2; l += HalfSize) {
5883 if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
5884 MatchB = true;
5885 break;
5886 }
5887 }
5888
5889 return MatchA && MatchB;
5890}
5891
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005892/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5893/// which could not be matched by any known target speficic shuffle
5894static SDValue
5895LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005896 if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
5897 // If each half of a vector shuffle node referes to only one lane in the
5898 // source vectors, extract each used 128-bit lane and shuffle them using
5899 // 128-bit shuffles. Then, concatenate the results. Otherwise leave
5900 // the work to the legalizer.
5901 DebugLoc dl = SVOp->getDebugLoc();
5902 EVT VT = SVOp->getValueType(0);
5903 int NumElems = VT.getVectorNumElements();
5904 int HalfSize = NumElems/2;
5905
5906 // Extract the reference for each half
5907 int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
5908 int FstVecOpNum = 0, SndVecOpNum = 0;
5909 for (int i = 0; i < HalfSize; ++i) {
5910 int Elt = SVOp->getMaskElt(i);
5911 if (SVOp->getMaskElt(i) < 0)
5912 continue;
5913 FstVecOpNum = Elt/NumElems;
5914 FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5915 break;
5916 }
5917 for (int i = HalfSize; i < NumElems; ++i) {
5918 int Elt = SVOp->getMaskElt(i);
5919 if (SVOp->getMaskElt(i) < 0)
5920 continue;
5921 SndVecOpNum = Elt/NumElems;
5922 SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5923 break;
5924 }
5925
5926 // Extract the subvectors
5927 SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
5928 DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
5929 SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
5930 DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
5931
5932 // Generate 128-bit shuffles
5933 SmallVector<int, 16> MaskV1, MaskV2;
5934 for (int i = 0; i < HalfSize; ++i) {
5935 int Elt = SVOp->getMaskElt(i);
5936 MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5937 }
5938 for (int i = HalfSize; i < NumElems; ++i) {
5939 int Elt = SVOp->getMaskElt(i);
5940 MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5941 }
5942
5943 EVT NVT = V1.getValueType();
5944 V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
5945 V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
5946
5947 // Concatenate the result back
5948 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
5949 DAG.getConstant(0, MVT::i32), DAG, dl);
5950 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5951 DAG, dl);
5952 }
5953
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005954 return SDValue();
5955}
5956
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005957/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5958/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005959static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005960LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005961 SDValue V1 = SVOp->getOperand(0);
5962 SDValue V2 = SVOp->getOperand(1);
5963 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005964 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005965
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005966 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5967
Evan Chengace3c172008-07-22 21:13:36 +00005968 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005969 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005970 SmallVector<int, 8> Mask1(4U, -1);
5971 SmallVector<int, 8> PermMask;
5972 SVOp->getMask(PermMask);
5973
Evan Chengace3c172008-07-22 21:13:36 +00005974 unsigned NumHi = 0;
5975 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005976 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005977 int Idx = PermMask[i];
5978 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005979 Locs[i] = std::make_pair(-1, -1);
5980 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005981 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5982 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005983 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005984 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005985 NumLo++;
5986 } else {
5987 Locs[i] = std::make_pair(1, NumHi);
5988 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005989 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005990 NumHi++;
5991 }
5992 }
5993 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005994
Evan Chengace3c172008-07-22 21:13:36 +00005995 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005996 // If no more than two elements come from either vector. This can be
5997 // implemented with two shuffles. First shuffle gather the elements.
5998 // The second shuffle, which takes the first shuffle as both of its
5999 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006000 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006001
Nate Begeman9008ca62009-04-27 18:41:29 +00006002 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00006003
Evan Chengace3c172008-07-22 21:13:36 +00006004 for (unsigned i = 0; i != 4; ++i) {
6005 if (Locs[i].first == -1)
6006 continue;
6007 else {
6008 unsigned Idx = (i < 2) ? 0 : 4;
6009 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006010 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006011 }
6012 }
6013
Nate Begeman9008ca62009-04-27 18:41:29 +00006014 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006015 } else if (NumLo == 3 || NumHi == 3) {
6016 // Otherwise, we must have three elements from one vector, call it X, and
6017 // one element from the other, call it Y. First, use a shufps to build an
6018 // intermediate vector with the one element from Y and the element from X
6019 // that will be in the same half in the final destination (the indexes don't
6020 // matter). Then, use a shufps to build the final vector, taking the half
6021 // containing the element from Y from the intermediate, and the other half
6022 // from X.
6023 if (NumHi == 3) {
6024 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00006025 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006026 std::swap(V1, V2);
6027 }
6028
6029 // Find the element from V2.
6030 unsigned HiIndex;
6031 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006032 int Val = PermMask[HiIndex];
6033 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006034 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006035 if (Val >= 4)
6036 break;
6037 }
6038
Nate Begeman9008ca62009-04-27 18:41:29 +00006039 Mask1[0] = PermMask[HiIndex];
6040 Mask1[1] = -1;
6041 Mask1[2] = PermMask[HiIndex^1];
6042 Mask1[3] = -1;
6043 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006044
6045 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006046 Mask1[0] = PermMask[0];
6047 Mask1[1] = PermMask[1];
6048 Mask1[2] = HiIndex & 1 ? 6 : 4;
6049 Mask1[3] = HiIndex & 1 ? 4 : 6;
6050 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006051 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006052 Mask1[0] = HiIndex & 1 ? 2 : 0;
6053 Mask1[1] = HiIndex & 1 ? 0 : 2;
6054 Mask1[2] = PermMask[2];
6055 Mask1[3] = PermMask[3];
6056 if (Mask1[2] >= 0)
6057 Mask1[2] += 4;
6058 if (Mask1[3] >= 0)
6059 Mask1[3] += 4;
6060 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006061 }
Evan Chengace3c172008-07-22 21:13:36 +00006062 }
6063
6064 // Break it into (shuffle shuffle_hi, shuffle_lo).
6065 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00006066 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00006067 SmallVector<int,8> LoMask(4U, -1);
6068 SmallVector<int,8> HiMask(4U, -1);
6069
6070 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006071 unsigned MaskIdx = 0;
6072 unsigned LoIdx = 0;
6073 unsigned HiIdx = 2;
6074 for (unsigned i = 0; i != 4; ++i) {
6075 if (i == 2) {
6076 MaskPtr = &HiMask;
6077 MaskIdx = 1;
6078 LoIdx = 0;
6079 HiIdx = 2;
6080 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006081 int Idx = PermMask[i];
6082 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006083 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006084 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006085 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006086 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006087 LoIdx++;
6088 } else {
6089 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006090 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006091 HiIdx++;
6092 }
6093 }
6094
Nate Begeman9008ca62009-04-27 18:41:29 +00006095 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6096 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6097 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00006098 for (unsigned i = 0; i != 4; ++i) {
6099 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006100 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00006101 } else {
6102 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006103 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00006104 }
6105 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006106 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006107}
6108
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006109static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006110 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006111 V = V.getOperand(0);
6112 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6113 V = V.getOperand(0);
6114 if (MayFoldLoad(V))
6115 return true;
6116 return false;
6117}
6118
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006119// FIXME: the version above should always be used. Since there's
6120// a bug where several vector shuffles can't be folded because the
6121// DAG is not updated during lowering and a node claims to have two
6122// uses while it only has one, use this version, and let isel match
6123// another instruction if the load really happens to have more than
6124// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00006125// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006126static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006127 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006128 V = V.getOperand(0);
6129 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6130 V = V.getOperand(0);
6131 if (ISD::isNormalLoad(V.getNode()))
6132 return true;
6133 return false;
6134}
6135
6136/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
6137/// a vector extract, and if both can be later optimized into a single load.
6138/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
6139/// here because otherwise a target specific shuffle node is going to be
6140/// emitted for this shuffle, and the optimization not done.
6141/// FIXME: This is probably not the best approach, but fix the problem
6142/// until the right path is decided.
6143static
6144bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
6145 const TargetLowering &TLI) {
6146 EVT VT = V.getValueType();
6147 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
6148
6149 // Be sure that the vector shuffle is present in a pattern like this:
6150 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
6151 if (!V.hasOneUse())
6152 return false;
6153
6154 SDNode *N = *V.getNode()->use_begin();
6155 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
6156 return false;
6157
6158 SDValue EltNo = N->getOperand(1);
6159 if (!isa<ConstantSDNode>(EltNo))
6160 return false;
6161
6162 // If the bit convert changed the number of elements, it is unsafe
6163 // to examine the mask.
6164 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006165 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006166 EVT SrcVT = V.getOperand(0).getValueType();
6167 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
6168 return false;
6169 V = V.getOperand(0);
6170 HasShuffleIntoBitcast = true;
6171 }
6172
6173 // Select the input vector, guarding against out of range extract vector.
6174 unsigned NumElems = VT.getVectorNumElements();
6175 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6176 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
6177 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
6178
6179 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006180 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006181 V = V.getOperand(0);
6182
6183 if (ISD::isNormalLoad(V.getNode())) {
6184 // Is the original load suitable?
6185 LoadSDNode *LN0 = cast<LoadSDNode>(V);
6186
6187 // FIXME: avoid the multi-use bug that is preventing lots of
6188 // of foldings to be detected, this is still wrong of course, but
6189 // give the temporary desired behavior, and if it happens that
6190 // the load has real more uses, during isel it will not fold, and
6191 // will generate poor code.
6192 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
6193 return false;
6194
6195 if (!HasShuffleIntoBitcast)
6196 return true;
6197
6198 // If there's a bitcast before the shuffle, check if the load type and
6199 // alignment is valid.
6200 unsigned Align = LN0->getAlignment();
6201 unsigned NewAlign =
6202 TLI.getTargetData()->getABITypeAlignment(
6203 VT.getTypeForEVT(*DAG.getContext()));
6204
6205 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
6206 return false;
6207 }
6208
6209 return true;
6210}
6211
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006212static
Evan Cheng835580f2010-10-07 20:50:20 +00006213SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6214 EVT VT = Op.getValueType();
6215
6216 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006217 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6218 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006219 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6220 V1, DAG));
6221}
6222
6223static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006224SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6225 bool HasSSE2) {
6226 SDValue V1 = Op.getOperand(0);
6227 SDValue V2 = Op.getOperand(1);
6228 EVT VT = Op.getValueType();
6229
6230 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6231
6232 if (HasSSE2 && VT == MVT::v2f64)
6233 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6234
6235 // v4f32 or v4i32
6236 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
6237}
6238
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006239static
6240SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6241 SDValue V1 = Op.getOperand(0);
6242 SDValue V2 = Op.getOperand(1);
6243 EVT VT = Op.getValueType();
6244
6245 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6246 "unsupported shuffle type");
6247
6248 if (V2.getOpcode() == ISD::UNDEF)
6249 V2 = V1;
6250
6251 // v4i32 or v4f32
6252 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6253}
6254
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006255static inline unsigned getSHUFPOpcode(EVT VT) {
6256 switch(VT.getSimpleVT().SimpleTy) {
6257 case MVT::v8i32: // Use fp unit for int unpack.
6258 case MVT::v8f32:
6259 case MVT::v4i32: // Use fp unit for int unpack.
6260 case MVT::v4f32: return X86ISD::SHUFPS;
6261 case MVT::v4i64: // Use fp unit for int unpack.
6262 case MVT::v4f64:
6263 case MVT::v2i64: // Use fp unit for int unpack.
6264 case MVT::v2f64: return X86ISD::SHUFPD;
6265 default:
6266 llvm_unreachable("Unknown type for shufp*");
6267 }
6268 return 0;
6269}
6270
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006271static
6272SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6273 SDValue V1 = Op.getOperand(0);
6274 SDValue V2 = Op.getOperand(1);
6275 EVT VT = Op.getValueType();
6276 unsigned NumElems = VT.getVectorNumElements();
6277
6278 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6279 // operand of these instructions is only memory, so check if there's a
6280 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6281 // same masks.
6282 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006283
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006284 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006285 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006286 CanFoldLoad = true;
6287
6288 // When V1 is a load, it can be folded later into a store in isel, example:
6289 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6290 // turns into:
6291 // (MOVLPSmr addr:$src1, VR128:$src2)
6292 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006293 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006294 CanFoldLoad = true;
6295
Eric Christopher893a8822011-02-20 05:04:42 +00006296 // Both of them can't be memory operations though.
6297 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
6298 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00006299
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006300 if (CanFoldLoad) {
6301 if (HasSSE2 && NumElems == 2)
6302 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6303
6304 if (NumElems == 4)
6305 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6306 }
6307
6308 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6309 // movl and movlp will both match v2i64, but v2i64 is never matched by
6310 // movl earlier because we make it strict to avoid messing with the movlp load
6311 // folding logic (see the code above getMOVLP call). Match it here then,
6312 // this is horrible, but will stay like this until we move all shuffle
6313 // matching to x86 specific nodes. Note that for the 1st condition all
6314 // types are matched with movsd.
6315 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
6316 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6317 else if (HasSSE2)
6318 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6319
6320
6321 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6322
6323 // Invert the operand order and use SHUFPS to match it.
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006324 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V2, V1,
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006325 X86::getShuffleSHUFImmediate(SVOp), DAG);
6326}
6327
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006328static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006329 switch(VT.getSimpleVT().SimpleTy) {
6330 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
6331 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006332 case MVT::v4f32: return X86ISD::UNPCKLPS;
6333 case MVT::v2f64: return X86ISD::UNPCKLPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006334 case MVT::v8i32: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006335 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006336 case MVT::v4i64: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006337 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006338 case MVT::v16i8: return X86ISD::PUNPCKLBW;
6339 case MVT::v8i16: return X86ISD::PUNPCKLWD;
6340 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006341 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006342 }
6343 return 0;
6344}
6345
6346static inline unsigned getUNPCKHOpcode(EVT VT) {
6347 switch(VT.getSimpleVT().SimpleTy) {
6348 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
6349 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
6350 case MVT::v4f32: return X86ISD::UNPCKHPS;
6351 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006352 case MVT::v8i32: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006353 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006354 case MVT::v4i64: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006355 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006356 case MVT::v16i8: return X86ISD::PUNPCKHBW;
6357 case MVT::v8i16: return X86ISD::PUNPCKHWD;
6358 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006359 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006360 }
6361 return 0;
6362}
6363
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006364static inline unsigned getVPERMILOpcode(EVT VT) {
6365 switch(VT.getSimpleVT().SimpleTy) {
6366 case MVT::v4i32:
6367 case MVT::v4f32: return X86ISD::VPERMILPS;
6368 case MVT::v2i64:
6369 case MVT::v2f64: return X86ISD::VPERMILPD;
6370 case MVT::v8i32:
6371 case MVT::v8f32: return X86ISD::VPERMILPSY;
6372 case MVT::v4i64:
6373 case MVT::v4f64: return X86ISD::VPERMILPDY;
6374 default:
6375 llvm_unreachable("Unknown type for vpermil");
6376 }
6377 return 0;
6378}
6379
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006380/// isVectorBroadcast - Check if the node chain is suitable to be xformed to
6381/// a vbroadcast node. The nodes are suitable whenever we can fold a load coming
6382/// from a 32 or 64 bit scalar. Update Op to the desired load to be folded.
6383static bool isVectorBroadcast(SDValue &Op) {
6384 EVT VT = Op.getValueType();
6385 bool Is256 = VT.getSizeInBits() == 256;
6386
6387 assert((VT.getSizeInBits() == 128 || Is256) &&
6388 "Unsupported type for vbroadcast node");
6389
6390 SDValue V = Op;
6391 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6392 V = V.getOperand(0);
6393
6394 if (Is256 && !(V.hasOneUse() &&
6395 V.getOpcode() == ISD::INSERT_SUBVECTOR &&
6396 V.getOperand(0).getOpcode() == ISD::UNDEF))
6397 return false;
6398
6399 if (Is256)
6400 V = V.getOperand(1);
6401 if (V.hasOneUse() && V.getOpcode() != ISD::SCALAR_TO_VECTOR)
6402 return false;
6403
6404 // Check the source scalar_to_vector type. 256-bit broadcasts are
6405 // supported for 32/64-bit sizes, while 128-bit ones are only supported
6406 // for 32-bit scalars.
6407 unsigned ScalarSize = V.getOperand(0).getValueType().getSizeInBits();
6408 if (ScalarSize != 32 && ScalarSize != 64)
6409 return false;
6410 if (!Is256 && ScalarSize == 64)
6411 return false;
6412
6413 V = V.getOperand(0);
6414 if (!MayFoldLoad(V))
6415 return false;
6416
6417 // Return the load node
6418 Op = V;
6419 return true;
6420}
6421
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006422static
6423SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006424 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006425 const X86Subtarget *Subtarget) {
6426 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6427 EVT VT = Op.getValueType();
6428 DebugLoc dl = Op.getDebugLoc();
6429 SDValue V1 = Op.getOperand(0);
6430 SDValue V2 = Op.getOperand(1);
6431
6432 if (isZeroShuffle(SVOp))
6433 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
6434
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006435 // Handle splat operations
6436 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006437 unsigned NumElem = VT.getVectorNumElements();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006438 int Size = VT.getSizeInBits();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006439 // Special case, this is the only place now where it's allowed to return
6440 // a vector_shuffle operation without using a target specific node, because
6441 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6442 // this be moved to DAGCombine instead?
6443 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006444 return Op;
6445
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006446 // Use vbroadcast whenever the splat comes from a foldable load
6447 if (Subtarget->hasAVX() && isVectorBroadcast(V1))
6448 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, V1);
6449
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006450 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006451 if ((Size == 128 && NumElem <= 4) ||
6452 (Size == 256 && NumElem < 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006453 return SDValue();
6454
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006455 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006456 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006457 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006458
6459 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6460 // do it!
6461 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6462 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6463 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006464 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006465 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6466 // FIXME: Figure out a cleaner way to do this.
6467 // Try to make use of movq to zero out the top part.
6468 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6469 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6470 if (NewOp.getNode()) {
6471 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6472 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6473 DAG, Subtarget, dl);
6474 }
6475 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6476 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6477 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6478 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6479 DAG, Subtarget, dl);
6480 }
6481 }
6482 return SDValue();
6483}
6484
Dan Gohman475871a2008-07-27 21:46:04 +00006485SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006486X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006487 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006488 SDValue V1 = Op.getOperand(0);
6489 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006490 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006491 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006492 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006493 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006494 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6495 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006496 bool V1IsSplat = false;
6497 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006498 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006499 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006500 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006501 MachineFunction &MF = DAG.getMachineFunction();
6502 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006503
Dale Johannesen0488fb62010-09-30 23:57:10 +00006504 // Shuffle operations on MMX not supported.
6505 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006506 return Op;
6507
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006508 // Vector shuffle lowering takes 3 steps:
6509 //
6510 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6511 // narrowing and commutation of operands should be handled.
6512 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6513 // shuffle nodes.
6514 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6515 // so the shuffle can be broken into other shuffles and the legalizer can
6516 // try the lowering again.
6517 //
6518 // The general ideia is that no vector_shuffle operation should be left to
6519 // be matched during isel, all of them must be converted to a target specific
6520 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006521
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006522 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6523 // narrowing and commutation of operands should be handled. The actual code
6524 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006525 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006526 if (NewOp.getNode())
6527 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006528
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006529 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6530 // unpckh_undef). Only use pshufd if speed is more important than size.
6531 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006532 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006533 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006534 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006535
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006536 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006537 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006538 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006539
Dale Johannesen0488fb62010-09-30 23:57:10 +00006540 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006541 return getMOVHighToLow(Op, dl, DAG);
6542
6543 // Use to match splats
6544 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6545 (VT == MVT::v2f64 || VT == MVT::v2i64))
6546 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6547
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006548 if (X86::isPSHUFDMask(SVOp)) {
6549 // The actual implementation will match the mask in the if above and then
6550 // during isel it can match several different instructions, not only pshufd
6551 // as its name says, sad but true, emulate the behavior for now...
6552 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6553 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6554
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006555 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6556
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006557 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006558 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6559
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006560 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V1,
6561 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006562 }
Eric Christopherfd179292009-08-27 18:07:15 +00006563
Evan Chengf26ffe92008-05-29 08:22:04 +00006564 // Check if this can be converted into a logical shift.
6565 bool isLeft = false;
6566 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006567 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006568 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006569 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006570 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006571 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006572 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006573 EVT EltVT = VT.getVectorElementType();
6574 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006575 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006576 }
Eric Christopherfd179292009-08-27 18:07:15 +00006577
Nate Begeman9008ca62009-04-27 18:41:29 +00006578 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006579 if (V1IsUndef)
6580 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006581 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006582 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006583 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006584 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006585 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6586
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006587 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006588 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6589 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006590 }
Eric Christopherfd179292009-08-27 18:07:15 +00006591
Nate Begeman9008ca62009-04-27 18:41:29 +00006592 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006593 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6594 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006595
Dale Johannesen0488fb62010-09-30 23:57:10 +00006596 if (X86::isMOVHLPSMask(SVOp))
6597 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006598
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006599 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006600 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006601
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006602 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006603 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006604
Dale Johannesen0488fb62010-09-30 23:57:10 +00006605 if (X86::isMOVLPMask(SVOp))
6606 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006607
Nate Begeman9008ca62009-04-27 18:41:29 +00006608 if (ShouldXformToMOVHLPS(SVOp) ||
6609 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6610 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006611
Evan Chengf26ffe92008-05-29 08:22:04 +00006612 if (isShift) {
6613 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006614 EVT EltVT = VT.getVectorElementType();
6615 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006616 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006617 }
Eric Christopherfd179292009-08-27 18:07:15 +00006618
Evan Cheng9eca5e82006-10-25 21:49:50 +00006619 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006620 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6621 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006622 V1IsSplat = isSplatVector(V1.getNode());
6623 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006624
Chris Lattner8a594482007-11-25 00:24:49 +00006625 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006626 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006627 Op = CommuteVectorShuffle(SVOp, DAG);
6628 SVOp = cast<ShuffleVectorSDNode>(Op);
6629 V1 = SVOp->getOperand(0);
6630 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006631 std::swap(V1IsSplat, V2IsSplat);
6632 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006633 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006634 }
6635
Nate Begeman9008ca62009-04-27 18:41:29 +00006636 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6637 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006638 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006639 return V1;
6640 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6641 // the instruction selector will not match, so get a canonical MOVL with
6642 // swapped operands to undo the commute.
6643 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006644 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006645
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006646 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006647 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006648
6649 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006650 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006651
Evan Cheng9bbbb982006-10-25 20:48:19 +00006652 if (V2IsSplat) {
6653 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006654 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006655 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006656 SDValue NewMask = NormalizeMask(SVOp, DAG);
6657 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6658 if (NSVOp != SVOp) {
6659 if (X86::isUNPCKLMask(NSVOp, true)) {
6660 return NewMask;
6661 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6662 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006663 }
6664 }
6665 }
6666
Evan Cheng9eca5e82006-10-25 21:49:50 +00006667 if (Commuted) {
6668 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006669 // FIXME: this seems wrong.
6670 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6671 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006672
6673 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006674 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006675
6676 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006677 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006678 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006679
Nate Begeman9008ca62009-04-27 18:41:29 +00006680 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006681 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006682 return CommuteVectorShuffle(SVOp, DAG);
6683
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006684 // The checks below are all present in isShuffleMaskLegal, but they are
6685 // inlined here right now to enable us to directly emit target specific
6686 // nodes, and remove one by one until they don't return Op anymore.
6687 SmallVector<int, 16> M;
6688 SVOp->getMask(M);
6689
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006690 if (isPALIGNRMask(M, VT, HasSSSE3))
6691 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6692 X86::getShufflePALIGNRImmediate(SVOp),
6693 DAG);
6694
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006695 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6696 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006697 if (VT == MVT::v2f64)
6698 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006699 if (VT == MVT::v2i64)
6700 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6701 }
6702
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006703 if (isPSHUFHWMask(M, VT))
6704 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6705 X86::getShufflePSHUFHWImmediate(SVOp),
6706 DAG);
6707
6708 if (isPSHUFLWMask(M, VT))
6709 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6710 X86::getShufflePSHUFLWImmediate(SVOp),
6711 DAG);
6712
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006713 if (isSHUFPMask(M, VT))
6714 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6715 X86::getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006716
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006717 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006718 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006719 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006720 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006721
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006722 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006723 // Generate target specific nodes for 128 or 256-bit shuffles only
6724 // supported in the AVX instruction set.
6725 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006726
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00006727 // Handle VMOVDDUPY permutations
6728 if (isMOVDDUPYMask(SVOp, Subtarget))
6729 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6730
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006731 // Handle VPERMILPS* permutations
6732 if (isVPERMILPSMask(M, VT, Subtarget))
6733 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6734 getShuffleVPERMILPSImmediate(SVOp), DAG);
6735
6736 // Handle VPERMILPD* permutations
6737 if (isVPERMILPDMask(M, VT, Subtarget))
6738 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6739 getShuffleVPERMILPDImmediate(SVOp), DAG);
6740
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00006741 // Handle VPERM2F128 permutations
6742 if (isVPERM2F128Mask(M, VT, Subtarget))
6743 return getTargetShuffleNode(X86ISD::VPERM2F128, dl, VT, V1, V2,
6744 getShuffleVPERM2F128Immediate(SVOp), DAG);
6745
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006746 // Handle VSHUFPSY permutations
6747 if (isVSHUFPSYMask(M, VT, Subtarget))
6748 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6749 getShuffleVSHUFPSYImmediate(SVOp), DAG);
6750
6751 // Handle VSHUFPDY permutations
6752 if (isVSHUFPDYMask(M, VT, Subtarget))
6753 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6754 getShuffleVSHUFPDYImmediate(SVOp), DAG);
6755
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006756 //===--------------------------------------------------------------------===//
6757 // Since no target specific shuffle was selected for this generic one,
6758 // lower it into other known shuffles. FIXME: this isn't true yet, but
6759 // this is the plan.
6760 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006761
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006762 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6763 if (VT == MVT::v8i16) {
6764 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6765 if (NewOp.getNode())
6766 return NewOp;
6767 }
6768
6769 if (VT == MVT::v16i8) {
6770 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6771 if (NewOp.getNode())
6772 return NewOp;
6773 }
6774
6775 // Handle all 128-bit wide vectors with 4 elements, and match them with
6776 // several different shuffle types.
6777 if (NumElems == 4 && VT.getSizeInBits() == 128)
6778 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6779
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006780 // Handle general 256-bit shuffles
6781 if (VT.is256BitVector())
6782 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6783
Dan Gohman475871a2008-07-27 21:46:04 +00006784 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006785}
6786
Dan Gohman475871a2008-07-27 21:46:04 +00006787SDValue
6788X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006789 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006790 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006791 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006792
6793 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6794 return SDValue();
6795
Duncan Sands83ec4b62008-06-06 12:08:01 +00006796 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006797 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006798 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006799 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006800 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006801 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006802 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006803 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6804 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6805 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006806 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6807 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006808 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006809 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006810 Op.getOperand(0)),
6811 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006812 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006813 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006814 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006815 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006816 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006817 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006818 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6819 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006820 // result has a single use which is a store or a bitcast to i32. And in
6821 // the case of a store, it's not worth it if the index is a constant 0,
6822 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006823 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006824 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006825 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006826 if ((User->getOpcode() != ISD::STORE ||
6827 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6828 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006829 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006830 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006831 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006832 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006833 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006834 Op.getOperand(0)),
6835 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006836 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006837 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006838 // ExtractPS works with constant index.
6839 if (isa<ConstantSDNode>(Op.getOperand(1)))
6840 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006841 }
Dan Gohman475871a2008-07-27 21:46:04 +00006842 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006843}
6844
6845
Dan Gohman475871a2008-07-27 21:46:04 +00006846SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006847X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6848 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006849 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006850 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006851
David Greene74a579d2011-02-10 16:57:36 +00006852 SDValue Vec = Op.getOperand(0);
6853 EVT VecVT = Vec.getValueType();
6854
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006855 // If this is a 256-bit vector result, first extract the 128-bit vector and
6856 // then extract the element from the 128-bit vector.
6857 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006858 DebugLoc dl = Op.getNode()->getDebugLoc();
6859 unsigned NumElems = VecVT.getVectorNumElements();
6860 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006861 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6862
6863 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006864 bool Upper = IdxVal >= NumElems/2;
6865 Vec = Extract128BitVector(Vec,
6866 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006867
David Greene74a579d2011-02-10 16:57:36 +00006868 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006869 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006870 }
6871
6872 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6873
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006874 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006875 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006876 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006877 return Res;
6878 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006879
Owen Andersone50ed302009-08-10 22:56:29 +00006880 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006881 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006882 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006883 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006884 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006885 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006886 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006887 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6888 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006889 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006890 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006891 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006892 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006893 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006894 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006895 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006896 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006897 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006898 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006899 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006900 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006901 if (Idx == 0)
6902 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006903
Evan Cheng0db9fe62006-04-25 20:13:52 +00006904 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006905 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006906 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006907 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006908 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006909 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006910 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006911 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006912 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6913 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6914 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006915 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006916 if (Idx == 0)
6917 return Op;
6918
6919 // UNPCKHPD the element to the lowest double word, then movsd.
6920 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6921 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006922 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006923 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006924 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006925 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006926 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006927 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006928 }
6929
Dan Gohman475871a2008-07-27 21:46:04 +00006930 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006931}
6932
Dan Gohman475871a2008-07-27 21:46:04 +00006933SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006934X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6935 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006936 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006937 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006938 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006939
Dan Gohman475871a2008-07-27 21:46:04 +00006940 SDValue N0 = Op.getOperand(0);
6941 SDValue N1 = Op.getOperand(1);
6942 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006943
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006944 if (VT.getSizeInBits() == 256)
6945 return SDValue();
6946
Dan Gohman8a55ce42009-09-23 21:02:20 +00006947 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006948 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006949 unsigned Opc;
6950 if (VT == MVT::v8i16)
6951 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006952 else if (VT == MVT::v16i8)
6953 Opc = X86ISD::PINSRB;
6954 else
6955 Opc = X86ISD::PINSRB;
6956
Nate Begeman14d12ca2008-02-11 04:19:36 +00006957 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6958 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006959 if (N1.getValueType() != MVT::i32)
6960 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6961 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006962 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006963 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006964 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006965 // Bits [7:6] of the constant are the source select. This will always be
6966 // zero here. The DAG Combiner may combine an extract_elt index into these
6967 // bits. For example (insert (extract, 3), 2) could be matched by putting
6968 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006969 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006970 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006971 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006972 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006973 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006974 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006975 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006976 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006977 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006978 // PINSR* works with constant index.
6979 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006980 }
Dan Gohman475871a2008-07-27 21:46:04 +00006981 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006982}
6983
Dan Gohman475871a2008-07-27 21:46:04 +00006984SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006985X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006986 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006987 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006988
David Greene6b381262011-02-09 15:32:06 +00006989 DebugLoc dl = Op.getDebugLoc();
6990 SDValue N0 = Op.getOperand(0);
6991 SDValue N1 = Op.getOperand(1);
6992 SDValue N2 = Op.getOperand(2);
6993
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006994 // If this is a 256-bit vector result, first extract the 128-bit vector,
6995 // insert the element into the extracted half and then place it back.
6996 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006997 if (!isa<ConstantSDNode>(N2))
6998 return SDValue();
6999
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007000 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007001 unsigned NumElems = VT.getVectorNumElements();
7002 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007003 bool Upper = IdxVal >= NumElems/2;
7004 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
7005 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007006
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007007 // Insert the element into the desired half.
7008 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
7009 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00007010
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007011 // Insert the changed part back to the 256-bit vector
7012 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007013 }
7014
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007015 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007016 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7017
Dan Gohman8a55ce42009-09-23 21:02:20 +00007018 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007019 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007020
Dan Gohman8a55ce42009-09-23 21:02:20 +00007021 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007022 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7023 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007024 if (N1.getValueType() != MVT::i32)
7025 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7026 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007027 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007028 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007029 }
Dan Gohman475871a2008-07-27 21:46:04 +00007030 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007031}
7032
Dan Gohman475871a2008-07-27 21:46:04 +00007033SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007034X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007035 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007036 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00007037 EVT OpVT = Op.getValueType();
7038
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007039 // If this is a 256-bit vector result, first insert into a 128-bit
7040 // vector and then insert into the 256-bit vector.
7041 if (OpVT.getSizeInBits() > 128) {
7042 // Insert into a 128-bit vector.
7043 EVT VT128 = EVT::getVectorVT(*Context,
7044 OpVT.getVectorElementType(),
7045 OpVT.getVectorNumElements() / 2);
7046
7047 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7048
7049 // Insert the 128-bit vector.
7050 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
7051 DAG.getConstant(0, MVT::i32),
7052 DAG, dl);
7053 }
7054
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007055 if (Op.getValueType() == MVT::v1i64 &&
7056 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007057 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007058
Owen Anderson825b72b2009-08-11 20:47:22 +00007059 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00007060 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
7061 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007062 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00007063 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007064}
7065
David Greene91585092011-01-26 15:38:49 +00007066// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7067// a simple subregister reference or explicit instructions to grab
7068// upper bits of a vector.
7069SDValue
7070X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7071 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00007072 DebugLoc dl = Op.getNode()->getDebugLoc();
7073 SDValue Vec = Op.getNode()->getOperand(0);
7074 SDValue Idx = Op.getNode()->getOperand(1);
7075
7076 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
7077 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
7078 return Extract128BitVector(Vec, Idx, DAG, dl);
7079 }
David Greene91585092011-01-26 15:38:49 +00007080 }
7081 return SDValue();
7082}
7083
David Greenecfe33c42011-01-26 19:13:22 +00007084// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7085// simple superregister reference or explicit instructions to insert
7086// the upper bits of a vector.
7087SDValue
7088X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7089 if (Subtarget->hasAVX()) {
7090 DebugLoc dl = Op.getNode()->getDebugLoc();
7091 SDValue Vec = Op.getNode()->getOperand(0);
7092 SDValue SubVec = Op.getNode()->getOperand(1);
7093 SDValue Idx = Op.getNode()->getOperand(2);
7094
7095 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
7096 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00007097 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007098 }
7099 }
7100 return SDValue();
7101}
7102
Bill Wendling056292f2008-09-16 21:48:12 +00007103// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7104// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7105// one of the above mentioned nodes. It has to be wrapped because otherwise
7106// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7107// be used to form addressing mode. These wrapped nodes will be selected
7108// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007109SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007110X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007111 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007112
Chris Lattner41621a22009-06-26 19:22:52 +00007113 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7114 // global base reg.
7115 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007116 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007117 CodeModel::Model M = getTargetMachine().getCodeModel();
7118
Chris Lattner4f066492009-07-11 20:29:19 +00007119 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007120 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007121 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007122 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007123 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007124 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007125 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007126
Evan Cheng1606e8e2009-03-13 07:51:59 +00007127 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007128 CP->getAlignment(),
7129 CP->getOffset(), OpFlag);
7130 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00007131 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007132 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007133 if (OpFlag) {
7134 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007135 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007136 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007137 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007138 }
7139
7140 return Result;
7141}
7142
Dan Gohmand858e902010-04-17 15:26:15 +00007143SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007144 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007145
Chris Lattner18c59872009-06-27 04:16:01 +00007146 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7147 // global base reg.
7148 unsigned char OpFlag = 0;
7149 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007150 CodeModel::Model M = getTargetMachine().getCodeModel();
7151
Chris Lattner4f066492009-07-11 20:29:19 +00007152 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007153 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007154 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007155 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007156 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007157 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007158 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007159
Chris Lattner18c59872009-06-27 04:16:01 +00007160 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7161 OpFlag);
7162 DebugLoc DL = JT->getDebugLoc();
7163 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007164
Chris Lattner18c59872009-06-27 04:16:01 +00007165 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007166 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007167 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7168 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007169 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007170 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007171
Chris Lattner18c59872009-06-27 04:16:01 +00007172 return Result;
7173}
7174
7175SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007176X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007177 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007178
Chris Lattner18c59872009-06-27 04:16:01 +00007179 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7180 // global base reg.
7181 unsigned char OpFlag = 0;
7182 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007183 CodeModel::Model M = getTargetMachine().getCodeModel();
7184
Chris Lattner4f066492009-07-11 20:29:19 +00007185 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007186 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7187 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7188 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007189 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007190 } else if (Subtarget->isPICStyleGOT()) {
7191 OpFlag = X86II::MO_GOT;
7192 } else if (Subtarget->isPICStyleStubPIC()) {
7193 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7194 } else if (Subtarget->isPICStyleStubNoDynamic()) {
7195 OpFlag = X86II::MO_DARWIN_NONLAZY;
7196 }
Eric Christopherfd179292009-08-27 18:07:15 +00007197
Chris Lattner18c59872009-06-27 04:16:01 +00007198 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00007199
Chris Lattner18c59872009-06-27 04:16:01 +00007200 DebugLoc DL = Op.getDebugLoc();
7201 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007202
7203
Chris Lattner18c59872009-06-27 04:16:01 +00007204 // With PIC, the address is actually $g + Offset.
7205 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00007206 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00007207 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7208 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007209 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007210 Result);
7211 }
Eric Christopherfd179292009-08-27 18:07:15 +00007212
Eli Friedman586272d2011-08-11 01:48:05 +00007213 // For symbols that require a load from a stub to get the address, emit the
7214 // load.
7215 if (isGlobalStubReference(OpFlag))
7216 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7217 MachinePointerInfo::getGOT(), false, false, 0);
7218
Chris Lattner18c59872009-06-27 04:16:01 +00007219 return Result;
7220}
7221
Dan Gohman475871a2008-07-27 21:46:04 +00007222SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007223X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007224 // Create the TargetBlockAddressAddress node.
7225 unsigned char OpFlags =
7226 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00007227 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00007228 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00007229 DebugLoc dl = Op.getDebugLoc();
7230 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7231 /*isTarget=*/true, OpFlags);
7232
Dan Gohmanf705adb2009-10-30 01:28:02 +00007233 if (Subtarget->isPICStyleRIPRel() &&
7234 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007235 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7236 else
7237 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007238
Dan Gohman29cbade2009-11-20 23:18:13 +00007239 // With PIC, the address is actually $g + Offset.
7240 if (isGlobalRelativeToPICBase(OpFlags)) {
7241 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7242 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7243 Result);
7244 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007245
7246 return Result;
7247}
7248
7249SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007250X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00007251 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00007252 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007253 // Create the TargetGlobalAddress node, folding in the constant
7254 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007255 unsigned char OpFlags =
7256 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007257 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007258 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007259 if (OpFlags == X86II::MO_NO_FLAG &&
7260 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007261 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007262 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007263 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007264 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007265 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007266 }
Eric Christopherfd179292009-08-27 18:07:15 +00007267
Chris Lattner4f066492009-07-11 20:29:19 +00007268 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007269 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007270 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7271 else
7272 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007273
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007274 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007275 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007276 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7277 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007278 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007279 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007280
Chris Lattner36c25012009-07-10 07:34:39 +00007281 // For globals that require a load from a stub to get the address, emit the
7282 // load.
7283 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007284 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007285 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007286
Dan Gohman6520e202008-10-18 02:06:02 +00007287 // If there was a non-zero offset that we didn't fold, create an explicit
7288 // addition for it.
7289 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007290 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007291 DAG.getConstant(Offset, getPointerTy()));
7292
Evan Cheng0db9fe62006-04-25 20:13:52 +00007293 return Result;
7294}
7295
Evan Chengda43bcf2008-09-24 00:05:32 +00007296SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007297X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007298 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007299 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007300 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007301}
7302
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007303static SDValue
7304GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007305 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00007306 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007307 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007308 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007309 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007310 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007311 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007312 GA->getOffset(),
7313 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007314 if (InFlag) {
7315 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007316 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007317 } else {
7318 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007319 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007320 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007321
7322 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007323 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007324
Rafael Espindola15f1b662009-04-24 12:59:40 +00007325 SDValue Flag = Chain.getValue(1);
7326 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007327}
7328
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007329// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007330static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007331LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007332 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007333 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007334 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7335 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007336 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007337 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007338 InFlag = Chain.getValue(1);
7339
Chris Lattnerb903bed2009-06-26 21:20:29 +00007340 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007341}
7342
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007343// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007344static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007345LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007346 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007347 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7348 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007349}
7350
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007351// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7352// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007353static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007354 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00007355 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007356 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007357
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007358 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7359 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7360 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007361
Michael J. Spencerec38de22010-10-10 22:04:20 +00007362 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007363 DAG.getIntPtrConstant(0),
7364 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007365
Chris Lattnerb903bed2009-06-26 21:20:29 +00007366 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007367 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7368 // initialexec.
7369 unsigned WrapperKind = X86ISD::Wrapper;
7370 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007371 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00007372 } else if (is64Bit) {
7373 assert(model == TLSModel::InitialExec);
7374 OperandFlags = X86II::MO_GOTTPOFF;
7375 WrapperKind = X86ISD::WrapperRIP;
7376 } else {
7377 assert(model == TLSModel::InitialExec);
7378 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00007379 }
Eric Christopherfd179292009-08-27 18:07:15 +00007380
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007381 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7382 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007383 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007384 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007385 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007386 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007387
Rafael Espindola9a580232009-02-27 13:37:18 +00007388 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007389 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007390 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007391
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007392 // The address of the thread local variable is the add of the thread
7393 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007394 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007395}
7396
Dan Gohman475871a2008-07-27 21:46:04 +00007397SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007398X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007399
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007400 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007401 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007402
Eric Christopher30ef0e52010-06-03 04:07:48 +00007403 if (Subtarget->isTargetELF()) {
7404 // TODO: implement the "local dynamic" model
7405 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00007406
Eric Christopher30ef0e52010-06-03 04:07:48 +00007407 // If GV is an alias then use the aliasee for determining
7408 // thread-localness.
7409 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7410 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007411
7412 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00007413 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007414
Eric Christopher30ef0e52010-06-03 04:07:48 +00007415 switch (model) {
7416 case TLSModel::GeneralDynamic:
7417 case TLSModel::LocalDynamic: // not implemented
7418 if (Subtarget->is64Bit())
7419 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7420 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007421
Eric Christopher30ef0e52010-06-03 04:07:48 +00007422 case TLSModel::InitialExec:
7423 case TLSModel::LocalExec:
7424 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7425 Subtarget->is64Bit());
7426 }
7427 } else if (Subtarget->isTargetDarwin()) {
7428 // Darwin only has one model of TLS. Lower to that.
7429 unsigned char OpFlag = 0;
7430 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7431 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007432
Eric Christopher30ef0e52010-06-03 04:07:48 +00007433 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7434 // global base reg.
7435 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7436 !Subtarget->is64Bit();
7437 if (PIC32)
7438 OpFlag = X86II::MO_TLVP_PIC_BASE;
7439 else
7440 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007441 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007442 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007443 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007444 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007445 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007446
Eric Christopher30ef0e52010-06-03 04:07:48 +00007447 // With PIC32, the address is actually $g + Offset.
7448 if (PIC32)
7449 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7450 DAG.getNode(X86ISD::GlobalBaseReg,
7451 DebugLoc(), getPointerTy()),
7452 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007453
Eric Christopher30ef0e52010-06-03 04:07:48 +00007454 // Lowering the machine isd will make sure everything is in the right
7455 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007456 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007457 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007458 SDValue Args[] = { Chain, Offset };
7459 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007460
Eric Christopher30ef0e52010-06-03 04:07:48 +00007461 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7462 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7463 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007464
Eric Christopher30ef0e52010-06-03 04:07:48 +00007465 // And our return value (tls address) is in the standard call return value
7466 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007467 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7468 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007469 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007470
Eric Christopher30ef0e52010-06-03 04:07:48 +00007471 assert(false &&
7472 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007473
Torok Edwinc23197a2009-07-14 16:55:14 +00007474 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007475 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007476}
7477
Evan Cheng0db9fe62006-04-25 20:13:52 +00007478
Nadav Rotem43012222011-05-11 08:12:09 +00007479/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007480/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007481SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007482 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007483 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007484 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007485 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007486 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007487 SDValue ShOpLo = Op.getOperand(0);
7488 SDValue ShOpHi = Op.getOperand(1);
7489 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007490 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007491 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007492 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007493
Dan Gohman475871a2008-07-27 21:46:04 +00007494 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007495 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007496 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7497 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007498 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007499 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7500 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007501 }
Evan Chenge3413162006-01-09 18:33:28 +00007502
Owen Anderson825b72b2009-08-11 20:47:22 +00007503 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7504 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007505 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007506 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007507
Dan Gohman475871a2008-07-27 21:46:04 +00007508 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007509 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007510 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7511 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007512
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007513 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007514 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7515 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007516 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007517 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7518 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007519 }
7520
Dan Gohman475871a2008-07-27 21:46:04 +00007521 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007522 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007523}
Evan Chenga3195e82006-01-12 22:54:21 +00007524
Dan Gohmand858e902010-04-17 15:26:15 +00007525SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7526 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007527 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007528
Dale Johannesen0488fb62010-09-30 23:57:10 +00007529 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007530 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007531
Owen Anderson825b72b2009-08-11 20:47:22 +00007532 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007533 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007534
Eli Friedman36df4992009-05-27 00:47:34 +00007535 // These are really Legal; return the operand so the caller accepts it as
7536 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007537 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007538 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007539 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007540 Subtarget->is64Bit()) {
7541 return Op;
7542 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007543
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007544 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007545 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007546 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007547 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007548 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007549 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007550 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007551 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007552 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007553 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7554}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007555
Owen Andersone50ed302009-08-10 22:56:29 +00007556SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007557 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007558 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007559 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007560 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007561 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007562 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007563 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007564 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007565 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007566 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007567
Chris Lattner492a43e2010-09-22 01:28:21 +00007568 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007569
Stuart Hastings84be9582011-06-02 15:57:11 +00007570 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7571 MachineMemOperand *MMO;
7572 if (FI) {
7573 int SSFI = FI->getIndex();
7574 MMO =
7575 DAG.getMachineFunction()
7576 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7577 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7578 } else {
7579 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7580 StackSlot = StackSlot.getOperand(1);
7581 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007582 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007583 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7584 X86ISD::FILD, DL,
7585 Tys, Ops, array_lengthof(Ops),
7586 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007587
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007588 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007589 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007590 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007591
7592 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7593 // shouldn't be necessary except that RFP cannot be live across
7594 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007595 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007596 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7597 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007598 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007599 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007600 SDValue Ops[] = {
7601 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7602 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007603 MachineMemOperand *MMO =
7604 DAG.getMachineFunction()
7605 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007606 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007607
Chris Lattner492a43e2010-09-22 01:28:21 +00007608 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7609 Ops, array_lengthof(Ops),
7610 Op.getValueType(), MMO);
7611 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007612 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007613 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007614 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007615
Evan Cheng0db9fe62006-04-25 20:13:52 +00007616 return Result;
7617}
7618
Bill Wendling8b8a6362009-01-17 03:56:04 +00007619// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007620SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7621 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007622 // This algorithm is not obvious. Here it is in C code, more or less:
7623 /*
7624 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7625 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7626 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007627
Bill Wendling8b8a6362009-01-17 03:56:04 +00007628 // Copy ints to xmm registers.
7629 __m128i xh = _mm_cvtsi32_si128( hi );
7630 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007631
Bill Wendling8b8a6362009-01-17 03:56:04 +00007632 // Combine into low half of a single xmm register.
7633 __m128i x = _mm_unpacklo_epi32( xh, xl );
7634 __m128d d;
7635 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007636
Bill Wendling8b8a6362009-01-17 03:56:04 +00007637 // Merge in appropriate exponents to give the integer bits the right
7638 // magnitude.
7639 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007640
Bill Wendling8b8a6362009-01-17 03:56:04 +00007641 // Subtract away the biases to deal with the IEEE-754 double precision
7642 // implicit 1.
7643 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007644
Bill Wendling8b8a6362009-01-17 03:56:04 +00007645 // All conversions up to here are exact. The correctly rounded result is
7646 // calculated using the current rounding mode using the following
7647 // horizontal add.
7648 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7649 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7650 // store doesn't really need to be here (except
7651 // maybe to zero the other double)
7652 return sd;
7653 }
7654 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007655
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007656 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007657 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007658
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007659 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007660 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007661 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7662 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7663 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7664 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007665 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007666 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007667
Bill Wendling8b8a6362009-01-17 03:56:04 +00007668 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007669 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007670 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007671 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007672 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007673 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007674 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007675
Owen Anderson825b72b2009-08-11 20:47:22 +00007676 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7677 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007678 Op.getOperand(0),
7679 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007680 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7681 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007682 Op.getOperand(0),
7683 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007684 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7685 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007686 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007687 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007688 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007689 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007690 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007691 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007692 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007693 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007694
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007695 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007696 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007697 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7698 DAG.getUNDEF(MVT::v2f64), ShufMask);
7699 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7700 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007701 DAG.getIntPtrConstant(0));
7702}
7703
Bill Wendling8b8a6362009-01-17 03:56:04 +00007704// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007705SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7706 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007707 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007708 // FP constant to bias correct the final result.
7709 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007710 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007711
7712 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007713 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007714 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007715
Owen Anderson825b72b2009-08-11 20:47:22 +00007716 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007717 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007718 DAG.getIntPtrConstant(0));
7719
7720 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007721 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007722 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007723 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007724 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007725 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007726 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007727 MVT::v2f64, Bias)));
7728 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007729 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007730 DAG.getIntPtrConstant(0));
7731
7732 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007733 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007734
7735 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007736 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007737
Owen Anderson825b72b2009-08-11 20:47:22 +00007738 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007739 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007740 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007741 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007742 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007743 }
7744
7745 // Handle final rounding.
7746 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007747}
7748
Dan Gohmand858e902010-04-17 15:26:15 +00007749SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7750 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007751 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007752 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007753
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007754 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007755 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7756 // the optimization here.
7757 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007758 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007759
Owen Andersone50ed302009-08-10 22:56:29 +00007760 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007761 EVT DstVT = Op.getValueType();
7762 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007763 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007764 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007765 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007766
7767 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007768 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007769 if (SrcVT == MVT::i32) {
7770 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7771 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7772 getPointerTy(), StackSlot, WordOff);
7773 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007774 StackSlot, MachinePointerInfo(),
7775 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007776 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007777 OffsetSlot, MachinePointerInfo(),
7778 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007779 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7780 return Fild;
7781 }
7782
7783 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7784 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007785 StackSlot, MachinePointerInfo(),
7786 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007787 // For i64 source, we need to add the appropriate power of 2 if the input
7788 // was negative. This is the same as the optimization in
7789 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7790 // we must be careful to do the computation in x87 extended precision, not
7791 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007792 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7793 MachineMemOperand *MMO =
7794 DAG.getMachineFunction()
7795 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7796 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007797
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007798 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7799 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007800 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7801 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007802
7803 APInt FF(32, 0x5F800000ULL);
7804
7805 // Check whether the sign bit is set.
7806 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7807 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7808 ISD::SETLT);
7809
7810 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7811 SDValue FudgePtr = DAG.getConstantPool(
7812 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7813 getPointerTy());
7814
7815 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7816 SDValue Zero = DAG.getIntPtrConstant(0);
7817 SDValue Four = DAG.getIntPtrConstant(4);
7818 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7819 Zero, Four);
7820 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7821
7822 // Load the value out, extending it from f32 to f80.
7823 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007824 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007825 FudgePtr, MachinePointerInfo::getConstantPool(),
7826 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007827 // Extend everything to 80 bits to force it to be done on x87.
7828 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7829 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007830}
7831
Dan Gohman475871a2008-07-27 21:46:04 +00007832std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007833FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007834 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007835
Owen Andersone50ed302009-08-10 22:56:29 +00007836 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007837
7838 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007839 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7840 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007841 }
7842
Owen Anderson825b72b2009-08-11 20:47:22 +00007843 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7844 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007845 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007846
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007847 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007848 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007849 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007850 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007851 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007852 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007853 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007854 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007855
Evan Cheng87c89352007-10-15 20:11:21 +00007856 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7857 // stack slot.
7858 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007859 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007860 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007861 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007862
Michael J. Spencerec38de22010-10-10 22:04:20 +00007863
7864
Evan Cheng0db9fe62006-04-25 20:13:52 +00007865 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007866 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007867 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007868 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7869 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7870 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007871 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007872
Dan Gohman475871a2008-07-27 21:46:04 +00007873 SDValue Chain = DAG.getEntryNode();
7874 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007875 EVT TheVT = Op.getOperand(0).getValueType();
7876 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007877 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007878 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007879 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007880 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007881 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007882 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007883 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007884 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007885
Chris Lattner492a43e2010-09-22 01:28:21 +00007886 MachineMemOperand *MMO =
7887 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7888 MachineMemOperand::MOLoad, MemSize, MemSize);
7889 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7890 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007891 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007892 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007893 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7894 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007895
Chris Lattner07290932010-09-22 01:05:16 +00007896 MachineMemOperand *MMO =
7897 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7898 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007899
Evan Cheng0db9fe62006-04-25 20:13:52 +00007900 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007901 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007902 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7903 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007904
Chris Lattner27a6c732007-11-24 07:07:01 +00007905 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007906}
7907
Dan Gohmand858e902010-04-17 15:26:15 +00007908SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7909 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007910 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007911 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007912
Eli Friedman948e95a2009-05-23 09:59:16 +00007913 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007914 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007915 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7916 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007917
Chris Lattner27a6c732007-11-24 07:07:01 +00007918 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007919 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007920 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007921}
7922
Dan Gohmand858e902010-04-17 15:26:15 +00007923SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7924 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007925 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7926 SDValue FIST = Vals.first, StackSlot = Vals.second;
7927 assert(FIST.getNode() && "Unexpected failure");
7928
7929 // Load the result.
7930 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007931 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007932}
7933
Dan Gohmand858e902010-04-17 15:26:15 +00007934SDValue X86TargetLowering::LowerFABS(SDValue Op,
7935 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007936 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007937 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007938 EVT VT = Op.getValueType();
7939 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007940 if (VT.isVector())
7941 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007942 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007943 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007944 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007945 CV.push_back(C);
7946 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007947 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007948 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007949 CV.push_back(C);
7950 CV.push_back(C);
7951 CV.push_back(C);
7952 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007953 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007954 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007955 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007956 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007957 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007958 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007959 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007960}
7961
Dan Gohmand858e902010-04-17 15:26:15 +00007962SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007963 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007964 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007965 EVT VT = Op.getValueType();
7966 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007967 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007968 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007969 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007970 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007971 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007972 CV.push_back(C);
7973 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007974 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007975 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007976 CV.push_back(C);
7977 CV.push_back(C);
7978 CV.push_back(C);
7979 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007980 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007981 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007982 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007983 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007984 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007985 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007986 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007987 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007988 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007989 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007990 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007991 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007992 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007993 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007994 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007995}
7996
Dan Gohmand858e902010-04-17 15:26:15 +00007997SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007998 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007999 SDValue Op0 = Op.getOperand(0);
8000 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008001 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008002 EVT VT = Op.getValueType();
8003 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00008004
8005 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008006 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008007 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008008 SrcVT = VT;
8009 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008010 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008011 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008012 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008013 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008014 }
8015
8016 // At this point the operands and the result should have the same
8017 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00008018
Evan Cheng68c47cb2007-01-05 07:55:56 +00008019 // First get the sign bit of second operand.
8020 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00008021 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008022 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
8023 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008024 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008025 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
8026 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8027 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8028 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008029 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008030 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008031 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008032 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008033 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008034 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008035 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008036
8037 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008038 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008039 // Op0 is MVT::f32, Op1 is MVT::f64.
8040 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
8041 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
8042 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008043 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00008044 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00008045 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008046 }
8047
Evan Cheng73d6cf12007-01-05 21:37:56 +00008048 // Clear first operand sign bit.
8049 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00008050 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008051 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8052 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008053 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008054 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8055 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8056 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8057 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008058 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008059 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008060 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008061 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008062 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008063 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008064 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008065
8066 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00008067 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008068}
8069
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00008070SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
8071 SDValue N0 = Op.getOperand(0);
8072 DebugLoc dl = Op.getDebugLoc();
8073 EVT VT = Op.getValueType();
8074
8075 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8076 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8077 DAG.getConstant(1, VT));
8078 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8079}
8080
Dan Gohman076aee32009-03-04 19:44:21 +00008081/// Emit nodes that will be selected as "test Op0,Op0", or something
8082/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008083SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008084 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008085 DebugLoc dl = Op.getDebugLoc();
8086
Dan Gohman31125812009-03-07 01:58:32 +00008087 // CF and OF aren't always set the way we want. Determine which
8088 // of these we need.
8089 bool NeedCF = false;
8090 bool NeedOF = false;
8091 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008092 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00008093 case X86::COND_A: case X86::COND_AE:
8094 case X86::COND_B: case X86::COND_BE:
8095 NeedCF = true;
8096 break;
8097 case X86::COND_G: case X86::COND_GE:
8098 case X86::COND_L: case X86::COND_LE:
8099 case X86::COND_O: case X86::COND_NO:
8100 NeedOF = true;
8101 break;
Dan Gohman31125812009-03-07 01:58:32 +00008102 }
8103
Dan Gohman076aee32009-03-04 19:44:21 +00008104 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00008105 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8106 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008107 if (Op.getResNo() != 0 || NeedOF || NeedCF)
8108 // Emit a CMP with 0, which is the TEST pattern.
8109 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8110 DAG.getConstant(0, Op.getValueType()));
8111
8112 unsigned Opcode = 0;
8113 unsigned NumOperands = 0;
8114 switch (Op.getNode()->getOpcode()) {
8115 case ISD::ADD:
8116 // Due to an isel shortcoming, be conservative if this add is likely to be
8117 // selected as part of a load-modify-store instruction. When the root node
8118 // in a match is a store, isel doesn't know how to remap non-chain non-flag
8119 // uses of other nodes in the match, such as the ADD in this case. This
8120 // leads to the ADD being left around and reselected, with the result being
8121 // two adds in the output. Alas, even if none our users are stores, that
8122 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
8123 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
8124 // climbing the DAG back to the root, and it doesn't seem to be worth the
8125 // effort.
8126 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00008127 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008128 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
8129 goto default_case;
8130
8131 if (ConstantSDNode *C =
8132 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
8133 // An add of one will be selected as an INC.
8134 if (C->getAPIntValue() == 1) {
8135 Opcode = X86ISD::INC;
8136 NumOperands = 1;
8137 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00008138 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008139
8140 // An add of negative one (subtract of one) will be selected as a DEC.
8141 if (C->getAPIntValue().isAllOnesValue()) {
8142 Opcode = X86ISD::DEC;
8143 NumOperands = 1;
8144 break;
8145 }
Dan Gohman076aee32009-03-04 19:44:21 +00008146 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008147
8148 // Otherwise use a regular EFLAGS-setting add.
8149 Opcode = X86ISD::ADD;
8150 NumOperands = 2;
8151 break;
8152 case ISD::AND: {
8153 // If the primary and result isn't used, don't bother using X86ISD::AND,
8154 // because a TEST instruction will be better.
8155 bool NonFlagUse = false;
8156 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8157 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8158 SDNode *User = *UI;
8159 unsigned UOpNo = UI.getOperandNo();
8160 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8161 // Look pass truncate.
8162 UOpNo = User->use_begin().getOperandNo();
8163 User = *User->use_begin();
8164 }
8165
8166 if (User->getOpcode() != ISD::BRCOND &&
8167 User->getOpcode() != ISD::SETCC &&
8168 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
8169 NonFlagUse = true;
8170 break;
8171 }
Dan Gohman076aee32009-03-04 19:44:21 +00008172 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008173
8174 if (!NonFlagUse)
8175 break;
8176 }
8177 // FALL THROUGH
8178 case ISD::SUB:
8179 case ISD::OR:
8180 case ISD::XOR:
8181 // Due to the ISEL shortcoming noted above, be conservative if this op is
8182 // likely to be selected as part of a load-modify-store instruction.
8183 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8184 UE = Op.getNode()->use_end(); UI != UE; ++UI)
8185 if (UI->getOpcode() == ISD::STORE)
8186 goto default_case;
8187
8188 // Otherwise use a regular EFLAGS-setting instruction.
8189 switch (Op.getNode()->getOpcode()) {
8190 default: llvm_unreachable("unexpected operator!");
8191 case ISD::SUB: Opcode = X86ISD::SUB; break;
8192 case ISD::OR: Opcode = X86ISD::OR; break;
8193 case ISD::XOR: Opcode = X86ISD::XOR; break;
8194 case ISD::AND: Opcode = X86ISD::AND; break;
8195 }
8196
8197 NumOperands = 2;
8198 break;
8199 case X86ISD::ADD:
8200 case X86ISD::SUB:
8201 case X86ISD::INC:
8202 case X86ISD::DEC:
8203 case X86ISD::OR:
8204 case X86ISD::XOR:
8205 case X86ISD::AND:
8206 return SDValue(Op.getNode(), 1);
8207 default:
8208 default_case:
8209 break;
Dan Gohman076aee32009-03-04 19:44:21 +00008210 }
8211
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008212 if (Opcode == 0)
8213 // Emit a CMP with 0, which is the TEST pattern.
8214 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8215 DAG.getConstant(0, Op.getValueType()));
8216
8217 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8218 SmallVector<SDValue, 4> Ops;
8219 for (unsigned i = 0; i != NumOperands; ++i)
8220 Ops.push_back(Op.getOperand(i));
8221
8222 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8223 DAG.ReplaceAllUsesWith(Op, New);
8224 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00008225}
8226
8227/// Emit nodes that will be selected as "cmp Op0,Op1", or something
8228/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008229SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008230 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008231 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8232 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00008233 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00008234
8235 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008236 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00008237}
8238
Evan Chengd40d03e2010-01-06 19:38:29 +00008239/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8240/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00008241SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8242 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008243 SDValue Op0 = And.getOperand(0);
8244 SDValue Op1 = And.getOperand(1);
8245 if (Op0.getOpcode() == ISD::TRUNCATE)
8246 Op0 = Op0.getOperand(0);
8247 if (Op1.getOpcode() == ISD::TRUNCATE)
8248 Op1 = Op1.getOperand(0);
8249
Evan Chengd40d03e2010-01-06 19:38:29 +00008250 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008251 if (Op1.getOpcode() == ISD::SHL)
8252 std::swap(Op0, Op1);
8253 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008254 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8255 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008256 // If we looked past a truncate, check that it's only truncating away
8257 // known zeros.
8258 unsigned BitWidth = Op0.getValueSizeInBits();
8259 unsigned AndBitWidth = And.getValueSizeInBits();
8260 if (BitWidth > AndBitWidth) {
8261 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8262 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8263 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8264 return SDValue();
8265 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008266 LHS = Op1;
8267 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00008268 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008269 } else if (Op1.getOpcode() == ISD::Constant) {
8270 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8271 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00008272 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
8273 LHS = AndLHS.getOperand(0);
8274 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008275 }
Evan Chengd40d03e2010-01-06 19:38:29 +00008276 }
Evan Cheng0488db92007-09-25 01:57:46 +00008277
Evan Chengd40d03e2010-01-06 19:38:29 +00008278 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00008279 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00008280 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00008281 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00008282 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00008283 // Also promote i16 to i32 for performance / code size reason.
8284 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00008285 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00008286 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00008287
Evan Chengd40d03e2010-01-06 19:38:29 +00008288 // If the operand types disagree, extend the shift amount to match. Since
8289 // BT ignores high bits (like shifts) we can use anyextend.
8290 if (LHS.getValueType() != RHS.getValueType())
8291 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008292
Evan Chengd40d03e2010-01-06 19:38:29 +00008293 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8294 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8295 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8296 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00008297 }
8298
Evan Cheng54de3ea2010-01-05 06:52:31 +00008299 return SDValue();
8300}
8301
Dan Gohmand858e902010-04-17 15:26:15 +00008302SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00008303 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8304 SDValue Op0 = Op.getOperand(0);
8305 SDValue Op1 = Op.getOperand(1);
8306 DebugLoc dl = Op.getDebugLoc();
8307 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8308
8309 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00008310 // Lower (X & (1 << N)) == 0 to BT(X, N).
8311 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8312 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00008313 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008314 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00008315 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008316 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8317 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8318 if (NewSetCC.getNode())
8319 return NewSetCC;
8320 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00008321
Chris Lattner481eebc2010-12-19 21:23:48 +00008322 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
8323 // these.
8324 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00008325 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00008326 cast<ConstantSDNode>(Op1)->isNullValue()) &&
8327 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008328
Chris Lattner481eebc2010-12-19 21:23:48 +00008329 // If the input is a setcc, then reuse the input setcc or use a new one with
8330 // the inverted condition.
8331 if (Op0.getOpcode() == X86ISD::SETCC) {
8332 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8333 bool Invert = (CC == ISD::SETNE) ^
8334 cast<ConstantSDNode>(Op1)->isNullValue();
8335 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008336
Evan Cheng2c755ba2010-02-27 07:36:59 +00008337 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00008338 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8339 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8340 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008341 }
8342
Evan Chenge5b51ac2010-04-17 06:13:15 +00008343 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00008344 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008345 if (X86CC == X86::COND_INVALID)
8346 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008347
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008348 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00008349 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008350 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00008351}
8352
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008353// Lower256IntVETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
8354// ones, and then concatenate the result back.
8355static SDValue Lower256IntVETCC(SDValue Op, SelectionDAG &DAG) {
8356 EVT VT = Op.getValueType();
8357
8358 assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::VSETCC &&
8359 "Unsupported value type for operation");
8360
8361 int NumElems = VT.getVectorNumElements();
8362 DebugLoc dl = Op.getDebugLoc();
8363 SDValue CC = Op.getOperand(2);
8364 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
8365 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
8366
8367 // Extract the LHS vectors
8368 SDValue LHS = Op.getOperand(0);
8369 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
8370 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
8371
8372 // Extract the RHS vectors
8373 SDValue RHS = Op.getOperand(1);
8374 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
8375 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
8376
8377 // Issue the operation on the smaller types and concatenate the result back
8378 MVT EltVT = VT.getVectorElementType().getSimpleVT();
8379 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8380 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8381 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8382 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8383}
8384
8385
Dan Gohmand858e902010-04-17 15:26:15 +00008386SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008387 SDValue Cond;
8388 SDValue Op0 = Op.getOperand(0);
8389 SDValue Op1 = Op.getOperand(1);
8390 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00008391 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00008392 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8393 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008394 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00008395
8396 if (isFP) {
8397 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008398 EVT EltVT = Op0.getValueType().getVectorElementType();
8399 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8400
8401 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00008402 bool Swap = false;
8403
8404 switch (SetCCOpcode) {
8405 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008406 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00008407 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008408 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00008409 case ISD::SETGT: Swap = true; // Fallthrough
8410 case ISD::SETLT:
8411 case ISD::SETOLT: SSECC = 1; break;
8412 case ISD::SETOGE:
8413 case ISD::SETGE: Swap = true; // Fallthrough
8414 case ISD::SETLE:
8415 case ISD::SETOLE: SSECC = 2; break;
8416 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008417 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00008418 case ISD::SETNE: SSECC = 4; break;
8419 case ISD::SETULE: Swap = true;
8420 case ISD::SETUGE: SSECC = 5; break;
8421 case ISD::SETULT: Swap = true;
8422 case ISD::SETUGT: SSECC = 6; break;
8423 case ISD::SETO: SSECC = 7; break;
8424 }
8425 if (Swap)
8426 std::swap(Op0, Op1);
8427
Nate Begemanfb8ead02008-07-25 19:05:58 +00008428 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00008429 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00008430 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00008431 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008432 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8433 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008434 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008435 }
8436 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00008437 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008438 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8439 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008440 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008441 }
Torok Edwinc23197a2009-07-14 16:55:14 +00008442 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00008443 }
8444 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00008445 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00008446 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008447
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008448 // Break 256-bit integer vector compare into smaller ones.
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008449 if (!isFP && VT.getSizeInBits() == 256)
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008450 return Lower256IntVETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008451
Nate Begeman30a0de92008-07-17 16:51:19 +00008452 // We are handling one of the integer comparisons here. Since SSE only has
8453 // GT and EQ comparisons for integer, swapping operands and multiple
8454 // operations may be required for some comparisons.
8455 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8456 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008457
Owen Anderson825b72b2009-08-11 20:47:22 +00008458 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00008459 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008460 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008461 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008462 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8463 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008464 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008465
Nate Begeman30a0de92008-07-17 16:51:19 +00008466 switch (SetCCOpcode) {
8467 default: break;
8468 case ISD::SETNE: Invert = true;
8469 case ISD::SETEQ: Opc = EQOpc; break;
8470 case ISD::SETLT: Swap = true;
8471 case ISD::SETGT: Opc = GTOpc; break;
8472 case ISD::SETGE: Swap = true;
8473 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8474 case ISD::SETULT: Swap = true;
8475 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8476 case ISD::SETUGE: Swap = true;
8477 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8478 }
8479 if (Swap)
8480 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008481
Nate Begeman30a0de92008-07-17 16:51:19 +00008482 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8483 // bits of the inputs before performing those operations.
8484 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008485 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008486 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8487 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008488 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008489 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8490 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008491 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8492 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008493 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008494
Dale Johannesenace16102009-02-03 19:33:06 +00008495 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008496
8497 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008498 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008499 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008500
Nate Begeman30a0de92008-07-17 16:51:19 +00008501 return Result;
8502}
Evan Cheng0488db92007-09-25 01:57:46 +00008503
Evan Cheng370e5342008-12-03 08:38:43 +00008504// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008505static bool isX86LogicalCmp(SDValue Op) {
8506 unsigned Opc = Op.getNode()->getOpcode();
8507 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8508 return true;
8509 if (Op.getResNo() == 1 &&
8510 (Opc == X86ISD::ADD ||
8511 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008512 Opc == X86ISD::ADC ||
8513 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008514 Opc == X86ISD::SMUL ||
8515 Opc == X86ISD::UMUL ||
8516 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008517 Opc == X86ISD::DEC ||
8518 Opc == X86ISD::OR ||
8519 Opc == X86ISD::XOR ||
8520 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008521 return true;
8522
Chris Lattner9637d5b2010-12-05 07:49:54 +00008523 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8524 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008525
Dan Gohman076aee32009-03-04 19:44:21 +00008526 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008527}
8528
Chris Lattnera2b56002010-12-05 01:23:24 +00008529static bool isZero(SDValue V) {
8530 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8531 return C && C->isNullValue();
8532}
8533
Chris Lattner96908b12010-12-05 02:00:51 +00008534static bool isAllOnes(SDValue V) {
8535 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8536 return C && C->isAllOnesValue();
8537}
8538
Dan Gohmand858e902010-04-17 15:26:15 +00008539SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008540 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008541 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008542 SDValue Op1 = Op.getOperand(1);
8543 SDValue Op2 = Op.getOperand(2);
8544 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008545 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008546
Dan Gohman1a492952009-10-20 16:22:37 +00008547 if (Cond.getOpcode() == ISD::SETCC) {
8548 SDValue NewCond = LowerSETCC(Cond, DAG);
8549 if (NewCond.getNode())
8550 Cond = NewCond;
8551 }
Evan Cheng734503b2006-09-11 02:19:56 +00008552
Chris Lattnera2b56002010-12-05 01:23:24 +00008553 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008554 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008555 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008556 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008557 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008558 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8559 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008560 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008561
Chris Lattnera2b56002010-12-05 01:23:24 +00008562 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008563
8564 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008565 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8566 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008567
8568 SDValue CmpOp0 = Cmp.getOperand(0);
8569 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8570 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008571
Chris Lattner96908b12010-12-05 02:00:51 +00008572 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008573 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8574 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008575
Chris Lattner96908b12010-12-05 02:00:51 +00008576 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8577 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008578
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008579 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008580 if (N2C == 0 || !N2C->isNullValue())
8581 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8582 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008583 }
8584 }
8585
Chris Lattnera2b56002010-12-05 01:23:24 +00008586 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008587 if (Cond.getOpcode() == ISD::AND &&
8588 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8589 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008590 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008591 Cond = Cond.getOperand(0);
8592 }
8593
Evan Cheng3f41d662007-10-08 22:16:29 +00008594 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8595 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008596 if (Cond.getOpcode() == X86ISD::SETCC ||
8597 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008598 CC = Cond.getOperand(0);
8599
Dan Gohman475871a2008-07-27 21:46:04 +00008600 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008601 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008602 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008603
Evan Cheng3f41d662007-10-08 22:16:29 +00008604 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008605 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008606 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008607 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008608
Chris Lattnerd1980a52009-03-12 06:52:53 +00008609 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8610 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008611 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008612 addTest = false;
8613 }
8614 }
8615
8616 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008617 // Look pass the truncate.
8618 if (Cond.getOpcode() == ISD::TRUNCATE)
8619 Cond = Cond.getOperand(0);
8620
8621 // We know the result of AND is compared against zero. Try to match
8622 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008623 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008624 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008625 if (NewSetCC.getNode()) {
8626 CC = NewSetCC.getOperand(0);
8627 Cond = NewSetCC.getOperand(1);
8628 addTest = false;
8629 }
8630 }
8631 }
8632
8633 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008634 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008635 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008636 }
8637
Benjamin Kramere915ff32010-12-22 23:09:28 +00008638 // a < b ? -1 : 0 -> RES = ~setcc_carry
8639 // a < b ? 0 : -1 -> RES = setcc_carry
8640 // a >= b ? -1 : 0 -> RES = setcc_carry
8641 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8642 if (Cond.getOpcode() == X86ISD::CMP) {
8643 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8644
8645 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8646 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8647 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8648 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8649 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8650 return DAG.getNOT(DL, Res, Res.getValueType());
8651 return Res;
8652 }
8653 }
8654
Evan Cheng0488db92007-09-25 01:57:46 +00008655 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8656 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008657 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008658 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008659 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008660}
8661
Evan Cheng370e5342008-12-03 08:38:43 +00008662// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8663// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8664// from the AND / OR.
8665static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8666 Opc = Op.getOpcode();
8667 if (Opc != ISD::OR && Opc != ISD::AND)
8668 return false;
8669 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8670 Op.getOperand(0).hasOneUse() &&
8671 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8672 Op.getOperand(1).hasOneUse());
8673}
8674
Evan Cheng961d6d42009-02-02 08:19:07 +00008675// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8676// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008677static bool isXor1OfSetCC(SDValue Op) {
8678 if (Op.getOpcode() != ISD::XOR)
8679 return false;
8680 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8681 if (N1C && N1C->getAPIntValue() == 1) {
8682 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8683 Op.getOperand(0).hasOneUse();
8684 }
8685 return false;
8686}
8687
Dan Gohmand858e902010-04-17 15:26:15 +00008688SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008689 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008690 SDValue Chain = Op.getOperand(0);
8691 SDValue Cond = Op.getOperand(1);
8692 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008693 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008694 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008695
Dan Gohman1a492952009-10-20 16:22:37 +00008696 if (Cond.getOpcode() == ISD::SETCC) {
8697 SDValue NewCond = LowerSETCC(Cond, DAG);
8698 if (NewCond.getNode())
8699 Cond = NewCond;
8700 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008701#if 0
8702 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008703 else if (Cond.getOpcode() == X86ISD::ADD ||
8704 Cond.getOpcode() == X86ISD::SUB ||
8705 Cond.getOpcode() == X86ISD::SMUL ||
8706 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008707 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008708#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008709
Evan Chengad9c0a32009-12-15 00:53:42 +00008710 // Look pass (and (setcc_carry (cmp ...)), 1).
8711 if (Cond.getOpcode() == ISD::AND &&
8712 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8713 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008714 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008715 Cond = Cond.getOperand(0);
8716 }
8717
Evan Cheng3f41d662007-10-08 22:16:29 +00008718 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8719 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008720 if (Cond.getOpcode() == X86ISD::SETCC ||
8721 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008722 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008723
Dan Gohman475871a2008-07-27 21:46:04 +00008724 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008725 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008726 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008727 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008728 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008729 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008730 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008731 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008732 default: break;
8733 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008734 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008735 // These can only come from an arithmetic instruction with overflow,
8736 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008737 Cond = Cond.getNode()->getOperand(1);
8738 addTest = false;
8739 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008740 }
Evan Cheng0488db92007-09-25 01:57:46 +00008741 }
Evan Cheng370e5342008-12-03 08:38:43 +00008742 } else {
8743 unsigned CondOpc;
8744 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8745 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008746 if (CondOpc == ISD::OR) {
8747 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8748 // two branches instead of an explicit OR instruction with a
8749 // separate test.
8750 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008751 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008752 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008753 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008754 Chain, Dest, CC, Cmp);
8755 CC = Cond.getOperand(1).getOperand(0);
8756 Cond = Cmp;
8757 addTest = false;
8758 }
8759 } else { // ISD::AND
8760 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8761 // two branches instead of an explicit AND instruction with a
8762 // separate test. However, we only do this if this block doesn't
8763 // have a fall-through edge, because this requires an explicit
8764 // jmp when the condition is false.
8765 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008766 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008767 Op.getNode()->hasOneUse()) {
8768 X86::CondCode CCode =
8769 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8770 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008771 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008772 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008773 // Look for an unconditional branch following this conditional branch.
8774 // We need this because we need to reverse the successors in order
8775 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008776 if (User->getOpcode() == ISD::BR) {
8777 SDValue FalseBB = User->getOperand(1);
8778 SDNode *NewBR =
8779 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008780 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008781 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008782 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008783
Dale Johannesene4d209d2009-02-03 20:21:25 +00008784 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008785 Chain, Dest, CC, Cmp);
8786 X86::CondCode CCode =
8787 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8788 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008789 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008790 Cond = Cmp;
8791 addTest = false;
8792 }
8793 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008794 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008795 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8796 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8797 // It should be transformed during dag combiner except when the condition
8798 // is set by a arithmetics with overflow node.
8799 X86::CondCode CCode =
8800 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8801 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008802 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008803 Cond = Cond.getOperand(0).getOperand(1);
8804 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008805 }
Evan Cheng0488db92007-09-25 01:57:46 +00008806 }
8807
8808 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008809 // Look pass the truncate.
8810 if (Cond.getOpcode() == ISD::TRUNCATE)
8811 Cond = Cond.getOperand(0);
8812
8813 // We know the result of AND is compared against zero. Try to match
8814 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008815 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008816 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8817 if (NewSetCC.getNode()) {
8818 CC = NewSetCC.getOperand(0);
8819 Cond = NewSetCC.getOperand(1);
8820 addTest = false;
8821 }
8822 }
8823 }
8824
8825 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008826 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008827 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008828 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008829 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008830 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008831}
8832
Anton Korobeynikove060b532007-04-17 19:34:00 +00008833
8834// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8835// Calls to _alloca is needed to probe the stack when allocating more than 4k
8836// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8837// that the guard pages used by the OS virtual memory manager are allocated in
8838// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008839SDValue
8840X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008841 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008842 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008843 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008844 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008845 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008846
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008847 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008848 SDValue Chain = Op.getOperand(0);
8849 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008850 // FIXME: Ensure alignment here
8851
Dan Gohman475871a2008-07-27 21:46:04 +00008852 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008853
Owen Anderson825b72b2009-08-11 20:47:22 +00008854 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008855 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008856
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008857 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008858 Flag = Chain.getValue(1);
8859
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008860 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008861
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008862 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008863 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008864
Dale Johannesendd64c412009-02-04 00:33:20 +00008865 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008866
Dan Gohman475871a2008-07-27 21:46:04 +00008867 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008868 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008869}
8870
Dan Gohmand858e902010-04-17 15:26:15 +00008871SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008872 MachineFunction &MF = DAG.getMachineFunction();
8873 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8874
Dan Gohman69de1932008-02-06 22:27:42 +00008875 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008876 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008877
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008878 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008879 // vastart just stores the address of the VarArgsFrameIndex slot into the
8880 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008881 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8882 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008883 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8884 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008885 }
8886
8887 // __va_list_tag:
8888 // gp_offset (0 - 6 * 8)
8889 // fp_offset (48 - 48 + 8 * 16)
8890 // overflow_arg_area (point to parameters coming in memory).
8891 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008892 SmallVector<SDValue, 8> MemOps;
8893 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008894 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008895 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008896 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8897 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008898 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008899 MemOps.push_back(Store);
8900
8901 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008902 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008903 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008904 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008905 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8906 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008907 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008908 MemOps.push_back(Store);
8909
8910 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008911 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008912 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008913 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8914 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008915 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8916 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008917 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008918 MemOps.push_back(Store);
8919
8920 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008921 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008922 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008923 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8924 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008925 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8926 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008927 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008928 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008929 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008930}
8931
Dan Gohmand858e902010-04-17 15:26:15 +00008932SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008933 assert(Subtarget->is64Bit() &&
8934 "LowerVAARG only handles 64-bit va_arg!");
8935 assert((Subtarget->isTargetLinux() ||
8936 Subtarget->isTargetDarwin()) &&
8937 "Unhandled target in LowerVAARG");
8938 assert(Op.getNode()->getNumOperands() == 4);
8939 SDValue Chain = Op.getOperand(0);
8940 SDValue SrcPtr = Op.getOperand(1);
8941 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8942 unsigned Align = Op.getConstantOperandVal(3);
8943 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008944
Dan Gohman320afb82010-10-12 18:00:49 +00008945 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008946 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008947 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8948 uint8_t ArgMode;
8949
8950 // Decide which area this value should be read from.
8951 // TODO: Implement the AMD64 ABI in its entirety. This simple
8952 // selection mechanism works only for the basic types.
8953 if (ArgVT == MVT::f80) {
8954 llvm_unreachable("va_arg for f80 not yet implemented");
8955 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8956 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8957 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8958 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8959 } else {
8960 llvm_unreachable("Unhandled argument type in LowerVAARG");
8961 }
8962
8963 if (ArgMode == 2) {
8964 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008965 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008966 !(DAG.getMachineFunction()
8967 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008968 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008969 }
8970
8971 // Insert VAARG_64 node into the DAG
8972 // VAARG_64 returns two values: Variable Argument Address, Chain
8973 SmallVector<SDValue, 11> InstOps;
8974 InstOps.push_back(Chain);
8975 InstOps.push_back(SrcPtr);
8976 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8977 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8978 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8979 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8980 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8981 VTs, &InstOps[0], InstOps.size(),
8982 MVT::i64,
8983 MachinePointerInfo(SV),
8984 /*Align=*/0,
8985 /*Volatile=*/false,
8986 /*ReadMem=*/true,
8987 /*WriteMem=*/true);
8988 Chain = VAARG.getValue(1);
8989
8990 // Load the next argument and return it
8991 return DAG.getLoad(ArgVT, dl,
8992 Chain,
8993 VAARG,
8994 MachinePointerInfo(),
8995 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008996}
8997
Dan Gohmand858e902010-04-17 15:26:15 +00008998SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008999 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00009000 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00009001 SDValue Chain = Op.getOperand(0);
9002 SDValue DstPtr = Op.getOperand(1);
9003 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00009004 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
9005 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00009006 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00009007
Chris Lattnere72f2022010-09-21 05:40:29 +00009008 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00009009 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00009010 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00009011 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00009012}
9013
Dan Gohman475871a2008-07-27 21:46:04 +00009014SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00009015X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009016 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009017 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009018 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00009019 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00009020 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00009021 case Intrinsic::x86_sse_comieq_ss:
9022 case Intrinsic::x86_sse_comilt_ss:
9023 case Intrinsic::x86_sse_comile_ss:
9024 case Intrinsic::x86_sse_comigt_ss:
9025 case Intrinsic::x86_sse_comige_ss:
9026 case Intrinsic::x86_sse_comineq_ss:
9027 case Intrinsic::x86_sse_ucomieq_ss:
9028 case Intrinsic::x86_sse_ucomilt_ss:
9029 case Intrinsic::x86_sse_ucomile_ss:
9030 case Intrinsic::x86_sse_ucomigt_ss:
9031 case Intrinsic::x86_sse_ucomige_ss:
9032 case Intrinsic::x86_sse_ucomineq_ss:
9033 case Intrinsic::x86_sse2_comieq_sd:
9034 case Intrinsic::x86_sse2_comilt_sd:
9035 case Intrinsic::x86_sse2_comile_sd:
9036 case Intrinsic::x86_sse2_comigt_sd:
9037 case Intrinsic::x86_sse2_comige_sd:
9038 case Intrinsic::x86_sse2_comineq_sd:
9039 case Intrinsic::x86_sse2_ucomieq_sd:
9040 case Intrinsic::x86_sse2_ucomilt_sd:
9041 case Intrinsic::x86_sse2_ucomile_sd:
9042 case Intrinsic::x86_sse2_ucomigt_sd:
9043 case Intrinsic::x86_sse2_ucomige_sd:
9044 case Intrinsic::x86_sse2_ucomineq_sd: {
9045 unsigned Opc = 0;
9046 ISD::CondCode CC = ISD::SETCC_INVALID;
9047 switch (IntNo) {
9048 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009049 case Intrinsic::x86_sse_comieq_ss:
9050 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009051 Opc = X86ISD::COMI;
9052 CC = ISD::SETEQ;
9053 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009054 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009055 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009056 Opc = X86ISD::COMI;
9057 CC = ISD::SETLT;
9058 break;
9059 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009060 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009061 Opc = X86ISD::COMI;
9062 CC = ISD::SETLE;
9063 break;
9064 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009065 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009066 Opc = X86ISD::COMI;
9067 CC = ISD::SETGT;
9068 break;
9069 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009070 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009071 Opc = X86ISD::COMI;
9072 CC = ISD::SETGE;
9073 break;
9074 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009075 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009076 Opc = X86ISD::COMI;
9077 CC = ISD::SETNE;
9078 break;
9079 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009080 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009081 Opc = X86ISD::UCOMI;
9082 CC = ISD::SETEQ;
9083 break;
9084 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009085 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009086 Opc = X86ISD::UCOMI;
9087 CC = ISD::SETLT;
9088 break;
9089 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009090 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009091 Opc = X86ISD::UCOMI;
9092 CC = ISD::SETLE;
9093 break;
9094 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009095 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009096 Opc = X86ISD::UCOMI;
9097 CC = ISD::SETGT;
9098 break;
9099 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009100 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009101 Opc = X86ISD::UCOMI;
9102 CC = ISD::SETGE;
9103 break;
9104 case Intrinsic::x86_sse_ucomineq_ss:
9105 case Intrinsic::x86_sse2_ucomineq_sd:
9106 Opc = X86ISD::UCOMI;
9107 CC = ISD::SETNE;
9108 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009109 }
Evan Cheng734503b2006-09-11 02:19:56 +00009110
Dan Gohman475871a2008-07-27 21:46:04 +00009111 SDValue LHS = Op.getOperand(1);
9112 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00009113 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00009114 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009115 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
9116 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9117 DAG.getConstant(X86CC, MVT::i8), Cond);
9118 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00009119 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009120 // ptest and testp intrinsics. The intrinsic these come from are designed to
9121 // return an integer value, not just an instruction so lower it to the ptest
9122 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00009123 case Intrinsic::x86_sse41_ptestz:
9124 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009125 case Intrinsic::x86_sse41_ptestnzc:
9126 case Intrinsic::x86_avx_ptestz_256:
9127 case Intrinsic::x86_avx_ptestc_256:
9128 case Intrinsic::x86_avx_ptestnzc_256:
9129 case Intrinsic::x86_avx_vtestz_ps:
9130 case Intrinsic::x86_avx_vtestc_ps:
9131 case Intrinsic::x86_avx_vtestnzc_ps:
9132 case Intrinsic::x86_avx_vtestz_pd:
9133 case Intrinsic::x86_avx_vtestc_pd:
9134 case Intrinsic::x86_avx_vtestnzc_pd:
9135 case Intrinsic::x86_avx_vtestz_ps_256:
9136 case Intrinsic::x86_avx_vtestc_ps_256:
9137 case Intrinsic::x86_avx_vtestnzc_ps_256:
9138 case Intrinsic::x86_avx_vtestz_pd_256:
9139 case Intrinsic::x86_avx_vtestc_pd_256:
9140 case Intrinsic::x86_avx_vtestnzc_pd_256: {
9141 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00009142 unsigned X86CC = 0;
9143 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00009144 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009145 case Intrinsic::x86_avx_vtestz_ps:
9146 case Intrinsic::x86_avx_vtestz_pd:
9147 case Intrinsic::x86_avx_vtestz_ps_256:
9148 case Intrinsic::x86_avx_vtestz_pd_256:
9149 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009150 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009151 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009152 // ZF = 1
9153 X86CC = X86::COND_E;
9154 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009155 case Intrinsic::x86_avx_vtestc_ps:
9156 case Intrinsic::x86_avx_vtestc_pd:
9157 case Intrinsic::x86_avx_vtestc_ps_256:
9158 case Intrinsic::x86_avx_vtestc_pd_256:
9159 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009160 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009161 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009162 // CF = 1
9163 X86CC = X86::COND_B;
9164 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009165 case Intrinsic::x86_avx_vtestnzc_ps:
9166 case Intrinsic::x86_avx_vtestnzc_pd:
9167 case Intrinsic::x86_avx_vtestnzc_ps_256:
9168 case Intrinsic::x86_avx_vtestnzc_pd_256:
9169 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00009170 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009171 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009172 // ZF and CF = 0
9173 X86CC = X86::COND_A;
9174 break;
9175 }
Eric Christopherfd179292009-08-27 18:07:15 +00009176
Eric Christopher71c67532009-07-29 00:28:05 +00009177 SDValue LHS = Op.getOperand(1);
9178 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009179 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
9180 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00009181 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
9182 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
9183 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00009184 }
Evan Cheng5759f972008-05-04 09:15:50 +00009185
9186 // Fix vector shift instructions where the last operand is a non-immediate
9187 // i32 value.
9188 case Intrinsic::x86_sse2_pslli_w:
9189 case Intrinsic::x86_sse2_pslli_d:
9190 case Intrinsic::x86_sse2_pslli_q:
9191 case Intrinsic::x86_sse2_psrli_w:
9192 case Intrinsic::x86_sse2_psrli_d:
9193 case Intrinsic::x86_sse2_psrli_q:
9194 case Intrinsic::x86_sse2_psrai_w:
9195 case Intrinsic::x86_sse2_psrai_d:
9196 case Intrinsic::x86_mmx_pslli_w:
9197 case Intrinsic::x86_mmx_pslli_d:
9198 case Intrinsic::x86_mmx_pslli_q:
9199 case Intrinsic::x86_mmx_psrli_w:
9200 case Intrinsic::x86_mmx_psrli_d:
9201 case Intrinsic::x86_mmx_psrli_q:
9202 case Intrinsic::x86_mmx_psrai_w:
9203 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00009204 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00009205 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00009206 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00009207
9208 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009209 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009210 switch (IntNo) {
9211 case Intrinsic::x86_sse2_pslli_w:
9212 NewIntNo = Intrinsic::x86_sse2_psll_w;
9213 break;
9214 case Intrinsic::x86_sse2_pslli_d:
9215 NewIntNo = Intrinsic::x86_sse2_psll_d;
9216 break;
9217 case Intrinsic::x86_sse2_pslli_q:
9218 NewIntNo = Intrinsic::x86_sse2_psll_q;
9219 break;
9220 case Intrinsic::x86_sse2_psrli_w:
9221 NewIntNo = Intrinsic::x86_sse2_psrl_w;
9222 break;
9223 case Intrinsic::x86_sse2_psrli_d:
9224 NewIntNo = Intrinsic::x86_sse2_psrl_d;
9225 break;
9226 case Intrinsic::x86_sse2_psrli_q:
9227 NewIntNo = Intrinsic::x86_sse2_psrl_q;
9228 break;
9229 case Intrinsic::x86_sse2_psrai_w:
9230 NewIntNo = Intrinsic::x86_sse2_psra_w;
9231 break;
9232 case Intrinsic::x86_sse2_psrai_d:
9233 NewIntNo = Intrinsic::x86_sse2_psra_d;
9234 break;
9235 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00009236 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009237 switch (IntNo) {
9238 case Intrinsic::x86_mmx_pslli_w:
9239 NewIntNo = Intrinsic::x86_mmx_psll_w;
9240 break;
9241 case Intrinsic::x86_mmx_pslli_d:
9242 NewIntNo = Intrinsic::x86_mmx_psll_d;
9243 break;
9244 case Intrinsic::x86_mmx_pslli_q:
9245 NewIntNo = Intrinsic::x86_mmx_psll_q;
9246 break;
9247 case Intrinsic::x86_mmx_psrli_w:
9248 NewIntNo = Intrinsic::x86_mmx_psrl_w;
9249 break;
9250 case Intrinsic::x86_mmx_psrli_d:
9251 NewIntNo = Intrinsic::x86_mmx_psrl_d;
9252 break;
9253 case Intrinsic::x86_mmx_psrli_q:
9254 NewIntNo = Intrinsic::x86_mmx_psrl_q;
9255 break;
9256 case Intrinsic::x86_mmx_psrai_w:
9257 NewIntNo = Intrinsic::x86_mmx_psra_w;
9258 break;
9259 case Intrinsic::x86_mmx_psrai_d:
9260 NewIntNo = Intrinsic::x86_mmx_psra_d;
9261 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00009262 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00009263 }
9264 break;
9265 }
9266 }
Mon P Wangefa42202009-09-03 19:56:25 +00009267
9268 // The vector shift intrinsics with scalars uses 32b shift amounts but
9269 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9270 // to be zero.
9271 SDValue ShOps[4];
9272 ShOps[0] = ShAmt;
9273 ShOps[1] = DAG.getConstant(0, MVT::i32);
9274 if (ShAmtVT == MVT::v4i32) {
9275 ShOps[2] = DAG.getUNDEF(MVT::i32);
9276 ShOps[3] = DAG.getUNDEF(MVT::i32);
9277 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9278 } else {
9279 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00009280// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00009281 }
9282
Owen Andersone50ed302009-08-10 22:56:29 +00009283 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009284 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009285 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009286 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00009287 Op.getOperand(1), ShAmt);
9288 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00009289 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00009290}
Evan Cheng72261582005-12-20 06:22:03 +00009291
Dan Gohmand858e902010-04-17 15:26:15 +00009292SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9293 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00009294 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9295 MFI->setReturnAddressIsTaken(true);
9296
Bill Wendling64e87322009-01-16 19:25:27 +00009297 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009298 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00009299
9300 if (Depth > 0) {
9301 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9302 SDValue Offset =
9303 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00009304 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009305 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009306 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009307 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00009308 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00009309 }
9310
9311 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00009312 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00009313 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009314 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009315}
9316
Dan Gohmand858e902010-04-17 15:26:15 +00009317SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00009318 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9319 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00009320
Owen Andersone50ed302009-08-10 22:56:29 +00009321 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009322 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00009323 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9324 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00009325 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00009326 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00009327 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9328 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00009329 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00009330 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00009331}
9332
Dan Gohman475871a2008-07-27 21:46:04 +00009333SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009334 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009335 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009336}
9337
Dan Gohmand858e902010-04-17 15:26:15 +00009338SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009339 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00009340 SDValue Chain = Op.getOperand(0);
9341 SDValue Offset = Op.getOperand(1);
9342 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009343 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009344
Dan Gohmand8816272010-08-11 18:14:00 +00009345 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9346 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9347 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009348 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009349
Dan Gohmand8816272010-08-11 18:14:00 +00009350 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9351 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009352 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009353 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9354 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00009355 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009356 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009357
Dale Johannesene4d209d2009-02-03 20:21:25 +00009358 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009359 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009360 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009361}
9362
Dan Gohman475871a2008-07-27 21:46:04 +00009363SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009364 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00009365 SDValue Root = Op.getOperand(0);
9366 SDValue Trmp = Op.getOperand(1); // trampoline
9367 SDValue FPtr = Op.getOperand(2); // nested function
9368 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009369 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009370
Dan Gohman69de1932008-02-06 22:27:42 +00009371 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009372
9373 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009374 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00009375
9376 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00009377 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
9378 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00009379
Evan Cheng0e6a0522011-07-18 20:57:22 +00009380 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9381 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00009382
9383 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9384
9385 // Load the pointer to the nested function into R11.
9386 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00009387 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00009388 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009389 Addr, MachinePointerInfo(TrmpAddr),
9390 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009391
Owen Anderson825b72b2009-08-11 20:47:22 +00009392 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9393 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009394 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9395 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00009396 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009397
9398 // Load the 'nest' parameter value into R10.
9399 // R10 is specified in X86CallingConv.td
9400 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00009401 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9402 DAG.getConstant(10, MVT::i64));
9403 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009404 Addr, MachinePointerInfo(TrmpAddr, 10),
9405 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009406
Owen Anderson825b72b2009-08-11 20:47:22 +00009407 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9408 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009409 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9410 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00009411 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009412
9413 // Jump to the nested function.
9414 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00009415 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9416 DAG.getConstant(20, MVT::i64));
9417 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009418 Addr, MachinePointerInfo(TrmpAddr, 20),
9419 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009420
9421 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00009422 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9423 DAG.getConstant(22, MVT::i64));
9424 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009425 MachinePointerInfo(TrmpAddr, 22),
9426 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009427
Dan Gohman475871a2008-07-27 21:46:04 +00009428 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009429 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009430 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009431 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00009432 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00009433 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00009434 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00009435 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009436
9437 switch (CC) {
9438 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00009439 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009440 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009441 case CallingConv::X86_StdCall: {
9442 // Pass 'nest' parameter in ECX.
9443 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009444 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009445
9446 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009447 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00009448 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009449
Chris Lattner58d74912008-03-12 17:45:29 +00009450 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00009451 unsigned InRegCount = 0;
9452 unsigned Idx = 1;
9453
9454 for (FunctionType::param_iterator I = FTy->param_begin(),
9455 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00009456 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00009457 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009458 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009459
9460 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009461 report_fatal_error("Nest register in use - reduce number of inreg"
9462 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009463 }
9464 }
9465 break;
9466 }
9467 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009468 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009469 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009470 // Pass 'nest' parameter in EAX.
9471 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009472 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009473 break;
9474 }
9475
Dan Gohman475871a2008-07-27 21:46:04 +00009476 SDValue OutChains[4];
9477 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009478
Owen Anderson825b72b2009-08-11 20:47:22 +00009479 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9480 DAG.getConstant(10, MVT::i32));
9481 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009482
Chris Lattnera62fe662010-02-05 19:20:30 +00009483 // This is storing the opcode for MOV32ri.
9484 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009485 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009486 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009487 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009488 Trmp, MachinePointerInfo(TrmpAddr),
9489 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009490
Owen Anderson825b72b2009-08-11 20:47:22 +00009491 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9492 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009493 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9494 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009495 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009496
Chris Lattnera62fe662010-02-05 19:20:30 +00009497 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009498 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9499 DAG.getConstant(5, MVT::i32));
9500 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009501 MachinePointerInfo(TrmpAddr, 5),
9502 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009503
Owen Anderson825b72b2009-08-11 20:47:22 +00009504 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9505 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009506 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9507 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009508 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009509
Dan Gohman475871a2008-07-27 21:46:04 +00009510 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009511 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009512 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009513 }
9514}
9515
Dan Gohmand858e902010-04-17 15:26:15 +00009516SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9517 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009518 /*
9519 The rounding mode is in bits 11:10 of FPSR, and has the following
9520 settings:
9521 00 Round to nearest
9522 01 Round to -inf
9523 10 Round to +inf
9524 11 Round to 0
9525
9526 FLT_ROUNDS, on the other hand, expects the following:
9527 -1 Undefined
9528 0 Round to 0
9529 1 Round to nearest
9530 2 Round to +inf
9531 3 Round to -inf
9532
9533 To perform the conversion, we do:
9534 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9535 */
9536
9537 MachineFunction &MF = DAG.getMachineFunction();
9538 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009539 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009540 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009541 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009542 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009543
9544 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009545 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009546 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009547
Michael J. Spencerec38de22010-10-10 22:04:20 +00009548
Chris Lattner2156b792010-09-22 01:11:26 +00009549 MachineMemOperand *MMO =
9550 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9551 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009552
Chris Lattner2156b792010-09-22 01:11:26 +00009553 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9554 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9555 DAG.getVTList(MVT::Other),
9556 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009557
9558 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009559 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009560 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009561
9562 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009563 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009564 DAG.getNode(ISD::SRL, DL, MVT::i16,
9565 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009566 CWD, DAG.getConstant(0x800, MVT::i16)),
9567 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009568 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009569 DAG.getNode(ISD::SRL, DL, MVT::i16,
9570 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009571 CWD, DAG.getConstant(0x400, MVT::i16)),
9572 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009573
Dan Gohman475871a2008-07-27 21:46:04 +00009574 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009575 DAG.getNode(ISD::AND, DL, MVT::i16,
9576 DAG.getNode(ISD::ADD, DL, MVT::i16,
9577 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009578 DAG.getConstant(1, MVT::i16)),
9579 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009580
9581
Duncan Sands83ec4b62008-06-06 12:08:01 +00009582 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009583 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009584}
9585
Dan Gohmand858e902010-04-17 15:26:15 +00009586SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009587 EVT VT = Op.getValueType();
9588 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009589 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009590 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009591
9592 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009593 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009594 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009595 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009596 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009597 }
Evan Cheng18efe262007-12-14 02:13:44 +00009598
Evan Cheng152804e2007-12-14 08:30:15 +00009599 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009600 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009601 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009602
9603 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009604 SDValue Ops[] = {
9605 Op,
9606 DAG.getConstant(NumBits+NumBits-1, OpVT),
9607 DAG.getConstant(X86::COND_E, MVT::i8),
9608 Op.getValue(1)
9609 };
9610 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009611
9612 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009613 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009614
Owen Anderson825b72b2009-08-11 20:47:22 +00009615 if (VT == MVT::i8)
9616 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009617 return Op;
9618}
9619
Dan Gohmand858e902010-04-17 15:26:15 +00009620SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009621 EVT VT = Op.getValueType();
9622 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009623 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009624 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009625
9626 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009627 if (VT == MVT::i8) {
9628 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009629 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009630 }
Evan Cheng152804e2007-12-14 08:30:15 +00009631
9632 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009633 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009634 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009635
9636 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009637 SDValue Ops[] = {
9638 Op,
9639 DAG.getConstant(NumBits, OpVT),
9640 DAG.getConstant(X86::COND_E, MVT::i8),
9641 Op.getValue(1)
9642 };
9643 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009644
Owen Anderson825b72b2009-08-11 20:47:22 +00009645 if (VT == MVT::i8)
9646 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009647 return Op;
9648}
9649
Craig Topper13894fa2011-08-24 06:14:18 +00009650// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
9651// ones, and then concatenate the result back.
9652static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00009653 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +00009654
9655 assert(VT.getSizeInBits() == 256 && VT.isInteger() &&
9656 "Unsupported value type for operation");
9657
9658 int NumElems = VT.getVectorNumElements();
9659 DebugLoc dl = Op.getDebugLoc();
9660 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
9661 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
9662
9663 // Extract the LHS vectors
9664 SDValue LHS = Op.getOperand(0);
9665 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
9666 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
9667
9668 // Extract the RHS vectors
9669 SDValue RHS = Op.getOperand(1);
9670 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
9671 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
9672
9673 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9674 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9675
9676 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9677 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
9678 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
9679}
9680
9681SDValue X86TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) const {
9682 assert(Op.getValueType().getSizeInBits() == 256 &&
9683 Op.getValueType().isInteger() &&
9684 "Only handle AVX 256-bit vector integer operation");
9685 return Lower256IntArith(Op, DAG);
9686}
9687
9688SDValue X86TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) const {
9689 assert(Op.getValueType().getSizeInBits() == 256 &&
9690 Op.getValueType().isInteger() &&
9691 "Only handle AVX 256-bit vector integer operation");
9692 return Lower256IntArith(Op, DAG);
9693}
9694
9695SDValue X86TargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
9696 EVT VT = Op.getValueType();
9697
9698 // Decompose 256-bit ops into smaller 128-bit ops.
9699 if (VT.getSizeInBits() == 256)
9700 return Lower256IntArith(Op, DAG);
9701
Owen Anderson825b72b2009-08-11 20:47:22 +00009702 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009703 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009704
Mon P Wangaf9b9522008-12-18 21:42:19 +00009705 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9706 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9707 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9708 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9709 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9710 //
9711 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9712 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9713 // return AloBlo + AloBhi + AhiBlo;
9714
9715 SDValue A = Op.getOperand(0);
9716 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009717
Dale Johannesene4d209d2009-02-03 20:21:25 +00009718 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009719 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9720 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009721 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009722 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9723 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009724 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009725 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009726 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009727 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009728 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009729 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009730 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009731 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009732 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009733 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009734 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9735 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009736 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009737 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9738 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009739 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9740 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009741 return Res;
9742}
9743
Nadav Rotem43012222011-05-11 08:12:09 +00009744SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9745
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009746 EVT VT = Op.getValueType();
9747 DebugLoc dl = Op.getDebugLoc();
9748 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009749 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009750 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009751
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009752 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9753 return SDValue();
9754
9755 // Decompose 256-bit shifts into smaller 128-bit shifts.
9756 if (VT.getSizeInBits() == 256) {
9757 int NumElems = VT.getVectorNumElements();
9758 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9759 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9760
9761 // Extract the two vectors
9762 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9763 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9764 DAG, dl);
9765
9766 // Recreate the shift amount vectors
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009767 SDValue Amt1, Amt2;
9768 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
9769 // Constant shift amount
9770 SmallVector<SDValue, 4> Amt1Csts;
9771 SmallVector<SDValue, 4> Amt2Csts;
9772 for (int i = 0; i < NumElems/2; ++i)
9773 Amt1Csts.push_back(Amt->getOperand(i));
9774 for (int i = NumElems/2; i < NumElems; ++i)
9775 Amt2Csts.push_back(Amt->getOperand(i));
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009776
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009777 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9778 &Amt1Csts[0], NumElems/2);
9779 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9780 &Amt2Csts[0], NumElems/2);
9781 } else {
9782 // Variable shift amount
9783 Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
9784 Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
9785 DAG, dl);
9786 }
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009787
9788 // Issue new vector shifts for the smaller types
9789 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9790 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9791
9792 // Concatenate the result back
9793 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9794 }
Nate Begeman51409212010-07-28 00:21:48 +00009795
Nadav Rotem43012222011-05-11 08:12:09 +00009796 // Optimize shl/srl/sra with constant shift amount.
9797 if (isSplatVector(Amt.getNode())) {
9798 SDValue SclrAmt = Amt->getOperand(0);
9799 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9800 uint64_t ShiftAmt = C->getZExtValue();
9801
9802 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9803 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9804 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9805 R, DAG.getConstant(ShiftAmt, MVT::i32));
9806
9807 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9808 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9809 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9810 R, DAG.getConstant(ShiftAmt, MVT::i32));
9811
9812 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9813 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9814 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9815 R, DAG.getConstant(ShiftAmt, MVT::i32));
9816
9817 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9818 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9819 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9820 R, DAG.getConstant(ShiftAmt, MVT::i32));
9821
9822 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9823 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9824 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9825 R, DAG.getConstant(ShiftAmt, MVT::i32));
9826
9827 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9828 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9829 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9830 R, DAG.getConstant(ShiftAmt, MVT::i32));
9831
9832 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9833 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9834 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9835 R, DAG.getConstant(ShiftAmt, MVT::i32));
9836
9837 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9838 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9839 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9840 R, DAG.getConstant(ShiftAmt, MVT::i32));
9841 }
9842 }
9843
9844 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009845 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009846 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9847 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9848 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9849
9850 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009851
Nate Begeman51409212010-07-28 00:21:48 +00009852 std::vector<Constant*> CV(4, CI);
9853 Constant *C = ConstantVector::get(CV);
9854 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9855 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009856 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009857 false, false, 16);
9858
9859 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009860 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009861 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9862 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9863 }
Nadav Rotem43012222011-05-11 08:12:09 +00009864 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009865 // a = a << 5;
9866 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9867 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9868 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9869
9870 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9871 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9872
9873 std::vector<Constant*> CVM1(16, CM1);
9874 std::vector<Constant*> CVM2(16, CM2);
9875 Constant *C = ConstantVector::get(CVM1);
9876 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9877 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009878 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009879 false, false, 16);
9880
9881 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9882 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9883 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9884 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9885 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009886 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009887 // a += a
9888 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009889
Nate Begeman51409212010-07-28 00:21:48 +00009890 C = ConstantVector::get(CVM2);
9891 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9892 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009893 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009894 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009895
Nate Begeman51409212010-07-28 00:21:48 +00009896 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9897 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9898 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9899 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9900 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009901 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009902 // a += a
9903 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009904
Nate Begeman51409212010-07-28 00:21:48 +00009905 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009906 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009907 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9908 return R;
9909 }
9910 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009911}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009912
Dan Gohmand858e902010-04-17 15:26:15 +00009913SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009914 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9915 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009916 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9917 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009918 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009919 SDValue LHS = N->getOperand(0);
9920 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009921 unsigned BaseOp = 0;
9922 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009923 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009924 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009925 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009926 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009927 // A subtract of one will be selected as a INC. Note that INC doesn't
9928 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009929 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9930 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009931 BaseOp = X86ISD::INC;
9932 Cond = X86::COND_O;
9933 break;
9934 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009935 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009936 Cond = X86::COND_O;
9937 break;
9938 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009939 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009940 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009941 break;
9942 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009943 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9944 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009945 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9946 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009947 BaseOp = X86ISD::DEC;
9948 Cond = X86::COND_O;
9949 break;
9950 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009951 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009952 Cond = X86::COND_O;
9953 break;
9954 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009955 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009956 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009957 break;
9958 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009959 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009960 Cond = X86::COND_O;
9961 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009962 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9963 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9964 MVT::i32);
9965 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009966
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009967 SDValue SetCC =
9968 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9969 DAG.getConstant(X86::COND_O, MVT::i32),
9970 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009971
Dan Gohman6e5fda22011-07-22 18:45:15 +00009972 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009973 }
Bill Wendling74c37652008-12-09 22:08:41 +00009974 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009975
Bill Wendling61edeb52008-12-02 01:06:39 +00009976 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009977 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009978 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009979
Bill Wendling61edeb52008-12-02 01:06:39 +00009980 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009981 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9982 DAG.getConstant(Cond, MVT::i32),
9983 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009984
Dan Gohman6e5fda22011-07-22 18:45:15 +00009985 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009986}
9987
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009988SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9989 DebugLoc dl = Op.getDebugLoc();
9990 SDNode* Node = Op.getNode();
9991 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9992 EVT VT = Node->getValueType(0);
9993
9994 if (Subtarget->hasSSE2() && VT.isVector()) {
9995 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9996 ExtraVT.getScalarType().getSizeInBits();
9997 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9998
9999 unsigned SHLIntrinsicsID = 0;
10000 unsigned SRAIntrinsicsID = 0;
10001 switch (VT.getSimpleVT().SimpleTy) {
10002 default:
10003 return SDValue();
10004 case MVT::v2i64: {
10005 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
10006 SRAIntrinsicsID = 0;
10007 break;
10008 }
10009 case MVT::v4i32: {
10010 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
10011 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
10012 break;
10013 }
10014 case MVT::v8i16: {
10015 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
10016 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
10017 break;
10018 }
10019 }
10020
10021 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10022 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
10023 Node->getOperand(0), ShAmt);
10024
10025 // In case of 1 bit sext, no need to shr
10026 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
10027
10028 if (SRAIntrinsicsID) {
10029 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10030 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
10031 Tmp1, ShAmt);
10032 }
10033 return Tmp1;
10034 }
10035
10036 return SDValue();
10037}
10038
10039
Eric Christopher9a9d2752010-07-22 02:48:34 +000010040SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
10041 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010042
Eric Christopher77ed1352011-07-08 00:04:56 +000010043 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
10044 // There isn't any reason to disable it if the target processor supports it.
10045 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +000010046 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +000010047 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +000010048 SDValue Ops[] = {
10049 DAG.getRegister(X86::ESP, MVT::i32), // Base
10050 DAG.getTargetConstant(1, MVT::i8), // Scale
10051 DAG.getRegister(0, MVT::i32), // Index
10052 DAG.getTargetConstant(0, MVT::i32), // Disp
10053 DAG.getRegister(0, MVT::i32), // Segment.
10054 Zero,
10055 Chain
10056 };
Michael J. Spencerec38de22010-10-10 22:04:20 +000010057 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +000010058 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10059 array_lengthof(Ops));
10060 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +000010061 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010062
Eric Christopher9a9d2752010-07-22 02:48:34 +000010063 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +000010064 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +000010065 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010066
Chris Lattner132929a2010-08-14 17:26:09 +000010067 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10068 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10069 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
10070 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010071
Chris Lattner132929a2010-08-14 17:26:09 +000010072 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
10073 if (!Op1 && !Op2 && !Op3 && Op4)
10074 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010075
Chris Lattner132929a2010-08-14 17:26:09 +000010076 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
10077 if (Op1 && !Op2 && !Op3 && !Op4)
10078 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010079
10080 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +000010081 // (MFENCE)>;
10082 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +000010083}
10084
Eli Friedman14648462011-07-27 22:21:52 +000010085SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
10086 SelectionDAG &DAG) const {
10087 DebugLoc dl = Op.getDebugLoc();
10088 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
10089 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
10090 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
10091 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
10092
10093 // The only fence that needs an instruction is a sequentially-consistent
10094 // cross-thread fence.
10095 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
10096 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
10097 // no-sse2). There isn't any reason to disable it if the target processor
10098 // supports it.
10099 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
10100 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10101
10102 SDValue Chain = Op.getOperand(0);
10103 SDValue Zero = DAG.getConstant(0, MVT::i32);
10104 SDValue Ops[] = {
10105 DAG.getRegister(X86::ESP, MVT::i32), // Base
10106 DAG.getTargetConstant(1, MVT::i8), // Scale
10107 DAG.getRegister(0, MVT::i32), // Index
10108 DAG.getTargetConstant(0, MVT::i32), // Disp
10109 DAG.getRegister(0, MVT::i32), // Segment.
10110 Zero,
10111 Chain
10112 };
10113 SDNode *Res =
10114 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10115 array_lengthof(Ops));
10116 return SDValue(Res, 0);
10117 }
10118
10119 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
10120 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
10121}
10122
10123
Dan Gohmand858e902010-04-17 15:26:15 +000010124SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010125 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010126 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000010127 unsigned Reg = 0;
10128 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000010129 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010130 default:
10131 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000010132 case MVT::i8: Reg = X86::AL; size = 1; break;
10133 case MVT::i16: Reg = X86::AX; size = 2; break;
10134 case MVT::i32: Reg = X86::EAX; size = 4; break;
10135 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000010136 assert(Subtarget->is64Bit() && "Node not type legal!");
10137 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000010138 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010139 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010140 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000010141 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000010142 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010143 Op.getOperand(1),
10144 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000010145 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010146 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010147 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010148 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
10149 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
10150 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000010151 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010152 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000010153 return cpOut;
10154}
10155
Duncan Sands1607f052008-12-01 11:39:25 +000010156SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010157 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +000010158 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010159 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010160 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010161 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010162 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010163 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
10164 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000010165 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000010166 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
10167 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000010168 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000010169 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000010170 rdx.getValue(1)
10171 };
Dale Johannesene4d209d2009-02-03 20:21:25 +000010172 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010173}
10174
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010175SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +000010176 SelectionDAG &DAG) const {
10177 EVT SrcVT = Op.getOperand(0).getValueType();
10178 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +000010179 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
10180 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010181 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000010182 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010183 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000010184 // i64 <=> MMX conversions are Legal.
10185 if (SrcVT==MVT::i64 && DstVT.isVector())
10186 return Op;
10187 if (DstVT==MVT::i64 && SrcVT.isVector())
10188 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000010189 // MMX <=> MMX conversions are Legal.
10190 if (SrcVT.isVector() && DstVT.isVector())
10191 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000010192 // All other conversions need to be expanded.
10193 return SDValue();
10194}
Chris Lattner5b856542010-12-20 00:59:46 +000010195
Dan Gohmand858e902010-04-17 15:26:15 +000010196SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010197 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010198 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010199 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010200 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000010201 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000010202 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010203 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010204 Node->getOperand(0),
10205 Node->getOperand(1), negOp,
10206 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000010207 cast<AtomicSDNode>(Node)->getAlignment(),
10208 cast<AtomicSDNode>(Node)->getOrdering(),
10209 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000010210}
10211
Eli Friedman327236c2011-08-24 20:50:09 +000010212static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
10213 SDNode *Node = Op.getNode();
10214 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010215 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000010216
10217 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010218 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
10219 // FIXME: On 32-bit, store -> fist or movq would be more efficient
10220 // (The only way to get a 16-byte store is cmpxchg16b)
10221 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
10222 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
10223 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000010224 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
10225 cast<AtomicSDNode>(Node)->getMemoryVT(),
10226 Node->getOperand(0),
10227 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010228 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000010229 cast<AtomicSDNode>(Node)->getOrdering(),
10230 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000010231 return Swap.getValue(1);
10232 }
10233 // Other atomic stores have a simple pattern.
10234 return Op;
10235}
10236
Chris Lattner5b856542010-12-20 00:59:46 +000010237static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
10238 EVT VT = Op.getNode()->getValueType(0);
10239
10240 // Let legalize expand this if it isn't a legal type yet.
10241 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
10242 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010243
Chris Lattner5b856542010-12-20 00:59:46 +000010244 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010245
Chris Lattner5b856542010-12-20 00:59:46 +000010246 unsigned Opc;
10247 bool ExtraOp = false;
10248 switch (Op.getOpcode()) {
10249 default: assert(0 && "Invalid code");
10250 case ISD::ADDC: Opc = X86ISD::ADD; break;
10251 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
10252 case ISD::SUBC: Opc = X86ISD::SUB; break;
10253 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
10254 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010255
Chris Lattner5b856542010-12-20 00:59:46 +000010256 if (!ExtraOp)
10257 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10258 Op.getOperand(1));
10259 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10260 Op.getOperand(1), Op.getOperand(2));
10261}
10262
Evan Cheng0db9fe62006-04-25 20:13:52 +000010263/// LowerOperation - Provide custom lowering hooks for some operations.
10264///
Dan Gohmand858e902010-04-17 15:26:15 +000010265SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000010266 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010267 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010268 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +000010269 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +000010270 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010271 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
10272 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000010273 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010274 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000010275 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010276 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
10277 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
10278 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +000010279 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +000010280 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010281 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
10282 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
10283 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010284 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000010285 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000010286 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010287 case ISD::SHL_PARTS:
10288 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000010289 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010290 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000010291 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010292 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000010293 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010294 case ISD::FABS: return LowerFABS(Op, DAG);
10295 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000010296 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000010297 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000010298 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +000010299 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000010300 case ISD::SELECT: return LowerSELECT(Op, DAG);
10301 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010302 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010303 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000010304 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +000010305 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010306 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000010307 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
10308 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010309 case ISD::FRAME_TO_ARGS_OFFSET:
10310 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010311 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010312 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +000010313 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000010314 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000010315 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
10316 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010317 case ISD::MUL: return LowerMUL(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000010318 case ISD::SRA:
10319 case ISD::SRL:
10320 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000010321 case ISD::SADDO:
10322 case ISD::UADDO:
10323 case ISD::SSUBO:
10324 case ISD::USUBO:
10325 case ISD::SMULO:
10326 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +000010327 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010328 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000010329 case ISD::ADDC:
10330 case ISD::ADDE:
10331 case ISD::SUBC:
10332 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010333 case ISD::ADD: return LowerADD(Op, DAG);
10334 case ISD::SUB: return LowerSUB(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010335 }
Chris Lattner27a6c732007-11-24 07:07:01 +000010336}
10337
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010338static void ReplaceATOMIC_LOAD(SDNode *Node,
10339 SmallVectorImpl<SDValue> &Results,
10340 SelectionDAG &DAG) {
10341 DebugLoc dl = Node->getDebugLoc();
10342 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
10343
10344 // Convert wide load -> cmpxchg8b/cmpxchg16b
10345 // FIXME: On 32-bit, load -> fild or movq would be more efficient
10346 // (The only way to get a 16-byte load is cmpxchg16b)
10347 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010348 SDValue Zero = DAG.getConstant(0, VT);
10349 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010350 Node->getOperand(0),
10351 Node->getOperand(1), Zero, Zero,
10352 cast<AtomicSDNode>(Node)->getMemOperand(),
10353 cast<AtomicSDNode>(Node)->getOrdering(),
10354 cast<AtomicSDNode>(Node)->getSynchScope());
10355 Results.push_back(Swap.getValue(0));
10356 Results.push_back(Swap.getValue(1));
10357}
10358
Duncan Sands1607f052008-12-01 11:39:25 +000010359void X86TargetLowering::
10360ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010361 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010362 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010363 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +000010364 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000010365
10366 SDValue Chain = Node->getOperand(0);
10367 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010368 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010369 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000010370 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010371 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000010372 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000010373 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000010374 SDValue Result =
10375 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
10376 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000010377 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010378 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010379 Results.push_back(Result.getValue(2));
10380}
10381
Duncan Sands126d9072008-07-04 11:47:58 +000010382/// ReplaceNodeResults - Replace a node with an illegal result type
10383/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000010384void X86TargetLowering::ReplaceNodeResults(SDNode *N,
10385 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010386 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010387 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +000010388 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000010389 default:
Duncan Sands1607f052008-12-01 11:39:25 +000010390 assert(false && "Do not know how to custom type legalize this operation!");
10391 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010392 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000010393 case ISD::ADDC:
10394 case ISD::ADDE:
10395 case ISD::SUBC:
10396 case ISD::SUBE:
10397 // We don't want to expand or promote these.
10398 return;
Duncan Sands1607f052008-12-01 11:39:25 +000010399 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +000010400 std::pair<SDValue,SDValue> Vals =
10401 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +000010402 SDValue FIST = Vals.first, StackSlot = Vals.second;
10403 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000010404 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000010405 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +000010406 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
10407 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +000010408 }
10409 return;
10410 }
10411 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010412 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010413 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010414 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010415 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000010416 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000010417 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010418 eax.getValue(2));
10419 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
10420 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000010421 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010422 Results.push_back(edx.getValue(1));
10423 return;
10424 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010425 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000010426 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010427 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000010428 bool Regs64bit = T == MVT::i128;
10429 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000010430 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010431 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10432 DAG.getConstant(0, HalfT));
10433 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10434 DAG.getConstant(1, HalfT));
10435 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
10436 Regs64bit ? X86::RAX : X86::EAX,
10437 cpInL, SDValue());
10438 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
10439 Regs64bit ? X86::RDX : X86::EDX,
10440 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010441 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010442 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10443 DAG.getConstant(0, HalfT));
10444 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10445 DAG.getConstant(1, HalfT));
10446 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
10447 Regs64bit ? X86::RBX : X86::EBX,
10448 swapInL, cpInH.getValue(1));
10449 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
10450 Regs64bit ? X86::RCX : X86::ECX,
10451 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010452 SDValue Ops[] = { swapInH.getValue(0),
10453 N->getOperand(1),
10454 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010455 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010456 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000010457 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
10458 X86ISD::LCMPXCHG8_DAG;
10459 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010460 Ops, 3, T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000010461 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
10462 Regs64bit ? X86::RAX : X86::EAX,
10463 HalfT, Result.getValue(1));
10464 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
10465 Regs64bit ? X86::RDX : X86::EDX,
10466 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000010467 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000010468 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010469 Results.push_back(cpOutH.getValue(1));
10470 return;
10471 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010472 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +000010473 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
10474 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010475 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +000010476 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
10477 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010478 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +000010479 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
10480 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010481 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +000010482 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
10483 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010484 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +000010485 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
10486 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010487 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +000010488 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
10489 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010490 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +000010491 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
10492 return;
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010493 case ISD::ATOMIC_LOAD:
10494 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000010495 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000010496}
10497
Evan Cheng72261582005-12-20 06:22:03 +000010498const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
10499 switch (Opcode) {
10500 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000010501 case X86ISD::BSF: return "X86ISD::BSF";
10502 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000010503 case X86ISD::SHLD: return "X86ISD::SHLD";
10504 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000010505 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010506 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000010507 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010508 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000010509 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000010510 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000010511 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
10512 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
10513 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000010514 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000010515 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000010516 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000010517 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000010518 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000010519 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000010520 case X86ISD::COMI: return "X86ISD::COMI";
10521 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000010522 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000010523 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000010524 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
10525 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000010526 case X86ISD::CMOV: return "X86ISD::CMOV";
10527 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000010528 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000010529 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
10530 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000010531 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000010532 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000010533 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010534 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000010535 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010536 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
10537 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000010538 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000010539 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000010540 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +000010541 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
10542 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
10543 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +000010544 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +000010545 case X86ISD::FMAX: return "X86ISD::FMAX";
10546 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +000010547 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
10548 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010549 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000010550 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010551 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000010552 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000010553 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +000010554 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
10555 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010556 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
10557 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
10558 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
10559 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
10560 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
10561 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000010562 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
10563 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +000010564 case X86ISD::VSHL: return "X86ISD::VSHL";
10565 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +000010566 case X86ISD::CMPPD: return "X86ISD::CMPPD";
10567 case X86ISD::CMPPS: return "X86ISD::CMPPS";
10568 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
10569 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
10570 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
10571 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
10572 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
10573 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
10574 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
10575 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010576 case X86ISD::ADD: return "X86ISD::ADD";
10577 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000010578 case X86ISD::ADC: return "X86ISD::ADC";
10579 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000010580 case X86ISD::SMUL: return "X86ISD::SMUL";
10581 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010582 case X86ISD::INC: return "X86ISD::INC";
10583 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010584 case X86ISD::OR: return "X86ISD::OR";
10585 case X86ISD::XOR: return "X86ISD::XOR";
10586 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +000010587 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010588 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010589 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010590 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10591 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10592 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10593 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10594 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10595 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10596 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10597 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10598 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010599 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010600 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010601 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010602 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10603 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010604 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10605 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10606 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10607 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10608 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10609 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10610 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10611 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10612 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010613 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010614 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10615 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10616 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10617 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10618 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10619 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10620 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10621 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10622 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10623 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000010624 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010625 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10626 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10627 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10628 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000010629 case X86ISD::VPERM2F128: return "X86ISD::VPERM2F128";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010630 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010631 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010632 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010633 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +000010634 }
10635}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010636
Chris Lattnerc9addb72007-03-30 23:15:24 +000010637// isLegalAddressingMode - Return true if the addressing mode represented
10638// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010639bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010640 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010641 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010642 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010643 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010644
Chris Lattnerc9addb72007-03-30 23:15:24 +000010645 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010646 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010647 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010648
Chris Lattnerc9addb72007-03-30 23:15:24 +000010649 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010650 unsigned GVFlags =
10651 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010652
Chris Lattnerdfed4132009-07-10 07:38:24 +000010653 // If a reference to this global requires an extra load, we can't fold it.
10654 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010655 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010656
Chris Lattnerdfed4132009-07-10 07:38:24 +000010657 // If BaseGV requires a register for the PIC base, we cannot also have a
10658 // BaseReg specified.
10659 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010660 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010661
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010662 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010663 if ((M != CodeModel::Small || R != Reloc::Static) &&
10664 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010665 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010666 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010667
Chris Lattnerc9addb72007-03-30 23:15:24 +000010668 switch (AM.Scale) {
10669 case 0:
10670 case 1:
10671 case 2:
10672 case 4:
10673 case 8:
10674 // These scales always work.
10675 break;
10676 case 3:
10677 case 5:
10678 case 9:
10679 // These scales are formed with basereg+scalereg. Only accept if there is
10680 // no basereg yet.
10681 if (AM.HasBaseReg)
10682 return false;
10683 break;
10684 default: // Other stuff never works.
10685 return false;
10686 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010687
Chris Lattnerc9addb72007-03-30 23:15:24 +000010688 return true;
10689}
10690
10691
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010692bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010693 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010694 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010695 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10696 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010697 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010698 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010699 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010700}
10701
Owen Andersone50ed302009-08-10 22:56:29 +000010702bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010703 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010704 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010705 unsigned NumBits1 = VT1.getSizeInBits();
10706 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010707 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010708 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010709 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010710}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010711
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010712bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010713 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010714 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010715}
10716
Owen Andersone50ed302009-08-10 22:56:29 +000010717bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010718 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010719 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010720}
10721
Owen Andersone50ed302009-08-10 22:56:29 +000010722bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010723 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010724 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010725}
10726
Evan Cheng60c07e12006-07-05 22:17:51 +000010727/// isShuffleMaskLegal - Targets can use this to indicate that they only
10728/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10729/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10730/// are assumed to be legal.
10731bool
Eric Christopherfd179292009-08-27 18:07:15 +000010732X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010733 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010734 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010735 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010736 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010737
Nate Begemana09008b2009-10-19 02:17:23 +000010738 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010739 return (VT.getVectorNumElements() == 2 ||
10740 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10741 isMOVLMask(M, VT) ||
10742 isSHUFPMask(M, VT) ||
10743 isPSHUFDMask(M, VT) ||
10744 isPSHUFHWMask(M, VT) ||
10745 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010746 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010747 isUNPCKLMask(M, VT) ||
10748 isUNPCKHMask(M, VT) ||
10749 isUNPCKL_v_undef_Mask(M, VT) ||
10750 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010751}
10752
Dan Gohman7d8143f2008-04-09 20:09:42 +000010753bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010754X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010755 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010756 unsigned NumElts = VT.getVectorNumElements();
10757 // FIXME: This collection of masks seems suspect.
10758 if (NumElts == 2)
10759 return true;
10760 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10761 return (isMOVLMask(Mask, VT) ||
10762 isCommutedMOVLMask(Mask, VT, true) ||
10763 isSHUFPMask(Mask, VT) ||
10764 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010765 }
10766 return false;
10767}
10768
10769//===----------------------------------------------------------------------===//
10770// X86 Scheduler Hooks
10771//===----------------------------------------------------------------------===//
10772
Mon P Wang63307c32008-05-05 19:05:59 +000010773// private utility function
10774MachineBasicBlock *
10775X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10776 MachineBasicBlock *MBB,
10777 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010778 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010779 unsigned LoadOpc,
10780 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010781 unsigned notOpc,
10782 unsigned EAXreg,
10783 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010784 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010785 // For the atomic bitwise operator, we generate
10786 // thisMBB:
10787 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010788 // ld t1 = [bitinstr.addr]
10789 // op t2 = t1, [bitinstr.val]
10790 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010791 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10792 // bz newMBB
10793 // fallthrough -->nextMBB
10794 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10795 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010796 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010797 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010798
Mon P Wang63307c32008-05-05 19:05:59 +000010799 /// First build the CFG
10800 MachineFunction *F = MBB->getParent();
10801 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010802 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10803 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10804 F->insert(MBBIter, newMBB);
10805 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010806
Dan Gohman14152b42010-07-06 20:24:04 +000010807 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10808 nextMBB->splice(nextMBB->begin(), thisMBB,
10809 llvm::next(MachineBasicBlock::iterator(bInstr)),
10810 thisMBB->end());
10811 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010812
Mon P Wang63307c32008-05-05 19:05:59 +000010813 // Update thisMBB to fall through to newMBB
10814 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010815
Mon P Wang63307c32008-05-05 19:05:59 +000010816 // newMBB jumps to itself and fall through to nextMBB
10817 newMBB->addSuccessor(nextMBB);
10818 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010819
Mon P Wang63307c32008-05-05 19:05:59 +000010820 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010821 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010822 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010823 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010824 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010825 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010826 int numArgs = bInstr->getNumOperands() - 1;
10827 for (int i=0; i < numArgs; ++i)
10828 argOpers[i] = &bInstr->getOperand(i+1);
10829
10830 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010831 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010832 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010833
Dale Johannesen140be2d2008-08-19 18:47:28 +000010834 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010835 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010836 for (int i=0; i <= lastAddrIndx; ++i)
10837 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010838
Dale Johannesen140be2d2008-08-19 18:47:28 +000010839 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010840 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010841 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010842 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010843 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010844 tt = t1;
10845
Dale Johannesen140be2d2008-08-19 18:47:28 +000010846 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010847 assert((argOpers[valArgIndx]->isReg() ||
10848 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010849 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010850 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010851 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010852 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010853 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010854 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010855 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010856
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010857 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010858 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010859
Dale Johannesene4d209d2009-02-03 20:21:25 +000010860 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010861 for (int i=0; i <= lastAddrIndx; ++i)
10862 (*MIB).addOperand(*argOpers[i]);
10863 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010864 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010865 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10866 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010867
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010868 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010869 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010870
Mon P Wang63307c32008-05-05 19:05:59 +000010871 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010872 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010873
Dan Gohman14152b42010-07-06 20:24:04 +000010874 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010875 return nextMBB;
10876}
10877
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010878// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010879MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010880X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10881 MachineBasicBlock *MBB,
10882 unsigned regOpcL,
10883 unsigned regOpcH,
10884 unsigned immOpcL,
10885 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010886 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010887 // For the atomic bitwise operator, we generate
10888 // thisMBB (instructions are in pairs, except cmpxchg8b)
10889 // ld t1,t2 = [bitinstr.addr]
10890 // newMBB:
10891 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10892 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010893 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010894 // mov ECX, EBX <- t5, t6
10895 // mov EAX, EDX <- t1, t2
10896 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10897 // mov t3, t4 <- EAX, EDX
10898 // bz newMBB
10899 // result in out1, out2
10900 // fallthrough -->nextMBB
10901
10902 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10903 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010904 const unsigned NotOpc = X86::NOT32r;
10905 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10906 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10907 MachineFunction::iterator MBBIter = MBB;
10908 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010909
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010910 /// First build the CFG
10911 MachineFunction *F = MBB->getParent();
10912 MachineBasicBlock *thisMBB = MBB;
10913 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10914 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10915 F->insert(MBBIter, newMBB);
10916 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010917
Dan Gohman14152b42010-07-06 20:24:04 +000010918 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10919 nextMBB->splice(nextMBB->begin(), thisMBB,
10920 llvm::next(MachineBasicBlock::iterator(bInstr)),
10921 thisMBB->end());
10922 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010923
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010924 // Update thisMBB to fall through to newMBB
10925 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010926
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010927 // newMBB jumps to itself and fall through to nextMBB
10928 newMBB->addSuccessor(nextMBB);
10929 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010930
Dale Johannesene4d209d2009-02-03 20:21:25 +000010931 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010932 // Insert instructions into newMBB based on incoming instruction
10933 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010934 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010935 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010936 MachineOperand& dest1Oper = bInstr->getOperand(0);
10937 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010938 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10939 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010940 argOpers[i] = &bInstr->getOperand(i+2);
10941
Dan Gohman71ea4e52010-05-14 21:01:44 +000010942 // We use some of the operands multiple times, so conservatively just
10943 // clear any kill flags that might be present.
10944 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10945 argOpers[i]->setIsKill(false);
10946 }
10947
Evan Chengad5b52f2010-01-08 19:14:57 +000010948 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010949 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010950
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010951 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010952 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010953 for (int i=0; i <= lastAddrIndx; ++i)
10954 (*MIB).addOperand(*argOpers[i]);
10955 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010956 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010957 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010958 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010959 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010960 MachineOperand newOp3 = *(argOpers[3]);
10961 if (newOp3.isImm())
10962 newOp3.setImm(newOp3.getImm()+4);
10963 else
10964 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010965 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010966 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010967
10968 // t3/4 are defined later, at the bottom of the loop
10969 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10970 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010971 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010972 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010973 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010974 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10975
Evan Cheng306b4ca2010-01-08 23:41:50 +000010976 // The subsequent operations should be using the destination registers of
10977 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010978 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010979 t1 = F->getRegInfo().createVirtualRegister(RC);
10980 t2 = F->getRegInfo().createVirtualRegister(RC);
10981 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10982 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010983 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010984 t1 = dest1Oper.getReg();
10985 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010986 }
10987
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010988 int valArgIndx = lastAddrIndx + 1;
10989 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010990 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010991 "invalid operand");
10992 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10993 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010994 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010995 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010996 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010997 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010998 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010999 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011000 (*MIB).addOperand(*argOpers[valArgIndx]);
11001 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011002 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011003 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011004 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011005 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011006 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011007 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011008 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000011009 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000011010 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011011 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011012
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011013 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011014 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011015 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011016 MIB.addReg(t2);
11017
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011018 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011019 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011020 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011021 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000011022
Dale Johannesene4d209d2009-02-03 20:21:25 +000011023 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011024 for (int i=0; i <= lastAddrIndx; ++i)
11025 (*MIB).addOperand(*argOpers[i]);
11026
11027 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011028 (*MIB).setMemRefs(bInstr->memoperands_begin(),
11029 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011030
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011031 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011032 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011033 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011034 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011035
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011036 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011037 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011038
Dan Gohman14152b42010-07-06 20:24:04 +000011039 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011040 return nextMBB;
11041}
11042
11043// private utility function
11044MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000011045X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
11046 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000011047 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000011048 // For the atomic min/max operator, we generate
11049 // thisMBB:
11050 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000011051 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000011052 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000011053 // cmp t1, t2
11054 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000011055 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000011056 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
11057 // bz newMBB
11058 // fallthrough -->nextMBB
11059 //
11060 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11061 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011062 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000011063 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000011064
Mon P Wang63307c32008-05-05 19:05:59 +000011065 /// First build the CFG
11066 MachineFunction *F = MBB->getParent();
11067 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011068 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11069 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11070 F->insert(MBBIter, newMBB);
11071 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011072
Dan Gohman14152b42010-07-06 20:24:04 +000011073 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11074 nextMBB->splice(nextMBB->begin(), thisMBB,
11075 llvm::next(MachineBasicBlock::iterator(mInstr)),
11076 thisMBB->end());
11077 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011078
Mon P Wang63307c32008-05-05 19:05:59 +000011079 // Update thisMBB to fall through to newMBB
11080 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011081
Mon P Wang63307c32008-05-05 19:05:59 +000011082 // newMBB jumps to newMBB and fall through to nextMBB
11083 newMBB->addSuccessor(nextMBB);
11084 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011085
Dale Johannesene4d209d2009-02-03 20:21:25 +000011086 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000011087 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011088 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011089 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000011090 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011091 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000011092 int numArgs = mInstr->getNumOperands() - 1;
11093 for (int i=0; i < numArgs; ++i)
11094 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000011095
Mon P Wang63307c32008-05-05 19:05:59 +000011096 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011097 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011098 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000011099
Mon P Wangab3e7472008-05-05 22:56:23 +000011100 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011101 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000011102 for (int i=0; i <= lastAddrIndx; ++i)
11103 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000011104
Mon P Wang63307c32008-05-05 19:05:59 +000011105 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000011106 assert((argOpers[valArgIndx]->isReg() ||
11107 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000011108 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000011109
11110 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000011111 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011112 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000011113 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011114 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000011115 (*MIB).addOperand(*argOpers[valArgIndx]);
11116
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011117 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000011118 MIB.addReg(t1);
11119
Dale Johannesene4d209d2009-02-03 20:21:25 +000011120 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000011121 MIB.addReg(t1);
11122 MIB.addReg(t2);
11123
11124 // Generate movc
11125 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011126 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000011127 MIB.addReg(t2);
11128 MIB.addReg(t1);
11129
11130 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000011131 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000011132 for (int i=0; i <= lastAddrIndx; ++i)
11133 (*MIB).addOperand(*argOpers[i]);
11134 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000011135 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011136 (*MIB).setMemRefs(mInstr->memoperands_begin(),
11137 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000011138
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011139 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000011140 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011141
Mon P Wang63307c32008-05-05 19:05:59 +000011142 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011143 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000011144
Dan Gohman14152b42010-07-06 20:24:04 +000011145 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000011146 return nextMBB;
11147}
11148
Eric Christopherf83a5de2009-08-27 18:08:16 +000011149// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011150// or XMM0_V32I8 in AVX all of this code can be replaced with that
11151// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011152MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000011153X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000011154 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011155 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
11156 "Target must have SSE4.2 or AVX features enabled");
11157
Eric Christopherb120ab42009-08-18 22:50:32 +000011158 DebugLoc dl = MI->getDebugLoc();
11159 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000011160 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011161 if (!Subtarget->hasAVX()) {
11162 if (memArg)
11163 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
11164 else
11165 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
11166 } else {
11167 if (memArg)
11168 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
11169 else
11170 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
11171 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011172
Eric Christopher41c902f2010-11-30 08:20:21 +000011173 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000011174 for (unsigned i = 0; i < numArgs; ++i) {
11175 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000011176 if (!(Op.isReg() && Op.isImplicit()))
11177 MIB.addOperand(Op);
11178 }
Eric Christopher41c902f2010-11-30 08:20:21 +000011179 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000011180 .addReg(X86::XMM0);
11181
Dan Gohman14152b42010-07-06 20:24:04 +000011182 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000011183 return BB;
11184}
11185
11186MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000011187X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011188 DebugLoc dl = MI->getDebugLoc();
11189 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011190
Eric Christopher228232b2010-11-30 07:20:12 +000011191 // Address into RAX/EAX, other two args into ECX, EDX.
11192 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
11193 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
11194 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
11195 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000011196 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011197
Eric Christopher228232b2010-11-30 07:20:12 +000011198 unsigned ValOps = X86::AddrNumOperands;
11199 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11200 .addReg(MI->getOperand(ValOps).getReg());
11201 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
11202 .addReg(MI->getOperand(ValOps+1).getReg());
11203
11204 // The instruction doesn't actually take any operands though.
11205 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011206
Eric Christopher228232b2010-11-30 07:20:12 +000011207 MI->eraseFromParent(); // The pseudo is gone now.
11208 return BB;
11209}
11210
11211MachineBasicBlock *
11212X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011213 DebugLoc dl = MI->getDebugLoc();
11214 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011215
Eric Christopher228232b2010-11-30 07:20:12 +000011216 // First arg in ECX, the second in EAX.
11217 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11218 .addReg(MI->getOperand(0).getReg());
11219 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
11220 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011221
Eric Christopher228232b2010-11-30 07:20:12 +000011222 // The instruction doesn't actually take any operands though.
11223 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011224
Eric Christopher228232b2010-11-30 07:20:12 +000011225 MI->eraseFromParent(); // The pseudo is gone now.
11226 return BB;
11227}
11228
11229MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000011230X86TargetLowering::EmitVAARG64WithCustomInserter(
11231 MachineInstr *MI,
11232 MachineBasicBlock *MBB) const {
11233 // Emit va_arg instruction on X86-64.
11234
11235 // Operands to this pseudo-instruction:
11236 // 0 ) Output : destination address (reg)
11237 // 1-5) Input : va_list address (addr, i64mem)
11238 // 6 ) ArgSize : Size (in bytes) of vararg type
11239 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
11240 // 8 ) Align : Alignment of type
11241 // 9 ) EFLAGS (implicit-def)
11242
11243 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
11244 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
11245
11246 unsigned DestReg = MI->getOperand(0).getReg();
11247 MachineOperand &Base = MI->getOperand(1);
11248 MachineOperand &Scale = MI->getOperand(2);
11249 MachineOperand &Index = MI->getOperand(3);
11250 MachineOperand &Disp = MI->getOperand(4);
11251 MachineOperand &Segment = MI->getOperand(5);
11252 unsigned ArgSize = MI->getOperand(6).getImm();
11253 unsigned ArgMode = MI->getOperand(7).getImm();
11254 unsigned Align = MI->getOperand(8).getImm();
11255
11256 // Memory Reference
11257 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
11258 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
11259 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
11260
11261 // Machine Information
11262 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11263 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
11264 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
11265 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
11266 DebugLoc DL = MI->getDebugLoc();
11267
11268 // struct va_list {
11269 // i32 gp_offset
11270 // i32 fp_offset
11271 // i64 overflow_area (address)
11272 // i64 reg_save_area (address)
11273 // }
11274 // sizeof(va_list) = 24
11275 // alignment(va_list) = 8
11276
11277 unsigned TotalNumIntRegs = 6;
11278 unsigned TotalNumXMMRegs = 8;
11279 bool UseGPOffset = (ArgMode == 1);
11280 bool UseFPOffset = (ArgMode == 2);
11281 unsigned MaxOffset = TotalNumIntRegs * 8 +
11282 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
11283
11284 /* Align ArgSize to a multiple of 8 */
11285 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
11286 bool NeedsAlign = (Align > 8);
11287
11288 MachineBasicBlock *thisMBB = MBB;
11289 MachineBasicBlock *overflowMBB;
11290 MachineBasicBlock *offsetMBB;
11291 MachineBasicBlock *endMBB;
11292
11293 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
11294 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
11295 unsigned OffsetReg = 0;
11296
11297 if (!UseGPOffset && !UseFPOffset) {
11298 // If we only pull from the overflow region, we don't create a branch.
11299 // We don't need to alter control flow.
11300 OffsetDestReg = 0; // unused
11301 OverflowDestReg = DestReg;
11302
11303 offsetMBB = NULL;
11304 overflowMBB = thisMBB;
11305 endMBB = thisMBB;
11306 } else {
11307 // First emit code to check if gp_offset (or fp_offset) is below the bound.
11308 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
11309 // If not, pull from overflow_area. (branch to overflowMBB)
11310 //
11311 // thisMBB
11312 // | .
11313 // | .
11314 // offsetMBB overflowMBB
11315 // | .
11316 // | .
11317 // endMBB
11318
11319 // Registers for the PHI in endMBB
11320 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
11321 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
11322
11323 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11324 MachineFunction *MF = MBB->getParent();
11325 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11326 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11327 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11328
11329 MachineFunction::iterator MBBIter = MBB;
11330 ++MBBIter;
11331
11332 // Insert the new basic blocks
11333 MF->insert(MBBIter, offsetMBB);
11334 MF->insert(MBBIter, overflowMBB);
11335 MF->insert(MBBIter, endMBB);
11336
11337 // Transfer the remainder of MBB and its successor edges to endMBB.
11338 endMBB->splice(endMBB->begin(), thisMBB,
11339 llvm::next(MachineBasicBlock::iterator(MI)),
11340 thisMBB->end());
11341 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11342
11343 // Make offsetMBB and overflowMBB successors of thisMBB
11344 thisMBB->addSuccessor(offsetMBB);
11345 thisMBB->addSuccessor(overflowMBB);
11346
11347 // endMBB is a successor of both offsetMBB and overflowMBB
11348 offsetMBB->addSuccessor(endMBB);
11349 overflowMBB->addSuccessor(endMBB);
11350
11351 // Load the offset value into a register
11352 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11353 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11354 .addOperand(Base)
11355 .addOperand(Scale)
11356 .addOperand(Index)
11357 .addDisp(Disp, UseFPOffset ? 4 : 0)
11358 .addOperand(Segment)
11359 .setMemRefs(MMOBegin, MMOEnd);
11360
11361 // Check if there is enough room left to pull this argument.
11362 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11363 .addReg(OffsetReg)
11364 .addImm(MaxOffset + 8 - ArgSizeA8);
11365
11366 // Branch to "overflowMBB" if offset >= max
11367 // Fall through to "offsetMBB" otherwise
11368 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
11369 .addMBB(overflowMBB);
11370 }
11371
11372 // In offsetMBB, emit code to use the reg_save_area.
11373 if (offsetMBB) {
11374 assert(OffsetReg != 0);
11375
11376 // Read the reg_save_area address.
11377 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
11378 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
11379 .addOperand(Base)
11380 .addOperand(Scale)
11381 .addOperand(Index)
11382 .addDisp(Disp, 16)
11383 .addOperand(Segment)
11384 .setMemRefs(MMOBegin, MMOEnd);
11385
11386 // Zero-extend the offset
11387 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
11388 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
11389 .addImm(0)
11390 .addReg(OffsetReg)
11391 .addImm(X86::sub_32bit);
11392
11393 // Add the offset to the reg_save_area to get the final address.
11394 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
11395 .addReg(OffsetReg64)
11396 .addReg(RegSaveReg);
11397
11398 // Compute the offset for the next argument
11399 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11400 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
11401 .addReg(OffsetReg)
11402 .addImm(UseFPOffset ? 16 : 8);
11403
11404 // Store it back into the va_list.
11405 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
11406 .addOperand(Base)
11407 .addOperand(Scale)
11408 .addOperand(Index)
11409 .addDisp(Disp, UseFPOffset ? 4 : 0)
11410 .addOperand(Segment)
11411 .addReg(NextOffsetReg)
11412 .setMemRefs(MMOBegin, MMOEnd);
11413
11414 // Jump to endMBB
11415 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
11416 .addMBB(endMBB);
11417 }
11418
11419 //
11420 // Emit code to use overflow area
11421 //
11422
11423 // Load the overflow_area address into a register.
11424 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
11425 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
11426 .addOperand(Base)
11427 .addOperand(Scale)
11428 .addOperand(Index)
11429 .addDisp(Disp, 8)
11430 .addOperand(Segment)
11431 .setMemRefs(MMOBegin, MMOEnd);
11432
11433 // If we need to align it, do so. Otherwise, just copy the address
11434 // to OverflowDestReg.
11435 if (NeedsAlign) {
11436 // Align the overflow address
11437 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
11438 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
11439
11440 // aligned_addr = (addr + (align-1)) & ~(align-1)
11441 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
11442 .addReg(OverflowAddrReg)
11443 .addImm(Align-1);
11444
11445 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
11446 .addReg(TmpReg)
11447 .addImm(~(uint64_t)(Align-1));
11448 } else {
11449 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
11450 .addReg(OverflowAddrReg);
11451 }
11452
11453 // Compute the next overflow address after this argument.
11454 // (the overflow address should be kept 8-byte aligned)
11455 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
11456 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
11457 .addReg(OverflowDestReg)
11458 .addImm(ArgSizeA8);
11459
11460 // Store the new overflow address.
11461 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
11462 .addOperand(Base)
11463 .addOperand(Scale)
11464 .addOperand(Index)
11465 .addDisp(Disp, 8)
11466 .addOperand(Segment)
11467 .addReg(NextAddrReg)
11468 .setMemRefs(MMOBegin, MMOEnd);
11469
11470 // If we branched, emit the PHI to the front of endMBB.
11471 if (offsetMBB) {
11472 BuildMI(*endMBB, endMBB->begin(), DL,
11473 TII->get(X86::PHI), DestReg)
11474 .addReg(OffsetDestReg).addMBB(offsetMBB)
11475 .addReg(OverflowDestReg).addMBB(overflowMBB);
11476 }
11477
11478 // Erase the pseudo instruction
11479 MI->eraseFromParent();
11480
11481 return endMBB;
11482}
11483
11484MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000011485X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
11486 MachineInstr *MI,
11487 MachineBasicBlock *MBB) const {
11488 // Emit code to save XMM registers to the stack. The ABI says that the
11489 // number of registers to save is given in %al, so it's theoretically
11490 // possible to do an indirect jump trick to avoid saving all of them,
11491 // however this code takes a simpler approach and just executes all
11492 // of the stores if %al is non-zero. It's less code, and it's probably
11493 // easier on the hardware branch predictor, and stores aren't all that
11494 // expensive anyway.
11495
11496 // Create the new basic blocks. One block contains all the XMM stores,
11497 // and one block is the final destination regardless of whether any
11498 // stores were performed.
11499 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11500 MachineFunction *F = MBB->getParent();
11501 MachineFunction::iterator MBBIter = MBB;
11502 ++MBBIter;
11503 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
11504 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
11505 F->insert(MBBIter, XMMSaveMBB);
11506 F->insert(MBBIter, EndMBB);
11507
Dan Gohman14152b42010-07-06 20:24:04 +000011508 // Transfer the remainder of MBB and its successor edges to EndMBB.
11509 EndMBB->splice(EndMBB->begin(), MBB,
11510 llvm::next(MachineBasicBlock::iterator(MI)),
11511 MBB->end());
11512 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
11513
Dan Gohmand6708ea2009-08-15 01:38:56 +000011514 // The original block will now fall through to the XMM save block.
11515 MBB->addSuccessor(XMMSaveMBB);
11516 // The XMMSaveMBB will fall through to the end block.
11517 XMMSaveMBB->addSuccessor(EndMBB);
11518
11519 // Now add the instructions.
11520 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11521 DebugLoc DL = MI->getDebugLoc();
11522
11523 unsigned CountReg = MI->getOperand(0).getReg();
11524 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
11525 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
11526
11527 if (!Subtarget->isTargetWin64()) {
11528 // If %al is 0, branch around the XMM save block.
11529 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011530 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011531 MBB->addSuccessor(EndMBB);
11532 }
11533
11534 // In the XMM save block, save all the XMM argument registers.
11535 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
11536 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000011537 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000011538 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000011539 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000011540 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000011541 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011542 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
11543 .addFrameIndex(RegSaveFrameIndex)
11544 .addImm(/*Scale=*/1)
11545 .addReg(/*IndexReg=*/0)
11546 .addImm(/*Disp=*/Offset)
11547 .addReg(/*Segment=*/0)
11548 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000011549 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011550 }
11551
Dan Gohman14152b42010-07-06 20:24:04 +000011552 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011553
11554 return EndMBB;
11555}
Mon P Wang63307c32008-05-05 19:05:59 +000011556
Evan Cheng60c07e12006-07-05 22:17:51 +000011557MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000011558X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011559 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000011560 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11561 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000011562
Chris Lattner52600972009-09-02 05:57:00 +000011563 // To "insert" a SELECT_CC instruction, we actually have to insert the
11564 // diamond control-flow pattern. The incoming instruction knows the
11565 // destination vreg to set, the condition code register to branch on, the
11566 // true/false values to select between, and a branch opcode to use.
11567 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11568 MachineFunction::iterator It = BB;
11569 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000011570
Chris Lattner52600972009-09-02 05:57:00 +000011571 // thisMBB:
11572 // ...
11573 // TrueVal = ...
11574 // cmpTY ccX, r1, r2
11575 // bCC copy1MBB
11576 // fallthrough --> copy0MBB
11577 MachineBasicBlock *thisMBB = BB;
11578 MachineFunction *F = BB->getParent();
11579 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
11580 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000011581 F->insert(It, copy0MBB);
11582 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000011583
Bill Wendling730c07e2010-06-25 20:48:10 +000011584 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11585 // live into the sink and copy blocks.
11586 const MachineFunction *MF = BB->getParent();
11587 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
11588 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000011589
Dan Gohman14152b42010-07-06 20:24:04 +000011590 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
11591 const MachineOperand &MO = MI->getOperand(I);
11592 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000011593 unsigned Reg = MO.getReg();
11594 if (Reg != X86::EFLAGS) continue;
11595 copy0MBB->addLiveIn(Reg);
11596 sinkMBB->addLiveIn(Reg);
11597 }
11598
Dan Gohman14152b42010-07-06 20:24:04 +000011599 // Transfer the remainder of BB and its successor edges to sinkMBB.
11600 sinkMBB->splice(sinkMBB->begin(), BB,
11601 llvm::next(MachineBasicBlock::iterator(MI)),
11602 BB->end());
11603 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11604
11605 // Add the true and fallthrough blocks as its successors.
11606 BB->addSuccessor(copy0MBB);
11607 BB->addSuccessor(sinkMBB);
11608
11609 // Create the conditional branch instruction.
11610 unsigned Opc =
11611 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11612 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11613
Chris Lattner52600972009-09-02 05:57:00 +000011614 // copy0MBB:
11615 // %FalseValue = ...
11616 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011617 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011618
Chris Lattner52600972009-09-02 05:57:00 +000011619 // sinkMBB:
11620 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11621 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011622 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11623 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011624 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11625 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11626
Dan Gohman14152b42010-07-06 20:24:04 +000011627 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011628 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011629}
11630
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011631MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011632X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011633 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011634 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11635 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011636
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011637 assert(!Subtarget->isTargetEnvMacho());
11638
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011639 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11640 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011641
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011642 if (Subtarget->isTargetWin64()) {
11643 if (Subtarget->isTargetCygMing()) {
11644 // ___chkstk(Mingw64):
11645 // Clobbers R10, R11, RAX and EFLAGS.
11646 // Updates RSP.
11647 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11648 .addExternalSymbol("___chkstk")
11649 .addReg(X86::RAX, RegState::Implicit)
11650 .addReg(X86::RSP, RegState::Implicit)
11651 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11652 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11653 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11654 } else {
11655 // __chkstk(MSVCRT): does not update stack pointer.
11656 // Clobbers R10, R11 and EFLAGS.
11657 // FIXME: RAX(allocated size) might be reused and not killed.
11658 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11659 .addExternalSymbol("__chkstk")
11660 .addReg(X86::RAX, RegState::Implicit)
11661 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11662 // RAX has the offset to subtracted from RSP.
11663 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11664 .addReg(X86::RSP)
11665 .addReg(X86::RAX);
11666 }
11667 } else {
11668 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011669 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11670
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011671 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11672 .addExternalSymbol(StackProbeSymbol)
11673 .addReg(X86::EAX, RegState::Implicit)
11674 .addReg(X86::ESP, RegState::Implicit)
11675 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11676 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11677 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11678 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011679
Dan Gohman14152b42010-07-06 20:24:04 +000011680 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011681 return BB;
11682}
Chris Lattner52600972009-09-02 05:57:00 +000011683
11684MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011685X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11686 MachineBasicBlock *BB) const {
11687 // This is pretty easy. We're taking the value that we received from
11688 // our load from the relocation, sticking it in either RDI (x86-64)
11689 // or EAX and doing an indirect call. The return value will then
11690 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011691 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011692 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011693 DebugLoc DL = MI->getDebugLoc();
11694 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011695
11696 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011697 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011698
Eric Christopher30ef0e52010-06-03 04:07:48 +000011699 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011700 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11701 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011702 .addReg(X86::RIP)
11703 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011704 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011705 MI->getOperand(3).getTargetFlags())
11706 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011707 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011708 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011709 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011710 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11711 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011712 .addReg(0)
11713 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011714 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011715 MI->getOperand(3).getTargetFlags())
11716 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011717 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011718 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011719 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011720 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11721 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011722 .addReg(TII->getGlobalBaseReg(F))
11723 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011724 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011725 MI->getOperand(3).getTargetFlags())
11726 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011727 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011728 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011729 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011730
Dan Gohman14152b42010-07-06 20:24:04 +000011731 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011732 return BB;
11733}
11734
11735MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011736X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011737 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011738 switch (MI->getOpcode()) {
11739 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011740 case X86::TAILJMPd64:
11741 case X86::TAILJMPr64:
11742 case X86::TAILJMPm64:
11743 assert(!"TAILJMP64 would not be touched here.");
11744 case X86::TCRETURNdi64:
11745 case X86::TCRETURNri64:
11746 case X86::TCRETURNmi64:
11747 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11748 // On AMD64, additional defs should be added before register allocation.
11749 if (!Subtarget->isTargetWin64()) {
11750 MI->addRegisterDefined(X86::RSI);
11751 MI->addRegisterDefined(X86::RDI);
11752 MI->addRegisterDefined(X86::XMM6);
11753 MI->addRegisterDefined(X86::XMM7);
11754 MI->addRegisterDefined(X86::XMM8);
11755 MI->addRegisterDefined(X86::XMM9);
11756 MI->addRegisterDefined(X86::XMM10);
11757 MI->addRegisterDefined(X86::XMM11);
11758 MI->addRegisterDefined(X86::XMM12);
11759 MI->addRegisterDefined(X86::XMM13);
11760 MI->addRegisterDefined(X86::XMM14);
11761 MI->addRegisterDefined(X86::XMM15);
11762 }
11763 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011764 case X86::WIN_ALLOCA:
11765 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011766 case X86::TLSCall_32:
11767 case X86::TLSCall_64:
11768 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011769 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011770 case X86::CMOV_FR32:
11771 case X86::CMOV_FR64:
11772 case X86::CMOV_V4F32:
11773 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011774 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000011775 case X86::CMOV_V8F32:
11776 case X86::CMOV_V4F64:
11777 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011778 case X86::CMOV_GR16:
11779 case X86::CMOV_GR32:
11780 case X86::CMOV_RFP32:
11781 case X86::CMOV_RFP64:
11782 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011783 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011784
Dale Johannesen849f2142007-07-03 00:53:03 +000011785 case X86::FP32_TO_INT16_IN_MEM:
11786 case X86::FP32_TO_INT32_IN_MEM:
11787 case X86::FP32_TO_INT64_IN_MEM:
11788 case X86::FP64_TO_INT16_IN_MEM:
11789 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011790 case X86::FP64_TO_INT64_IN_MEM:
11791 case X86::FP80_TO_INT16_IN_MEM:
11792 case X86::FP80_TO_INT32_IN_MEM:
11793 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011794 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11795 DebugLoc DL = MI->getDebugLoc();
11796
Evan Cheng60c07e12006-07-05 22:17:51 +000011797 // Change the floating point control register to use "round towards zero"
11798 // mode when truncating to an integer value.
11799 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011800 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011801 addFrameReference(BuildMI(*BB, MI, DL,
11802 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011803
11804 // Load the old value of the high byte of the control word...
11805 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011806 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011807 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011808 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011809
11810 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011811 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011812 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011813
11814 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011815 addFrameReference(BuildMI(*BB, MI, DL,
11816 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011817
11818 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011819 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011820 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011821
11822 // Get the X86 opcode to use.
11823 unsigned Opc;
11824 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011825 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011826 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11827 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11828 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11829 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11830 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11831 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011832 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11833 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11834 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011835 }
11836
11837 X86AddressMode AM;
11838 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011839 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011840 AM.BaseType = X86AddressMode::RegBase;
11841 AM.Base.Reg = Op.getReg();
11842 } else {
11843 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011844 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011845 }
11846 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011847 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011848 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011849 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011850 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011851 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011852 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011853 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011854 AM.GV = Op.getGlobal();
11855 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011856 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011857 }
Dan Gohman14152b42010-07-06 20:24:04 +000011858 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011859 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011860
11861 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011862 addFrameReference(BuildMI(*BB, MI, DL,
11863 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011864
Dan Gohman14152b42010-07-06 20:24:04 +000011865 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011866 return BB;
11867 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011868 // String/text processing lowering.
11869 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011870 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011871 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11872 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011873 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011874 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11875 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011876 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011877 return EmitPCMP(MI, BB, 5, false /* in mem */);
11878 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011879 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011880 return EmitPCMP(MI, BB, 5, true /* in mem */);
11881
Eric Christopher228232b2010-11-30 07:20:12 +000011882 // Thread synchronization.
11883 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011884 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011885 case X86::MWAIT:
11886 return EmitMwait(MI, BB);
11887
Eric Christopherb120ab42009-08-18 22:50:32 +000011888 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011889 case X86::ATOMAND32:
11890 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011891 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011892 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011893 X86::NOT32r, X86::EAX,
11894 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011895 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011896 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11897 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011898 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011899 X86::NOT32r, X86::EAX,
11900 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011901 case X86::ATOMXOR32:
11902 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011903 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011904 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011905 X86::NOT32r, X86::EAX,
11906 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011907 case X86::ATOMNAND32:
11908 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011909 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011910 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011911 X86::NOT32r, X86::EAX,
11912 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011913 case X86::ATOMMIN32:
11914 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11915 case X86::ATOMMAX32:
11916 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11917 case X86::ATOMUMIN32:
11918 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11919 case X86::ATOMUMAX32:
11920 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011921
11922 case X86::ATOMAND16:
11923 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11924 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011925 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011926 X86::NOT16r, X86::AX,
11927 X86::GR16RegisterClass);
11928 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011929 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011930 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011931 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011932 X86::NOT16r, X86::AX,
11933 X86::GR16RegisterClass);
11934 case X86::ATOMXOR16:
11935 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11936 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011937 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011938 X86::NOT16r, X86::AX,
11939 X86::GR16RegisterClass);
11940 case X86::ATOMNAND16:
11941 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11942 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011943 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011944 X86::NOT16r, X86::AX,
11945 X86::GR16RegisterClass, true);
11946 case X86::ATOMMIN16:
11947 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11948 case X86::ATOMMAX16:
11949 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11950 case X86::ATOMUMIN16:
11951 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11952 case X86::ATOMUMAX16:
11953 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11954
11955 case X86::ATOMAND8:
11956 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11957 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011958 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011959 X86::NOT8r, X86::AL,
11960 X86::GR8RegisterClass);
11961 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011962 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011963 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011964 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011965 X86::NOT8r, X86::AL,
11966 X86::GR8RegisterClass);
11967 case X86::ATOMXOR8:
11968 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11969 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011970 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011971 X86::NOT8r, X86::AL,
11972 X86::GR8RegisterClass);
11973 case X86::ATOMNAND8:
11974 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11975 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011976 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011977 X86::NOT8r, X86::AL,
11978 X86::GR8RegisterClass, true);
11979 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011980 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011981 case X86::ATOMAND64:
11982 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011983 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011984 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011985 X86::NOT64r, X86::RAX,
11986 X86::GR64RegisterClass);
11987 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011988 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11989 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011990 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011991 X86::NOT64r, X86::RAX,
11992 X86::GR64RegisterClass);
11993 case X86::ATOMXOR64:
11994 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011995 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011996 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011997 X86::NOT64r, X86::RAX,
11998 X86::GR64RegisterClass);
11999 case X86::ATOMNAND64:
12000 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
12001 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012002 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012003 X86::NOT64r, X86::RAX,
12004 X86::GR64RegisterClass, true);
12005 case X86::ATOMMIN64:
12006 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
12007 case X86::ATOMMAX64:
12008 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
12009 case X86::ATOMUMIN64:
12010 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
12011 case X86::ATOMUMAX64:
12012 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012013
12014 // This group does 64-bit operations on a 32-bit host.
12015 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012016 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012017 X86::AND32rr, X86::AND32rr,
12018 X86::AND32ri, X86::AND32ri,
12019 false);
12020 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012021 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012022 X86::OR32rr, X86::OR32rr,
12023 X86::OR32ri, X86::OR32ri,
12024 false);
12025 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012026 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012027 X86::XOR32rr, X86::XOR32rr,
12028 X86::XOR32ri, X86::XOR32ri,
12029 false);
12030 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012031 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012032 X86::AND32rr, X86::AND32rr,
12033 X86::AND32ri, X86::AND32ri,
12034 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012035 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012036 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012037 X86::ADD32rr, X86::ADC32rr,
12038 X86::ADD32ri, X86::ADC32ri,
12039 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012040 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012041 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012042 X86::SUB32rr, X86::SBB32rr,
12043 X86::SUB32ri, X86::SBB32ri,
12044 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000012045 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012046 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000012047 X86::MOV32rr, X86::MOV32rr,
12048 X86::MOV32ri, X86::MOV32ri,
12049 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000012050 case X86::VASTART_SAVE_XMM_REGS:
12051 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000012052
12053 case X86::VAARG_64:
12054 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000012055 }
12056}
12057
12058//===----------------------------------------------------------------------===//
12059// X86 Optimization Hooks
12060//===----------------------------------------------------------------------===//
12061
Dan Gohman475871a2008-07-27 21:46:04 +000012062void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000012063 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012064 APInt &KnownZero,
12065 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000012066 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000012067 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012068 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000012069 assert((Opc >= ISD::BUILTIN_OP_END ||
12070 Opc == ISD::INTRINSIC_WO_CHAIN ||
12071 Opc == ISD::INTRINSIC_W_CHAIN ||
12072 Opc == ISD::INTRINSIC_VOID) &&
12073 "Should use MaskedValueIsZero if you don't know whether Op"
12074 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012075
Dan Gohmanf4f92f52008-02-13 23:07:24 +000012076 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012077 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000012078 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012079 case X86ISD::ADD:
12080 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000012081 case X86ISD::ADC:
12082 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012083 case X86ISD::SMUL:
12084 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000012085 case X86ISD::INC:
12086 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000012087 case X86ISD::OR:
12088 case X86ISD::XOR:
12089 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012090 // These nodes' second result is a boolean.
12091 if (Op.getResNo() == 0)
12092 break;
12093 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012094 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012095 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
12096 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000012097 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012098 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012099}
Chris Lattner259e97c2006-01-31 19:43:35 +000012100
Owen Andersonbc146b02010-09-21 20:42:50 +000012101unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
12102 unsigned Depth) const {
12103 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
12104 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
12105 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000012106
Owen Andersonbc146b02010-09-21 20:42:50 +000012107 // Fallback case.
12108 return 1;
12109}
12110
Evan Cheng206ee9d2006-07-07 08:33:52 +000012111/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000012112/// node is a GlobalAddress + offset.
12113bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000012114 const GlobalValue* &GA,
12115 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000012116 if (N->getOpcode() == X86ISD::Wrapper) {
12117 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012118 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000012119 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012120 return true;
12121 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000012122 }
Evan Chengad4196b2008-05-12 19:56:52 +000012123 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012124}
12125
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012126/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
12127/// same as extracting the high 128-bit part of 256-bit vector and then
12128/// inserting the result into the low part of a new 256-bit vector
12129static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
12130 EVT VT = SVOp->getValueType(0);
12131 int NumElems = VT.getVectorNumElements();
12132
12133 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12134 for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
12135 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12136 SVOp->getMaskElt(j) >= 0)
12137 return false;
12138
12139 return true;
12140}
12141
12142/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
12143/// same as extracting the low 128-bit part of 256-bit vector and then
12144/// inserting the result into the high part of a new 256-bit vector
12145static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
12146 EVT VT = SVOp->getValueType(0);
12147 int NumElems = VT.getVectorNumElements();
12148
12149 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12150 for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
12151 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12152 SVOp->getMaskElt(j) >= 0)
12153 return false;
12154
12155 return true;
12156}
12157
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012158/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
12159static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
12160 TargetLowering::DAGCombinerInfo &DCI) {
12161 DebugLoc dl = N->getDebugLoc();
12162 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
12163 SDValue V1 = SVOp->getOperand(0);
12164 SDValue V2 = SVOp->getOperand(1);
12165 EVT VT = SVOp->getValueType(0);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012166 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012167
12168 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
12169 V2.getOpcode() == ISD::CONCAT_VECTORS) {
12170 //
12171 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000012172 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012173 // V UNDEF BUILD_VECTOR UNDEF
12174 // \ / \ /
12175 // CONCAT_VECTOR CONCAT_VECTOR
12176 // \ /
12177 // \ /
12178 // RESULT: V + zero extended
12179 //
12180 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
12181 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
12182 V1.getOperand(1).getOpcode() != ISD::UNDEF)
12183 return SDValue();
12184
12185 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
12186 return SDValue();
12187
12188 // To match the shuffle mask, the first half of the mask should
12189 // be exactly the first vector, and all the rest a splat with the
12190 // first element of the second one.
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012191 for (int i = 0; i < NumElems/2; ++i)
12192 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
12193 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
12194 return SDValue();
12195
12196 // Emit a zeroed vector and insert the desired subvector on its
12197 // first half.
12198 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
12199 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
12200 DAG.getConstant(0, MVT::i32), DAG, dl);
12201 return DCI.CombineTo(N, InsV);
12202 }
12203
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012204 //===--------------------------------------------------------------------===//
12205 // Combine some shuffles into subvector extracts and inserts:
12206 //
12207
12208 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12209 if (isShuffleHigh128VectorInsertLow(SVOp)) {
12210 SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
12211 DAG, dl);
12212 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12213 V, DAG.getConstant(0, MVT::i32), DAG, dl);
12214 return DCI.CombineTo(N, InsV);
12215 }
12216
12217 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12218 if (isShuffleLow128VectorInsertHigh(SVOp)) {
12219 SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
12220 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12221 V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
12222 return DCI.CombineTo(N, InsV);
12223 }
12224
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012225 return SDValue();
12226}
12227
12228/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000012229static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012230 TargetLowering::DAGCombinerInfo &DCI,
12231 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000012232 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000012233 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000012234
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012235 // Don't create instructions with illegal types after legalize types has run.
12236 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12237 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
12238 return SDValue();
12239
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012240 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
12241 if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
12242 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012243 return PerformShuffleCombine256(N, DAG, DCI);
12244
12245 // Only handle 128 wide vector from here on.
12246 if (VT.getSizeInBits() != 128)
12247 return SDValue();
12248
12249 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
12250 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
12251 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000012252 SmallVector<SDValue, 16> Elts;
12253 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012254 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000012255
Nate Begemanfdea31a2010-03-24 20:49:50 +000012256 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000012257}
Evan Chengd880b972008-05-09 21:53:03 +000012258
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000012259/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
12260/// generation and convert it from being a bunch of shuffles and extracts
12261/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012262static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
12263 const TargetLowering &TLI) {
12264 SDValue InputVector = N->getOperand(0);
12265
12266 // Only operate on vectors of 4 elements, where the alternative shuffling
12267 // gets to be more expensive.
12268 if (InputVector.getValueType() != MVT::v4i32)
12269 return SDValue();
12270
12271 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
12272 // single use which is a sign-extend or zero-extend, and all elements are
12273 // used.
12274 SmallVector<SDNode *, 4> Uses;
12275 unsigned ExtractedElements = 0;
12276 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
12277 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
12278 if (UI.getUse().getResNo() != InputVector.getResNo())
12279 return SDValue();
12280
12281 SDNode *Extract = *UI;
12282 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
12283 return SDValue();
12284
12285 if (Extract->getValueType(0) != MVT::i32)
12286 return SDValue();
12287 if (!Extract->hasOneUse())
12288 return SDValue();
12289 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
12290 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
12291 return SDValue();
12292 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
12293 return SDValue();
12294
12295 // Record which element was extracted.
12296 ExtractedElements |=
12297 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
12298
12299 Uses.push_back(Extract);
12300 }
12301
12302 // If not all the elements were used, this may not be worthwhile.
12303 if (ExtractedElements != 15)
12304 return SDValue();
12305
12306 // Ok, we've now decided to do the transformation.
12307 DebugLoc dl = InputVector.getDebugLoc();
12308
12309 // Store the value to a temporary stack slot.
12310 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000012311 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
12312 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012313
12314 // Replace each use (extract) with a load of the appropriate element.
12315 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
12316 UE = Uses.end(); UI != UE; ++UI) {
12317 SDNode *Extract = *UI;
12318
Nadav Rotem86694292011-05-17 08:31:57 +000012319 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012320 SDValue Idx = Extract->getOperand(1);
12321 unsigned EltSize =
12322 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
12323 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
12324 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
12325
Nadav Rotem86694292011-05-17 08:31:57 +000012326 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012327 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012328
12329 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000012330 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000012331 ScalarAddr, MachinePointerInfo(),
12332 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012333
12334 // Replace the exact with the load.
12335 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
12336 }
12337
12338 // The replacement was made in place; don't return anything.
12339 return SDValue();
12340}
12341
Chris Lattner83e6c992006-10-04 06:57:07 +000012342/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012343static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000012344 const X86Subtarget *Subtarget) {
12345 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000012346 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000012347 // Get the LHS/RHS of the select.
12348 SDValue LHS = N->getOperand(1);
12349 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000012350
Dan Gohman670e5392009-09-21 18:03:22 +000012351 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000012352 // instructions match the semantics of the common C idiom x<y?x:y but not
12353 // x<=y?x:y, because of how they handle negative zero (which can be
12354 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000012355 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000012356 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000012357 Cond.getOpcode() == ISD::SETCC) {
12358 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012359
Chris Lattner47b4ce82009-03-11 05:48:52 +000012360 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000012361 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000012362 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
12363 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012364 switch (CC) {
12365 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012366 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012367 // Converting this to a min would handle NaNs incorrectly, and swapping
12368 // the operands would cause it to handle comparisons between positive
12369 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012370 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012371 if (!UnsafeFPMath &&
12372 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12373 break;
12374 std::swap(LHS, RHS);
12375 }
Dan Gohman670e5392009-09-21 18:03:22 +000012376 Opcode = X86ISD::FMIN;
12377 break;
12378 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012379 // Converting this to a min would handle comparisons between positive
12380 // and negative zero incorrectly.
12381 if (!UnsafeFPMath &&
12382 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
12383 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012384 Opcode = X86ISD::FMIN;
12385 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012386 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012387 // Converting this to a min would handle both negative zeros and NaNs
12388 // incorrectly, but we can swap the operands to fix both.
12389 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012390 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012391 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012392 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012393 Opcode = X86ISD::FMIN;
12394 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012395
Dan Gohman670e5392009-09-21 18:03:22 +000012396 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012397 // Converting this to a max would handle comparisons between positive
12398 // and negative zero incorrectly.
12399 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000012400 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012401 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012402 Opcode = X86ISD::FMAX;
12403 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012404 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012405 // Converting this to a max would handle NaNs incorrectly, and swapping
12406 // the operands would cause it to handle comparisons between positive
12407 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012408 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012409 if (!UnsafeFPMath &&
12410 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12411 break;
12412 std::swap(LHS, RHS);
12413 }
Dan Gohman670e5392009-09-21 18:03:22 +000012414 Opcode = X86ISD::FMAX;
12415 break;
12416 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012417 // Converting this to a max would handle both negative zeros and NaNs
12418 // incorrectly, but we can swap the operands to fix both.
12419 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012420 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012421 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012422 case ISD::SETGE:
12423 Opcode = X86ISD::FMAX;
12424 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000012425 }
Dan Gohman670e5392009-09-21 18:03:22 +000012426 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000012427 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
12428 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012429 switch (CC) {
12430 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012431 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012432 // Converting this to a min would handle comparisons between positive
12433 // and negative zero incorrectly, and swapping the operands would
12434 // cause it to handle NaNs incorrectly.
12435 if (!UnsafeFPMath &&
12436 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000012437 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012438 break;
12439 std::swap(LHS, RHS);
12440 }
Dan Gohman670e5392009-09-21 18:03:22 +000012441 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000012442 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012443 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012444 // Converting this to a min would handle NaNs incorrectly.
12445 if (!UnsafeFPMath &&
12446 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
12447 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012448 Opcode = X86ISD::FMIN;
12449 break;
12450 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012451 // Converting this to a min would handle both negative zeros and NaNs
12452 // incorrectly, but we can swap the operands to fix both.
12453 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012454 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012455 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012456 case ISD::SETGE:
12457 Opcode = X86ISD::FMIN;
12458 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012459
Dan Gohman670e5392009-09-21 18:03:22 +000012460 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012461 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012462 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012463 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012464 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000012465 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012466 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012467 // Converting this to a max would handle comparisons between positive
12468 // and negative zero incorrectly, and swapping the operands would
12469 // cause it to handle NaNs incorrectly.
12470 if (!UnsafeFPMath &&
12471 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000012472 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012473 break;
12474 std::swap(LHS, RHS);
12475 }
Dan Gohman670e5392009-09-21 18:03:22 +000012476 Opcode = X86ISD::FMAX;
12477 break;
12478 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012479 // Converting this to a max would handle both negative zeros and NaNs
12480 // incorrectly, but we can swap the operands to fix both.
12481 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012482 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012483 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012484 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012485 Opcode = X86ISD::FMAX;
12486 break;
12487 }
Chris Lattner83e6c992006-10-04 06:57:07 +000012488 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012489
Chris Lattner47b4ce82009-03-11 05:48:52 +000012490 if (Opcode)
12491 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000012492 }
Eric Christopherfd179292009-08-27 18:07:15 +000012493
Chris Lattnerd1980a52009-03-12 06:52:53 +000012494 // If this is a select between two integer constants, try to do some
12495 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000012496 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
12497 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000012498 // Don't do this for crazy integer types.
12499 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
12500 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000012501 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012502 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000012503
Chris Lattnercee56e72009-03-13 05:53:31 +000012504 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000012505 // Efficiently invertible.
12506 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
12507 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
12508 isa<ConstantSDNode>(Cond.getOperand(1))))) {
12509 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000012510 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012511 }
Eric Christopherfd179292009-08-27 18:07:15 +000012512
Chris Lattnerd1980a52009-03-12 06:52:53 +000012513 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012514 if (FalseC->getAPIntValue() == 0 &&
12515 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012516 if (NeedsCondInvert) // Invert the condition if needed.
12517 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12518 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012519
Chris Lattnerd1980a52009-03-12 06:52:53 +000012520 // Zero extend the condition if needed.
12521 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012522
Chris Lattnercee56e72009-03-13 05:53:31 +000012523 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000012524 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012525 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012526 }
Eric Christopherfd179292009-08-27 18:07:15 +000012527
Chris Lattner97a29a52009-03-13 05:22:11 +000012528 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000012529 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000012530 if (NeedsCondInvert) // Invert the condition if needed.
12531 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12532 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012533
Chris Lattner97a29a52009-03-13 05:22:11 +000012534 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012535 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12536 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012537 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000012538 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000012539 }
Eric Christopherfd179292009-08-27 18:07:15 +000012540
Chris Lattnercee56e72009-03-13 05:53:31 +000012541 // Optimize cases that will turn into an LEA instruction. This requires
12542 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012543 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012544 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012545 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012546
Chris Lattnercee56e72009-03-13 05:53:31 +000012547 bool isFastMultiplier = false;
12548 if (Diff < 10) {
12549 switch ((unsigned char)Diff) {
12550 default: break;
12551 case 1: // result = add base, cond
12552 case 2: // result = lea base( , cond*2)
12553 case 3: // result = lea base(cond, cond*2)
12554 case 4: // result = lea base( , cond*4)
12555 case 5: // result = lea base(cond, cond*4)
12556 case 8: // result = lea base( , cond*8)
12557 case 9: // result = lea base(cond, cond*8)
12558 isFastMultiplier = true;
12559 break;
12560 }
12561 }
Eric Christopherfd179292009-08-27 18:07:15 +000012562
Chris Lattnercee56e72009-03-13 05:53:31 +000012563 if (isFastMultiplier) {
12564 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
12565 if (NeedsCondInvert) // Invert the condition if needed.
12566 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12567 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012568
Chris Lattnercee56e72009-03-13 05:53:31 +000012569 // Zero extend the condition if needed.
12570 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12571 Cond);
12572 // Scale the condition by the difference.
12573 if (Diff != 1)
12574 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12575 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012576
Chris Lattnercee56e72009-03-13 05:53:31 +000012577 // Add the base if non-zero.
12578 if (FalseC->getAPIntValue() != 0)
12579 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12580 SDValue(FalseC, 0));
12581 return Cond;
12582 }
Eric Christopherfd179292009-08-27 18:07:15 +000012583 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012584 }
12585 }
Eric Christopherfd179292009-08-27 18:07:15 +000012586
Dan Gohman475871a2008-07-27 21:46:04 +000012587 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000012588}
12589
Chris Lattnerd1980a52009-03-12 06:52:53 +000012590/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
12591static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
12592 TargetLowering::DAGCombinerInfo &DCI) {
12593 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000012594
Chris Lattnerd1980a52009-03-12 06:52:53 +000012595 // If the flag operand isn't dead, don't touch this CMOV.
12596 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
12597 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000012598
Evan Chengb5a55d92011-05-24 01:48:22 +000012599 SDValue FalseOp = N->getOperand(0);
12600 SDValue TrueOp = N->getOperand(1);
12601 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
12602 SDValue Cond = N->getOperand(3);
12603 if (CC == X86::COND_E || CC == X86::COND_NE) {
12604 switch (Cond.getOpcode()) {
12605 default: break;
12606 case X86ISD::BSR:
12607 case X86ISD::BSF:
12608 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
12609 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
12610 return (CC == X86::COND_E) ? FalseOp : TrueOp;
12611 }
12612 }
12613
Chris Lattnerd1980a52009-03-12 06:52:53 +000012614 // If this is a select between two integer constants, try to do some
12615 // optimizations. Note that the operands are ordered the opposite of SELECT
12616 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000012617 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
12618 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012619 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
12620 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000012621 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
12622 CC = X86::GetOppositeBranchCondition(CC);
12623 std::swap(TrueC, FalseC);
12624 }
Eric Christopherfd179292009-08-27 18:07:15 +000012625
Chris Lattnerd1980a52009-03-12 06:52:53 +000012626 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012627 // This is efficient for any integer data type (including i8/i16) and
12628 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012629 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012630 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12631 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012632
Chris Lattnerd1980a52009-03-12 06:52:53 +000012633 // Zero extend the condition if needed.
12634 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012635
Chris Lattnerd1980a52009-03-12 06:52:53 +000012636 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
12637 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012638 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012639 if (N->getNumValues() == 2) // Dead flag value?
12640 return DCI.CombineTo(N, Cond, SDValue());
12641 return Cond;
12642 }
Eric Christopherfd179292009-08-27 18:07:15 +000012643
Chris Lattnercee56e72009-03-13 05:53:31 +000012644 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
12645 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000012646 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012647 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12648 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012649
Chris Lattner97a29a52009-03-13 05:22:11 +000012650 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012651 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12652 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012653 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12654 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012655
Chris Lattner97a29a52009-03-13 05:22:11 +000012656 if (N->getNumValues() == 2) // Dead flag value?
12657 return DCI.CombineTo(N, Cond, SDValue());
12658 return Cond;
12659 }
Eric Christopherfd179292009-08-27 18:07:15 +000012660
Chris Lattnercee56e72009-03-13 05:53:31 +000012661 // Optimize cases that will turn into an LEA instruction. This requires
12662 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012663 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012664 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012665 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012666
Chris Lattnercee56e72009-03-13 05:53:31 +000012667 bool isFastMultiplier = false;
12668 if (Diff < 10) {
12669 switch ((unsigned char)Diff) {
12670 default: break;
12671 case 1: // result = add base, cond
12672 case 2: // result = lea base( , cond*2)
12673 case 3: // result = lea base(cond, cond*2)
12674 case 4: // result = lea base( , cond*4)
12675 case 5: // result = lea base(cond, cond*4)
12676 case 8: // result = lea base( , cond*8)
12677 case 9: // result = lea base(cond, cond*8)
12678 isFastMultiplier = true;
12679 break;
12680 }
12681 }
Eric Christopherfd179292009-08-27 18:07:15 +000012682
Chris Lattnercee56e72009-03-13 05:53:31 +000012683 if (isFastMultiplier) {
12684 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012685 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12686 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012687 // Zero extend the condition if needed.
12688 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12689 Cond);
12690 // Scale the condition by the difference.
12691 if (Diff != 1)
12692 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12693 DAG.getConstant(Diff, Cond.getValueType()));
12694
12695 // Add the base if non-zero.
12696 if (FalseC->getAPIntValue() != 0)
12697 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12698 SDValue(FalseC, 0));
12699 if (N->getNumValues() == 2) // Dead flag value?
12700 return DCI.CombineTo(N, Cond, SDValue());
12701 return Cond;
12702 }
Eric Christopherfd179292009-08-27 18:07:15 +000012703 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012704 }
12705 }
12706 return SDValue();
12707}
12708
12709
Evan Cheng0b0cd912009-03-28 05:57:29 +000012710/// PerformMulCombine - Optimize a single multiply with constant into two
12711/// in order to implement it with two cheaper instructions, e.g.
12712/// LEA + SHL, LEA + LEA.
12713static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12714 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012715 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12716 return SDValue();
12717
Owen Andersone50ed302009-08-10 22:56:29 +000012718 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012719 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012720 return SDValue();
12721
12722 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12723 if (!C)
12724 return SDValue();
12725 uint64_t MulAmt = C->getZExtValue();
12726 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12727 return SDValue();
12728
12729 uint64_t MulAmt1 = 0;
12730 uint64_t MulAmt2 = 0;
12731 if ((MulAmt % 9) == 0) {
12732 MulAmt1 = 9;
12733 MulAmt2 = MulAmt / 9;
12734 } else if ((MulAmt % 5) == 0) {
12735 MulAmt1 = 5;
12736 MulAmt2 = MulAmt / 5;
12737 } else if ((MulAmt % 3) == 0) {
12738 MulAmt1 = 3;
12739 MulAmt2 = MulAmt / 3;
12740 }
12741 if (MulAmt2 &&
12742 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12743 DebugLoc DL = N->getDebugLoc();
12744
12745 if (isPowerOf2_64(MulAmt2) &&
12746 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12747 // If second multiplifer is pow2, issue it first. We want the multiply by
12748 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12749 // is an add.
12750 std::swap(MulAmt1, MulAmt2);
12751
12752 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012753 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012754 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012755 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012756 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012757 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012758 DAG.getConstant(MulAmt1, VT));
12759
Eric Christopherfd179292009-08-27 18:07:15 +000012760 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012761 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012762 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012763 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012764 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012765 DAG.getConstant(MulAmt2, VT));
12766
12767 // Do not add new nodes to DAG combiner worklist.
12768 DCI.CombineTo(N, NewMul, false);
12769 }
12770 return SDValue();
12771}
12772
Evan Chengad9c0a32009-12-15 00:53:42 +000012773static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12774 SDValue N0 = N->getOperand(0);
12775 SDValue N1 = N->getOperand(1);
12776 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12777 EVT VT = N0.getValueType();
12778
12779 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12780 // since the result of setcc_c is all zero's or all ones.
12781 if (N1C && N0.getOpcode() == ISD::AND &&
12782 N0.getOperand(1).getOpcode() == ISD::Constant) {
12783 SDValue N00 = N0.getOperand(0);
12784 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12785 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12786 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12787 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12788 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12789 APInt ShAmt = N1C->getAPIntValue();
12790 Mask = Mask.shl(ShAmt);
12791 if (Mask != 0)
12792 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12793 N00, DAG.getConstant(Mask, VT));
12794 }
12795 }
12796
12797 return SDValue();
12798}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012799
Nate Begeman740ab032009-01-26 00:52:55 +000012800/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12801/// when possible.
12802static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12803 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012804 EVT VT = N->getValueType(0);
12805 if (!VT.isVector() && VT.isInteger() &&
12806 N->getOpcode() == ISD::SHL)
12807 return PerformSHLCombine(N, DAG);
12808
Nate Begeman740ab032009-01-26 00:52:55 +000012809 // On X86 with SSE2 support, we can transform this to a vector shift if
12810 // all elements are shifted by the same amount. We can't do this in legalize
12811 // because the a constant vector is typically transformed to a constant pool
12812 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000012813 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012814 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012815
Owen Anderson825b72b2009-08-11 20:47:22 +000012816 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012817 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012818
Mon P Wang3becd092009-01-28 08:12:05 +000012819 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012820 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012821 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012822 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012823 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12824 unsigned NumElts = VT.getVectorNumElements();
12825 unsigned i = 0;
12826 for (; i != NumElts; ++i) {
12827 SDValue Arg = ShAmtOp.getOperand(i);
12828 if (Arg.getOpcode() == ISD::UNDEF) continue;
12829 BaseShAmt = Arg;
12830 break;
12831 }
12832 for (; i != NumElts; ++i) {
12833 SDValue Arg = ShAmtOp.getOperand(i);
12834 if (Arg.getOpcode() == ISD::UNDEF) continue;
12835 if (Arg != BaseShAmt) {
12836 return SDValue();
12837 }
12838 }
12839 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012840 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012841 SDValue InVec = ShAmtOp.getOperand(0);
12842 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12843 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12844 unsigned i = 0;
12845 for (; i != NumElts; ++i) {
12846 SDValue Arg = InVec.getOperand(i);
12847 if (Arg.getOpcode() == ISD::UNDEF) continue;
12848 BaseShAmt = Arg;
12849 break;
12850 }
12851 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12852 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012853 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012854 if (C->getZExtValue() == SplatIdx)
12855 BaseShAmt = InVec.getOperand(1);
12856 }
12857 }
12858 if (BaseShAmt.getNode() == 0)
12859 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12860 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012861 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012862 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012863
Mon P Wangefa42202009-09-03 19:56:25 +000012864 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012865 if (EltVT.bitsGT(MVT::i32))
12866 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12867 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012868 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012869
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012870 // The shift amount is identical so we can do a vector shift.
12871 SDValue ValOp = N->getOperand(0);
12872 switch (N->getOpcode()) {
12873 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012874 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012875 break;
12876 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012877 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012878 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012879 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012880 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012881 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012882 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012883 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012884 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012885 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012886 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012887 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012888 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012889 break;
12890 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012891 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012892 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012893 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012894 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012895 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012896 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012897 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012898 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012899 break;
12900 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012901 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012902 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012903 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012904 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012905 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012906 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012907 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012908 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012909 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012910 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012911 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012912 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012913 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012914 }
12915 return SDValue();
12916}
12917
Nate Begemanb65c1752010-12-17 22:55:37 +000012918
Stuart Hastings865f0932011-06-03 23:53:54 +000012919// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12920// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12921// and friends. Likewise for OR -> CMPNEQSS.
12922static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12923 TargetLowering::DAGCombinerInfo &DCI,
12924 const X86Subtarget *Subtarget) {
12925 unsigned opcode;
12926
12927 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12928 // we're requiring SSE2 for both.
12929 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12930 SDValue N0 = N->getOperand(0);
12931 SDValue N1 = N->getOperand(1);
12932 SDValue CMP0 = N0->getOperand(1);
12933 SDValue CMP1 = N1->getOperand(1);
12934 DebugLoc DL = N->getDebugLoc();
12935
12936 // The SETCCs should both refer to the same CMP.
12937 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12938 return SDValue();
12939
12940 SDValue CMP00 = CMP0->getOperand(0);
12941 SDValue CMP01 = CMP0->getOperand(1);
12942 EVT VT = CMP00.getValueType();
12943
12944 if (VT == MVT::f32 || VT == MVT::f64) {
12945 bool ExpectingFlags = false;
12946 // Check for any users that want flags:
12947 for (SDNode::use_iterator UI = N->use_begin(),
12948 UE = N->use_end();
12949 !ExpectingFlags && UI != UE; ++UI)
12950 switch (UI->getOpcode()) {
12951 default:
12952 case ISD::BR_CC:
12953 case ISD::BRCOND:
12954 case ISD::SELECT:
12955 ExpectingFlags = true;
12956 break;
12957 case ISD::CopyToReg:
12958 case ISD::SIGN_EXTEND:
12959 case ISD::ZERO_EXTEND:
12960 case ISD::ANY_EXTEND:
12961 break;
12962 }
12963
12964 if (!ExpectingFlags) {
12965 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12966 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12967
12968 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12969 X86::CondCode tmp = cc0;
12970 cc0 = cc1;
12971 cc1 = tmp;
12972 }
12973
12974 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12975 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12976 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12977 X86ISD::NodeType NTOperator = is64BitFP ?
12978 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12979 // FIXME: need symbolic constants for these magic numbers.
12980 // See X86ATTInstPrinter.cpp:printSSECC().
12981 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12982 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12983 DAG.getConstant(x86cc, MVT::i8));
12984 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12985 OnesOrZeroesF);
12986 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12987 DAG.getConstant(1, MVT::i32));
12988 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12989 return OneBitOfTruth;
12990 }
12991 }
12992 }
12993 }
12994 return SDValue();
12995}
12996
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012997/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12998/// so it can be folded inside ANDNP.
12999static bool CanFoldXORWithAllOnes(const SDNode *N) {
13000 EVT VT = N->getValueType(0);
13001
13002 // Match direct AllOnes for 128 and 256-bit vectors
13003 if (ISD::isBuildVectorAllOnes(N))
13004 return true;
13005
13006 // Look through a bit convert.
13007 if (N->getOpcode() == ISD::BITCAST)
13008 N = N->getOperand(0).getNode();
13009
13010 // Sometimes the operand may come from a insert_subvector building a 256-bit
13011 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013012 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000013013 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
13014 SDValue V1 = N->getOperand(0);
13015 SDValue V2 = N->getOperand(1);
13016
13017 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
13018 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
13019 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
13020 ISD::isBuildVectorAllOnes(V2.getNode()))
13021 return true;
13022 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013023
13024 return false;
13025}
13026
Nate Begemanb65c1752010-12-17 22:55:37 +000013027static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
13028 TargetLowering::DAGCombinerInfo &DCI,
13029 const X86Subtarget *Subtarget) {
13030 if (DCI.isBeforeLegalizeOps())
13031 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013032
Stuart Hastings865f0932011-06-03 23:53:54 +000013033 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13034 if (R.getNode())
13035 return R;
13036
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013037 // Want to form ANDNP nodes:
13038 // 1) In the hopes of then easily combining them with OR and AND nodes
13039 // to form PBLEND/PSIGN.
13040 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000013041 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013042 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000013043 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013044
Nate Begemanb65c1752010-12-17 22:55:37 +000013045 SDValue N0 = N->getOperand(0);
13046 SDValue N1 = N->getOperand(1);
13047 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013048
Nate Begemanb65c1752010-12-17 22:55:37 +000013049 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013050 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013051 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
13052 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013053 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000013054
13055 // Check RHS for vnot
13056 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013057 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
13058 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013059 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013060
Nate Begemanb65c1752010-12-17 22:55:37 +000013061 return SDValue();
13062}
13063
Evan Cheng760d1942010-01-04 21:22:48 +000013064static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000013065 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000013066 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000013067 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000013068 return SDValue();
13069
Stuart Hastings865f0932011-06-03 23:53:54 +000013070 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13071 if (R.getNode())
13072 return R;
13073
Evan Cheng760d1942010-01-04 21:22:48 +000013074 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000013075 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000013076 return SDValue();
13077
Evan Cheng760d1942010-01-04 21:22:48 +000013078 SDValue N0 = N->getOperand(0);
13079 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013080
Nate Begemanb65c1752010-12-17 22:55:37 +000013081 // look for psign/blend
13082 if (Subtarget->hasSSSE3()) {
13083 if (VT == MVT::v2i64) {
13084 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013085 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000013086 std::swap(N0, N1);
13087 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013088 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000013089 SDValue Mask = N1.getOperand(0);
13090 SDValue X = N1.getOperand(1);
13091 SDValue Y;
13092 if (N0.getOperand(0) == Mask)
13093 Y = N0.getOperand(1);
13094 if (N0.getOperand(1) == Mask)
13095 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013096
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013097 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000013098 if (!Y.getNode())
13099 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013100
Nate Begemanb65c1752010-12-17 22:55:37 +000013101 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
13102 if (Mask.getOpcode() != ISD::BITCAST ||
13103 X.getOpcode() != ISD::BITCAST ||
13104 Y.getOpcode() != ISD::BITCAST)
13105 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013106
Nate Begemanb65c1752010-12-17 22:55:37 +000013107 // Look through mask bitcast.
13108 Mask = Mask.getOperand(0);
13109 EVT MaskVT = Mask.getValueType();
13110
13111 // Validate that the Mask operand is a vector sra node. The sra node
13112 // will be an intrinsic.
13113 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
13114 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013115
Nate Begemanb65c1752010-12-17 22:55:37 +000013116 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
13117 // there is no psrai.b
13118 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
13119 case Intrinsic::x86_sse2_psrai_w:
13120 case Intrinsic::x86_sse2_psrai_d:
13121 break;
13122 default: return SDValue();
13123 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013124
Nate Begemanb65c1752010-12-17 22:55:37 +000013125 // Check that the SRA is all signbits.
13126 SDValue SraC = Mask.getOperand(2);
13127 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
13128 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
13129 if ((SraAmt + 1) != EltBits)
13130 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013131
Nate Begemanb65c1752010-12-17 22:55:37 +000013132 DebugLoc DL = N->getDebugLoc();
13133
13134 // Now we know we at least have a plendvb with the mask val. See if
13135 // we can form a psignb/w/d.
13136 // psign = x.type == y.type == mask.type && y = sub(0, x);
13137 X = X.getOperand(0);
13138 Y = Y.getOperand(0);
13139 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
13140 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
13141 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
13142 unsigned Opc = 0;
13143 switch (EltBits) {
13144 case 8: Opc = X86ISD::PSIGNB; break;
13145 case 16: Opc = X86ISD::PSIGNW; break;
13146 case 32: Opc = X86ISD::PSIGND; break;
13147 default: break;
13148 }
13149 if (Opc) {
13150 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
13151 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
13152 }
13153 }
13154 // PBLENDVB only available on SSE 4.1
13155 if (!Subtarget->hasSSE41())
13156 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013157
Nate Begemanb65c1752010-12-17 22:55:37 +000013158 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
13159 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
13160 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000013161 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000013162 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
13163 }
13164 }
13165 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013166
Nate Begemanb65c1752010-12-17 22:55:37 +000013167 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000013168 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
13169 std::swap(N0, N1);
13170 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
13171 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000013172 if (!N0.hasOneUse() || !N1.hasOneUse())
13173 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000013174
13175 SDValue ShAmt0 = N0.getOperand(1);
13176 if (ShAmt0.getValueType() != MVT::i8)
13177 return SDValue();
13178 SDValue ShAmt1 = N1.getOperand(1);
13179 if (ShAmt1.getValueType() != MVT::i8)
13180 return SDValue();
13181 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
13182 ShAmt0 = ShAmt0.getOperand(0);
13183 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
13184 ShAmt1 = ShAmt1.getOperand(0);
13185
13186 DebugLoc DL = N->getDebugLoc();
13187 unsigned Opc = X86ISD::SHLD;
13188 SDValue Op0 = N0.getOperand(0);
13189 SDValue Op1 = N1.getOperand(0);
13190 if (ShAmt0.getOpcode() == ISD::SUB) {
13191 Opc = X86ISD::SHRD;
13192 std::swap(Op0, Op1);
13193 std::swap(ShAmt0, ShAmt1);
13194 }
13195
Evan Cheng8b1190a2010-04-28 01:18:01 +000013196 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000013197 if (ShAmt1.getOpcode() == ISD::SUB) {
13198 SDValue Sum = ShAmt1.getOperand(0);
13199 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000013200 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
13201 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
13202 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
13203 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000013204 return DAG.getNode(Opc, DL, VT,
13205 Op0, Op1,
13206 DAG.getNode(ISD::TRUNCATE, DL,
13207 MVT::i8, ShAmt0));
13208 }
13209 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
13210 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
13211 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000013212 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000013213 return DAG.getNode(Opc, DL, VT,
13214 N0.getOperand(0), N1.getOperand(0),
13215 DAG.getNode(ISD::TRUNCATE, DL,
13216 MVT::i8, ShAmt0));
13217 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013218
Evan Cheng760d1942010-01-04 21:22:48 +000013219 return SDValue();
13220}
13221
Chris Lattner149a4e52008-02-22 02:09:43 +000013222/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013223static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000013224 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000013225 StoreSDNode *St = cast<StoreSDNode>(N);
13226 EVT VT = St->getValue().getValueType();
13227 EVT StVT = St->getMemoryVT();
13228 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000013229 SDValue StoredVal = St->getOperand(1);
13230 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13231
13232 // If we are saving a concatination of two XMM registers, perform two stores.
Nadav Rotem6236f7f2011-08-11 17:05:47 +000013233 // This is better in Sandy Bridge cause one 256-bit mem op is done via two
13234 // 128-bit ones. If in the future the cost becomes only one memory access the
13235 // first version would be better.
Nadav Rotem5e742a32011-08-11 16:41:21 +000013236 if (VT.getSizeInBits() == 256 &&
13237 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
13238 StoredVal.getNumOperands() == 2) {
13239
13240 SDValue Value0 = StoredVal.getOperand(0);
13241 SDValue Value1 = StoredVal.getOperand(1);
13242
13243 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
13244 SDValue Ptr0 = St->getBasePtr();
13245 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
13246
13247 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
13248 St->getPointerInfo(), St->isVolatile(),
13249 St->isNonTemporal(), St->getAlignment());
13250 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
13251 St->getPointerInfo(), St->isVolatile(),
13252 St->isNonTemporal(), St->getAlignment());
13253 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
13254 }
Nadav Rotem614061b2011-08-10 19:30:14 +000013255
13256 // Optimize trunc store (of multiple scalars) to shuffle and store.
13257 // First, pack all of the elements in one place. Next, store to memory
13258 // in fewer chunks.
13259 if (St->isTruncatingStore() && VT.isVector()) {
13260 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13261 unsigned NumElems = VT.getVectorNumElements();
13262 assert(StVT != VT && "Cannot truncate to the same type");
13263 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
13264 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
13265
13266 // From, To sizes and ElemCount must be pow of two
13267 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
13268 // We are going to use the original vector elt for storing.
13269 // accumulated smaller vector elements must be a multiple of bigger size.
13270 if (0 != (NumElems * ToSz) % FromSz) return SDValue();
13271 unsigned SizeRatio = FromSz / ToSz;
13272
13273 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
13274
13275 // Create a type on which we perform the shuffle
13276 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
13277 StVT.getScalarType(), NumElems*SizeRatio);
13278
13279 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
13280
13281 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
13282 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13283 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
13284
13285 // Can't shuffle using an illegal type
13286 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
13287
13288 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
13289 DAG.getUNDEF(WideVec.getValueType()),
13290 ShuffleVec.data());
13291 // At this point all of the data is stored at the bottom of the
13292 // register. We now need to save it to mem.
13293
13294 // Find the largest store unit
13295 MVT StoreType = MVT::i8;
13296 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
13297 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
13298 MVT Tp = (MVT::SimpleValueType)tp;
13299 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
13300 StoreType = Tp;
13301 }
13302
13303 // Bitcast the original vector into a vector of store-size units
13304 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
13305 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
13306 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
13307 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
13308 SmallVector<SDValue, 8> Chains;
13309 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
13310 TLI.getPointerTy());
13311 SDValue Ptr = St->getBasePtr();
13312
13313 // Perform one or more big stores into memory.
13314 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
13315 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
13316 StoreType, ShuffWide,
13317 DAG.getIntPtrConstant(i));
13318 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
13319 St->getPointerInfo(), St->isVolatile(),
13320 St->isNonTemporal(), St->getAlignment());
13321 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
13322 Chains.push_back(Ch);
13323 }
13324
13325 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
13326 Chains.size());
13327 }
13328
13329
Chris Lattner149a4e52008-02-22 02:09:43 +000013330 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
13331 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000013332 // A preferable solution to the general problem is to figure out the right
13333 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000013334
13335 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000013336 if (VT.getSizeInBits() != 64)
13337 return SDValue();
13338
Devang Patel578efa92009-06-05 21:57:13 +000013339 const Function *F = DAG.getMachineFunction().getFunction();
13340 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000013341 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000013342 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000013343 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000013344 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000013345 isa<LoadSDNode>(St->getValue()) &&
13346 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
13347 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013348 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013349 LoadSDNode *Ld = 0;
13350 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000013351 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000013352 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013353 // Must be a store of a load. We currently handle two cases: the load
13354 // is a direct child, and it's under an intervening TokenFactor. It is
13355 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000013356 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000013357 Ld = cast<LoadSDNode>(St->getChain());
13358 else if (St->getValue().hasOneUse() &&
13359 ChainVal->getOpcode() == ISD::TokenFactor) {
13360 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013361 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000013362 TokenFactorIndex = i;
13363 Ld = cast<LoadSDNode>(St->getValue());
13364 } else
13365 Ops.push_back(ChainVal->getOperand(i));
13366 }
13367 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000013368
Evan Cheng536e6672009-03-12 05:59:15 +000013369 if (!Ld || !ISD::isNormalLoad(Ld))
13370 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013371
Evan Cheng536e6672009-03-12 05:59:15 +000013372 // If this is not the MMX case, i.e. we are just turning i64 load/store
13373 // into f64 load/store, avoid the transformation if there are multiple
13374 // uses of the loaded value.
13375 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
13376 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013377
Evan Cheng536e6672009-03-12 05:59:15 +000013378 DebugLoc LdDL = Ld->getDebugLoc();
13379 DebugLoc StDL = N->getDebugLoc();
13380 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
13381 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
13382 // pair instead.
13383 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013384 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000013385 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
13386 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013387 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013388 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000013389 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000013390 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000013391 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000013392 Ops.size());
13393 }
Evan Cheng536e6672009-03-12 05:59:15 +000013394 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000013395 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013396 St->isVolatile(), St->isNonTemporal(),
13397 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000013398 }
Evan Cheng536e6672009-03-12 05:59:15 +000013399
13400 // Otherwise, lower to two pairs of 32-bit loads / stores.
13401 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013402 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
13403 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013404
Owen Anderson825b72b2009-08-11 20:47:22 +000013405 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013406 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013407 Ld->isVolatile(), Ld->isNonTemporal(),
13408 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000013409 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013410 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000013411 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013412 MinAlign(Ld->getAlignment(), 4));
13413
13414 SDValue NewChain = LoLd.getValue(1);
13415 if (TokenFactorIndex != -1) {
13416 Ops.push_back(LoLd);
13417 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000013418 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000013419 Ops.size());
13420 }
13421
13422 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013423 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
13424 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013425
13426 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013427 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013428 St->isVolatile(), St->isNonTemporal(),
13429 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013430 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013431 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000013432 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013433 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013434 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000013435 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000013436 }
Dan Gohman475871a2008-07-27 21:46:04 +000013437 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000013438}
13439
Chris Lattner6cf73262008-01-25 06:14:17 +000013440/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
13441/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013442static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000013443 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
13444 // F[X]OR(0.0, x) -> x
13445 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000013446 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13447 if (C->getValueAPF().isPosZero())
13448 return N->getOperand(1);
13449 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13450 if (C->getValueAPF().isPosZero())
13451 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000013452 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013453}
13454
13455/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013456static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000013457 // FAND(0.0, x) -> 0.0
13458 // FAND(x, 0.0) -> 0.0
13459 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13460 if (C->getValueAPF().isPosZero())
13461 return N->getOperand(0);
13462 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13463 if (C->getValueAPF().isPosZero())
13464 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000013465 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013466}
13467
Dan Gohmane5af2d32009-01-29 01:59:02 +000013468static SDValue PerformBTCombine(SDNode *N,
13469 SelectionDAG &DAG,
13470 TargetLowering::DAGCombinerInfo &DCI) {
13471 // BT ignores high bits in the bit index operand.
13472 SDValue Op1 = N->getOperand(1);
13473 if (Op1.hasOneUse()) {
13474 unsigned BitWidth = Op1.getValueSizeInBits();
13475 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
13476 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013477 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
13478 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000013479 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000013480 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
13481 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
13482 DCI.CommitTargetLoweringOpt(TLO);
13483 }
13484 return SDValue();
13485}
Chris Lattner83e6c992006-10-04 06:57:07 +000013486
Eli Friedman7a5e5552009-06-07 06:52:44 +000013487static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
13488 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013489 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000013490 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000013491 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000013492 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000013493 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000013494 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013495 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013496 }
13497 return SDValue();
13498}
13499
Evan Cheng2e489c42009-12-16 00:53:11 +000013500static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
13501 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
13502 // (and (i32 x86isd::setcc_carry), 1)
13503 // This eliminates the zext. This transformation is necessary because
13504 // ISD::SETCC is always legalized to i8.
13505 DebugLoc dl = N->getDebugLoc();
13506 SDValue N0 = N->getOperand(0);
13507 EVT VT = N->getValueType(0);
13508 if (N0.getOpcode() == ISD::AND &&
13509 N0.hasOneUse() &&
13510 N0.getOperand(0).hasOneUse()) {
13511 SDValue N00 = N0.getOperand(0);
13512 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
13513 return SDValue();
13514 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
13515 if (!C || C->getZExtValue() != 1)
13516 return SDValue();
13517 return DAG.getNode(ISD::AND, dl, VT,
13518 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
13519 N00.getOperand(0), N00.getOperand(1)),
13520 DAG.getConstant(1, VT));
13521 }
13522
13523 return SDValue();
13524}
13525
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013526// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
13527static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
13528 unsigned X86CC = N->getConstantOperandVal(0);
13529 SDValue EFLAG = N->getOperand(1);
13530 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013531
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013532 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
13533 // a zext and produces an all-ones bit which is more useful than 0/1 in some
13534 // cases.
13535 if (X86CC == X86::COND_B)
13536 return DAG.getNode(ISD::AND, DL, MVT::i8,
13537 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
13538 DAG.getConstant(X86CC, MVT::i8), EFLAG),
13539 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013540
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013541 return SDValue();
13542}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013543
Benjamin Kramer1396c402011-06-18 11:09:41 +000013544static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
13545 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013546 SDValue Op0 = N->getOperand(0);
13547 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
13548 // a 32-bit target where SSE doesn't support i64->FP operations.
13549 if (Op0.getOpcode() == ISD::LOAD) {
13550 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
13551 EVT VT = Ld->getValueType(0);
13552 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
13553 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
13554 !XTLI->getSubtarget()->is64Bit() &&
13555 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000013556 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
13557 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013558 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
13559 return FILDChain;
13560 }
13561 }
13562 return SDValue();
13563}
13564
Chris Lattner23a01992010-12-20 01:37:09 +000013565// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
13566static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
13567 X86TargetLowering::DAGCombinerInfo &DCI) {
13568 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
13569 // the result is either zero or one (depending on the input carry bit).
13570 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
13571 if (X86::isZeroNode(N->getOperand(0)) &&
13572 X86::isZeroNode(N->getOperand(1)) &&
13573 // We don't have a good way to replace an EFLAGS use, so only do this when
13574 // dead right now.
13575 SDValue(N, 1).use_empty()) {
13576 DebugLoc DL = N->getDebugLoc();
13577 EVT VT = N->getValueType(0);
13578 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
13579 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
13580 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
13581 DAG.getConstant(X86::COND_B,MVT::i8),
13582 N->getOperand(2)),
13583 DAG.getConstant(1, VT));
13584 return DCI.CombineTo(N, Res1, CarryOut);
13585 }
13586
13587 return SDValue();
13588}
13589
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013590// fold (add Y, (sete X, 0)) -> adc 0, Y
13591// (add Y, (setne X, 0)) -> sbb -1, Y
13592// (sub (sete X, 0), Y) -> sbb 0, Y
13593// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013594static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013595 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013596
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013597 // Look through ZExts.
13598 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
13599 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
13600 return SDValue();
13601
13602 SDValue SetCC = Ext.getOperand(0);
13603 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
13604 return SDValue();
13605
13606 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
13607 if (CC != X86::COND_E && CC != X86::COND_NE)
13608 return SDValue();
13609
13610 SDValue Cmp = SetCC.getOperand(1);
13611 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000013612 !X86::isZeroNode(Cmp.getOperand(1)) ||
13613 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013614 return SDValue();
13615
13616 SDValue CmpOp0 = Cmp.getOperand(0);
13617 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
13618 DAG.getConstant(1, CmpOp0.getValueType()));
13619
13620 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
13621 if (CC == X86::COND_NE)
13622 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
13623 DL, OtherVal.getValueType(), OtherVal,
13624 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
13625 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
13626 DL, OtherVal.getValueType(), OtherVal,
13627 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
13628}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013629
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013630static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
13631 SDValue Op0 = N->getOperand(0);
13632 SDValue Op1 = N->getOperand(1);
13633
13634 // X86 can't encode an immediate LHS of a sub. See if we can push the
13635 // negation into a preceding instruction.
13636 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013637 // If the RHS of the sub is a XOR with one use and a constant, invert the
13638 // immediate. Then add one to the LHS of the sub so we can turn
13639 // X-Y -> X+~Y+1, saving one register.
13640 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
13641 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000013642 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013643 EVT VT = Op0.getValueType();
13644 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
13645 Op1.getOperand(0),
13646 DAG.getConstant(~XorC, VT));
13647 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000013648 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013649 }
13650 }
13651
13652 return OptimizeConditionalInDecrement(N, DAG);
13653}
13654
Dan Gohman475871a2008-07-27 21:46:04 +000013655SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000013656 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000013657 SelectionDAG &DAG = DCI.DAG;
13658 switch (N->getOpcode()) {
13659 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000013660 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013661 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000013662 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000013663 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013664 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
13665 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000013666 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000013667 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000013668 case ISD::SHL:
13669 case ISD::SRA:
13670 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000013671 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000013672 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000013673 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013674 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000013675 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000013676 case X86ISD::FOR: return PerformFORCombine(N, DAG);
13677 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000013678 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013679 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000013680 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013681 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013682 case X86ISD::SHUFPS: // Handle all target specific shuffles
13683 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000013684 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013685 case X86ISD::PUNPCKHBW:
13686 case X86ISD::PUNPCKHWD:
13687 case X86ISD::PUNPCKHDQ:
13688 case X86ISD::PUNPCKHQDQ:
13689 case X86ISD::UNPCKHPS:
13690 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000013691 case X86ISD::VUNPCKHPSY:
13692 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013693 case X86ISD::PUNPCKLBW:
13694 case X86ISD::PUNPCKLWD:
13695 case X86ISD::PUNPCKLDQ:
13696 case X86ISD::PUNPCKLQDQ:
13697 case X86ISD::UNPCKLPS:
13698 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000013699 case X86ISD::VUNPCKLPSY:
13700 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013701 case X86ISD::MOVHLPS:
13702 case X86ISD::MOVLHPS:
13703 case X86ISD::PSHUFD:
13704 case X86ISD::PSHUFHW:
13705 case X86ISD::PSHUFLW:
13706 case X86ISD::MOVSS:
13707 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000013708 case X86ISD::VPERMILPS:
13709 case X86ISD::VPERMILPSY:
13710 case X86ISD::VPERMILPD:
13711 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000013712 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000013713 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000013714 }
13715
Dan Gohman475871a2008-07-27 21:46:04 +000013716 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000013717}
13718
Evan Chenge5b51ac2010-04-17 06:13:15 +000013719/// isTypeDesirableForOp - Return true if the target has native support for
13720/// the specified value type and it is 'desirable' to use the type for the
13721/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
13722/// instruction encodings are longer and some i16 instructions are slow.
13723bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
13724 if (!isTypeLegal(VT))
13725 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013726 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000013727 return true;
13728
13729 switch (Opc) {
13730 default:
13731 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000013732 case ISD::LOAD:
13733 case ISD::SIGN_EXTEND:
13734 case ISD::ZERO_EXTEND:
13735 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013736 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013737 case ISD::SRL:
13738 case ISD::SUB:
13739 case ISD::ADD:
13740 case ISD::MUL:
13741 case ISD::AND:
13742 case ISD::OR:
13743 case ISD::XOR:
13744 return false;
13745 }
13746}
13747
13748/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013749/// beneficial for dag combiner to promote the specified node. If true, it
13750/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013751bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013752 EVT VT = Op.getValueType();
13753 if (VT != MVT::i16)
13754 return false;
13755
Evan Cheng4c26e932010-04-19 19:29:22 +000013756 bool Promote = false;
13757 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013758 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013759 default: break;
13760 case ISD::LOAD: {
13761 LoadSDNode *LD = cast<LoadSDNode>(Op);
13762 // If the non-extending load has a single use and it's not live out, then it
13763 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013764 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13765 Op.hasOneUse()*/) {
13766 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13767 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13768 // The only case where we'd want to promote LOAD (rather then it being
13769 // promoted as an operand is when it's only use is liveout.
13770 if (UI->getOpcode() != ISD::CopyToReg)
13771 return false;
13772 }
13773 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013774 Promote = true;
13775 break;
13776 }
13777 case ISD::SIGN_EXTEND:
13778 case ISD::ZERO_EXTEND:
13779 case ISD::ANY_EXTEND:
13780 Promote = true;
13781 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013782 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013783 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013784 SDValue N0 = Op.getOperand(0);
13785 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013786 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013787 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013788 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013789 break;
13790 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013791 case ISD::ADD:
13792 case ISD::MUL:
13793 case ISD::AND:
13794 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013795 case ISD::XOR:
13796 Commute = true;
13797 // fallthrough
13798 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013799 SDValue N0 = Op.getOperand(0);
13800 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000013801 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013802 return false;
13803 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000013804 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013805 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000013806 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013807 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013808 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013809 }
13810 }
13811
13812 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013813 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013814}
13815
Evan Cheng60c07e12006-07-05 22:17:51 +000013816//===----------------------------------------------------------------------===//
13817// X86 Inline Assembly Support
13818//===----------------------------------------------------------------------===//
13819
Chris Lattnerb8105652009-07-20 17:51:36 +000013820bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13821 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013822
13823 std::string AsmStr = IA->getAsmString();
13824
13825 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013826 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013827 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013828
13829 switch (AsmPieces.size()) {
13830 default: return false;
13831 case 1:
13832 AsmStr = AsmPieces[0];
13833 AsmPieces.clear();
13834 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13835
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013836 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013837 // we will turn this bswap into something that will be lowered to logical ops
13838 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13839 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013840 // bswap $0
13841 if (AsmPieces.size() == 2 &&
13842 (AsmPieces[0] == "bswap" ||
13843 AsmPieces[0] == "bswapq" ||
13844 AsmPieces[0] == "bswapl") &&
13845 (AsmPieces[1] == "$0" ||
13846 AsmPieces[1] == "${0:q}")) {
13847 // No need to check constraints, nothing other than the equivalent of
13848 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013849 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013850 if (!Ty || Ty->getBitWidth() % 16 != 0)
13851 return false;
13852 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013853 }
13854 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013855 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013856 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013857 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013858 AsmPieces[1] == "$$8," &&
13859 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013860 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13861 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013862 const std::string &ConstraintsStr = IA->getConstraintString();
13863 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013864 std::sort(AsmPieces.begin(), AsmPieces.end());
13865 if (AsmPieces.size() == 4 &&
13866 AsmPieces[0] == "~{cc}" &&
13867 AsmPieces[1] == "~{dirflag}" &&
13868 AsmPieces[2] == "~{flags}" &&
13869 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013870 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013871 if (!Ty || Ty->getBitWidth() % 16 != 0)
13872 return false;
13873 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013874 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013875 }
13876 break;
13877 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013878 if (CI->getType()->isIntegerTy(32) &&
13879 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13880 SmallVector<StringRef, 4> Words;
13881 SplitString(AsmPieces[0], Words, " \t,");
13882 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13883 Words[2] == "${0:w}") {
13884 Words.clear();
13885 SplitString(AsmPieces[1], Words, " \t,");
13886 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13887 Words[2] == "$0") {
13888 Words.clear();
13889 SplitString(AsmPieces[2], Words, " \t,");
13890 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13891 Words[2] == "${0:w}") {
13892 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013893 const std::string &ConstraintsStr = IA->getConstraintString();
13894 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013895 std::sort(AsmPieces.begin(), AsmPieces.end());
13896 if (AsmPieces.size() == 4 &&
13897 AsmPieces[0] == "~{cc}" &&
13898 AsmPieces[1] == "~{dirflag}" &&
13899 AsmPieces[2] == "~{flags}" &&
13900 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013901 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013902 if (!Ty || Ty->getBitWidth() % 16 != 0)
13903 return false;
13904 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013905 }
13906 }
13907 }
13908 }
13909 }
Evan Cheng55d42002011-01-08 01:24:27 +000013910
13911 if (CI->getType()->isIntegerTy(64)) {
13912 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13913 if (Constraints.size() >= 2 &&
13914 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13915 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13916 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13917 SmallVector<StringRef, 4> Words;
13918 SplitString(AsmPieces[0], Words, " \t");
13919 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013920 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013921 SplitString(AsmPieces[1], Words, " \t");
13922 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13923 Words.clear();
13924 SplitString(AsmPieces[2], Words, " \t,");
13925 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13926 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013927 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013928 if (!Ty || Ty->getBitWidth() % 16 != 0)
13929 return false;
13930 return IntrinsicLowering::LowerToByteSwap(CI);
13931 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013932 }
13933 }
13934 }
13935 }
13936 break;
13937 }
13938 return false;
13939}
13940
13941
13942
Chris Lattnerf4dff842006-07-11 02:54:03 +000013943/// getConstraintType - Given a constraint letter, return the type of
13944/// constraint it is for this target.
13945X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013946X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13947 if (Constraint.size() == 1) {
13948 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013949 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013950 case 'q':
13951 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013952 case 'f':
13953 case 't':
13954 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013955 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013956 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013957 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013958 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013959 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013960 case 'a':
13961 case 'b':
13962 case 'c':
13963 case 'd':
13964 case 'S':
13965 case 'D':
13966 case 'A':
13967 return C_Register;
13968 case 'I':
13969 case 'J':
13970 case 'K':
13971 case 'L':
13972 case 'M':
13973 case 'N':
13974 case 'G':
13975 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013976 case 'e':
13977 case 'Z':
13978 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013979 default:
13980 break;
13981 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013982 }
Chris Lattner4234f572007-03-25 02:14:49 +000013983 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013984}
13985
John Thompson44ab89e2010-10-29 17:29:13 +000013986/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013987/// This object must already have been set up with the operand type
13988/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013989TargetLowering::ConstraintWeight
13990 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013991 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013992 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013993 Value *CallOperandVal = info.CallOperandVal;
13994 // If we don't have a value, we can't do a match,
13995 // but allow it at the lowest weight.
13996 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013997 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013998 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013999 // Look at the constraint type.
14000 switch (*constraint) {
14001 default:
John Thompson44ab89e2010-10-29 17:29:13 +000014002 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
14003 case 'R':
14004 case 'q':
14005 case 'Q':
14006 case 'a':
14007 case 'b':
14008 case 'c':
14009 case 'd':
14010 case 'S':
14011 case 'D':
14012 case 'A':
14013 if (CallOperandVal->getType()->isIntegerTy())
14014 weight = CW_SpecificReg;
14015 break;
14016 case 'f':
14017 case 't':
14018 case 'u':
14019 if (type->isFloatingPointTy())
14020 weight = CW_SpecificReg;
14021 break;
14022 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000014023 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000014024 weight = CW_SpecificReg;
14025 break;
14026 case 'x':
14027 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014028 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000014029 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014030 break;
14031 case 'I':
14032 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
14033 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000014034 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014035 }
14036 break;
John Thompson44ab89e2010-10-29 17:29:13 +000014037 case 'J':
14038 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14039 if (C->getZExtValue() <= 63)
14040 weight = CW_Constant;
14041 }
14042 break;
14043 case 'K':
14044 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14045 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
14046 weight = CW_Constant;
14047 }
14048 break;
14049 case 'L':
14050 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14051 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
14052 weight = CW_Constant;
14053 }
14054 break;
14055 case 'M':
14056 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14057 if (C->getZExtValue() <= 3)
14058 weight = CW_Constant;
14059 }
14060 break;
14061 case 'N':
14062 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14063 if (C->getZExtValue() <= 0xff)
14064 weight = CW_Constant;
14065 }
14066 break;
14067 case 'G':
14068 case 'C':
14069 if (dyn_cast<ConstantFP>(CallOperandVal)) {
14070 weight = CW_Constant;
14071 }
14072 break;
14073 case 'e':
14074 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14075 if ((C->getSExtValue() >= -0x80000000LL) &&
14076 (C->getSExtValue() <= 0x7fffffffLL))
14077 weight = CW_Constant;
14078 }
14079 break;
14080 case 'Z':
14081 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14082 if (C->getZExtValue() <= 0xffffffff)
14083 weight = CW_Constant;
14084 }
14085 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014086 }
14087 return weight;
14088}
14089
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014090/// LowerXConstraint - try to replace an X constraint, which matches anything,
14091/// with another that has more specific requirements based on the type of the
14092/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000014093const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000014094LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000014095 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
14096 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000014097 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014098 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000014099 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014100 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000014101 return "x";
14102 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014103
Chris Lattner5e764232008-04-26 23:02:14 +000014104 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014105}
14106
Chris Lattner48884cd2007-08-25 00:47:38 +000014107/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
14108/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000014109void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000014110 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000014111 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000014112 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000014113 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000014114
Eric Christopher100c8332011-06-02 23:16:42 +000014115 // Only support length 1 constraints for now.
14116 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000014117
Eric Christopher100c8332011-06-02 23:16:42 +000014118 char ConstraintLetter = Constraint[0];
14119 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014120 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000014121 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000014122 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000014123 if (C->getZExtValue() <= 31) {
14124 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000014125 break;
14126 }
Devang Patel84f7fd22007-03-17 00:13:28 +000014127 }
Chris Lattner48884cd2007-08-25 00:47:38 +000014128 return;
Evan Cheng364091e2008-09-22 23:57:37 +000014129 case 'J':
14130 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000014131 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000014132 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14133 break;
14134 }
14135 }
14136 return;
14137 case 'K':
14138 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000014139 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000014140 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14141 break;
14142 }
14143 }
14144 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000014145 case 'N':
14146 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000014147 if (C->getZExtValue() <= 255) {
14148 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000014149 break;
14150 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000014151 }
Chris Lattner48884cd2007-08-25 00:47:38 +000014152 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000014153 case 'e': {
14154 // 32-bit signed value
14155 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000014156 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
14157 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014158 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000014159 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000014160 break;
14161 }
14162 // FIXME gcc accepts some relocatable values here too, but only in certain
14163 // memory models; it's complicated.
14164 }
14165 return;
14166 }
14167 case 'Z': {
14168 // 32-bit unsigned value
14169 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000014170 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
14171 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014172 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14173 break;
14174 }
14175 }
14176 // FIXME gcc accepts some relocatable values here too, but only in certain
14177 // memory models; it's complicated.
14178 return;
14179 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014180 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014181 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000014182 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014183 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000014184 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000014185 break;
14186 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014187
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000014188 // In any sort of PIC mode addresses need to be computed at runtime by
14189 // adding in a register or some sort of table lookup. These can't
14190 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000014191 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000014192 return;
14193
Chris Lattnerdc43a882007-05-03 16:52:29 +000014194 // If we are in non-pic codegen mode, we allow the address of a global (with
14195 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000014196 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000014197 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000014198
Chris Lattner49921962009-05-08 18:23:14 +000014199 // Match either (GA), (GA+C), (GA+C1+C2), etc.
14200 while (1) {
14201 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
14202 Offset += GA->getOffset();
14203 break;
14204 } else if (Op.getOpcode() == ISD::ADD) {
14205 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
14206 Offset += C->getZExtValue();
14207 Op = Op.getOperand(0);
14208 continue;
14209 }
14210 } else if (Op.getOpcode() == ISD::SUB) {
14211 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
14212 Offset += -C->getZExtValue();
14213 Op = Op.getOperand(0);
14214 continue;
14215 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014216 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014217
Chris Lattner49921962009-05-08 18:23:14 +000014218 // Otherwise, this isn't something we can handle, reject it.
14219 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000014220 }
Eric Christopherfd179292009-08-27 18:07:15 +000014221
Dan Gohman46510a72010-04-15 01:51:59 +000014222 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014223 // If we require an extra load to get this address, as in PIC mode, we
14224 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000014225 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
14226 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014227 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000014228
Devang Patel0d881da2010-07-06 22:08:15 +000014229 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
14230 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000014231 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014232 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014233 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014234
Gabor Greifba36cb52008-08-28 21:40:38 +000014235 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000014236 Ops.push_back(Result);
14237 return;
14238 }
Dale Johannesen1784d162010-06-25 21:55:36 +000014239 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014240}
14241
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014242std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000014243X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000014244 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000014245 // First, see if this is a constraint that directly corresponds to an LLVM
14246 // register class.
14247 if (Constraint.size() == 1) {
14248 // GCC Constraint Letters
14249 switch (Constraint[0]) {
14250 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000014251 // TODO: Slight differences here in allocation order and leaving
14252 // RIP in the class. Do they matter any more here than they do
14253 // in the normal allocation?
14254 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
14255 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014256 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014257 return std::make_pair(0U, X86::GR32RegisterClass);
14258 else if (VT == MVT::i16)
14259 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014260 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014261 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014262 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000014263 return std::make_pair(0U, X86::GR64RegisterClass);
14264 break;
14265 }
14266 // 32-bit fallthrough
14267 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014268 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014269 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
14270 else if (VT == MVT::i16)
14271 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014272 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014273 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
14274 else if (VT == MVT::i64)
14275 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
14276 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014277 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000014278 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014279 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000014280 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014281 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000014282 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000014283 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000014284 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000014285 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014286 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014287 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014288 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
14289 if (VT == MVT::i16)
14290 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
14291 if (VT == MVT::i32 || !Subtarget->is64Bit())
14292 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
14293 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014294 case 'f': // FP Stack registers.
14295 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
14296 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000014297 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014298 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014299 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014300 return std::make_pair(0U, X86::RFP64RegisterClass);
14301 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000014302 case 'y': // MMX_REGS if MMX allowed.
14303 if (!Subtarget->hasMMX()) break;
14304 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014305 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014306 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014307 // FALL THROUGH.
14308 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014309 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000014310
Owen Anderson825b72b2009-08-11 20:47:22 +000014311 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000014312 default: break;
14313 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014314 case MVT::f32:
14315 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000014316 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014317 case MVT::f64:
14318 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000014319 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014320 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014321 case MVT::v16i8:
14322 case MVT::v8i16:
14323 case MVT::v4i32:
14324 case MVT::v2i64:
14325 case MVT::v4f32:
14326 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000014327 return std::make_pair(0U, X86::VR128RegisterClass);
14328 }
Chris Lattnerad043e82007-04-09 05:11:28 +000014329 break;
14330 }
14331 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014332
Chris Lattnerf76d1802006-07-31 23:26:50 +000014333 // Use the default implementation in TargetLowering to convert the register
14334 // constraint into a member of a register class.
14335 std::pair<unsigned, const TargetRegisterClass*> Res;
14336 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000014337
14338 // Not found as a standard register?
14339 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014340 // Map st(0) -> st(7) -> ST0
14341 if (Constraint.size() == 7 && Constraint[0] == '{' &&
14342 tolower(Constraint[1]) == 's' &&
14343 tolower(Constraint[2]) == 't' &&
14344 Constraint[3] == '(' &&
14345 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
14346 Constraint[5] == ')' &&
14347 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000014348
Chris Lattner56d77c72009-09-13 22:41:48 +000014349 Res.first = X86::ST0+Constraint[4]-'0';
14350 Res.second = X86::RFP80RegisterClass;
14351 return Res;
14352 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014353
Chris Lattner56d77c72009-09-13 22:41:48 +000014354 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014355 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000014356 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000014357 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014358 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000014359 }
Chris Lattner56d77c72009-09-13 22:41:48 +000014360
14361 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014362 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014363 Res.first = X86::EFLAGS;
14364 Res.second = X86::CCRRegisterClass;
14365 return Res;
14366 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014367
Dale Johannesen330169f2008-11-13 21:52:36 +000014368 // 'A' means EAX + EDX.
14369 if (Constraint == "A") {
14370 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000014371 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014372 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000014373 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000014374 return Res;
14375 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014376
Chris Lattnerf76d1802006-07-31 23:26:50 +000014377 // Otherwise, check to see if this is a register class of the wrong value
14378 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
14379 // turn into {ax},{dx}.
14380 if (Res.second->hasType(VT))
14381 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014382
Chris Lattnerf76d1802006-07-31 23:26:50 +000014383 // All of the single-register GCC register classes map their values onto
14384 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
14385 // really want an 8-bit or 32-bit register, map to the appropriate register
14386 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000014387 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000014388 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014389 unsigned DestReg = 0;
14390 switch (Res.first) {
14391 default: break;
14392 case X86::AX: DestReg = X86::AL; break;
14393 case X86::DX: DestReg = X86::DL; break;
14394 case X86::CX: DestReg = X86::CL; break;
14395 case X86::BX: DestReg = X86::BL; break;
14396 }
14397 if (DestReg) {
14398 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014399 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014400 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014401 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014402 unsigned DestReg = 0;
14403 switch (Res.first) {
14404 default: break;
14405 case X86::AX: DestReg = X86::EAX; break;
14406 case X86::DX: DestReg = X86::EDX; break;
14407 case X86::CX: DestReg = X86::ECX; break;
14408 case X86::BX: DestReg = X86::EBX; break;
14409 case X86::SI: DestReg = X86::ESI; break;
14410 case X86::DI: DestReg = X86::EDI; break;
14411 case X86::BP: DestReg = X86::EBP; break;
14412 case X86::SP: DestReg = X86::ESP; break;
14413 }
14414 if (DestReg) {
14415 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014416 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014417 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014418 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014419 unsigned DestReg = 0;
14420 switch (Res.first) {
14421 default: break;
14422 case X86::AX: DestReg = X86::RAX; break;
14423 case X86::DX: DestReg = X86::RDX; break;
14424 case X86::CX: DestReg = X86::RCX; break;
14425 case X86::BX: DestReg = X86::RBX; break;
14426 case X86::SI: DestReg = X86::RSI; break;
14427 case X86::DI: DestReg = X86::RDI; break;
14428 case X86::BP: DestReg = X86::RBP; break;
14429 case X86::SP: DestReg = X86::RSP; break;
14430 }
14431 if (DestReg) {
14432 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014433 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014434 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000014435 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000014436 } else if (Res.second == X86::FR32RegisterClass ||
14437 Res.second == X86::FR64RegisterClass ||
14438 Res.second == X86::VR128RegisterClass) {
14439 // Handle references to XMM physical registers that got mapped into the
14440 // wrong class. This can happen with constraints like {xmm0} where the
14441 // target independent register mapper will just pick the first match it can
14442 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000014443 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014444 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000014445 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014446 Res.second = X86::FR64RegisterClass;
14447 else if (X86::VR128RegisterClass->hasType(VT))
14448 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000014449 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014450
Chris Lattnerf76d1802006-07-31 23:26:50 +000014451 return Res;
14452}