blob: d1c71a86a0850ce940315378cf79550270b72162 [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);
467 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000468
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000469 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
471 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
472 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
473 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
474 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
475 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
476 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000477 }
478
Evan Cheng3c992d22006-03-07 02:02:57 +0000479 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000480 if (!Subtarget->isTargetDarwin() &&
481 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000482 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000483 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000484 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000485
Owen Anderson825b72b2009-08-11 20:47:22 +0000486 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
487 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
488 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
489 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000490 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000491 setExceptionPointerRegister(X86::RAX);
492 setExceptionSelectorRegister(X86::RDX);
493 } else {
494 setExceptionPointerRegister(X86::EAX);
495 setExceptionSelectorRegister(X86::EDX);
496 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000497 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
498 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000499
Owen Anderson825b72b2009-08-11 20:47:22 +0000500 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000501
Owen Anderson825b72b2009-08-11 20:47:22 +0000502 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000503
Nate Begemanacc398c2006-01-25 18:21:52 +0000504 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::VASTART , MVT::Other, Custom);
506 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000507 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000508 setOperationAction(ISD::VAARG , MVT::Other, Custom);
509 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000510 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 setOperationAction(ISD::VAARG , MVT::Other, Expand);
512 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000513 }
Evan Chengae642192007-03-02 23:16:35 +0000514
Owen Anderson825b72b2009-08-11 20:47:22 +0000515 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
516 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000517 setOperationAction(ISD::DYNAMIC_STACKALLOC,
518 (Subtarget->is64Bit() ? MVT::i64 : MVT::i32),
519 (Subtarget->isTargetCOFF()
520 && !Subtarget->isTargetEnvMacho()
521 ? Custom : Expand));
Chris Lattnerb99329e2006-01-13 02:42:53 +0000522
Evan Chengc7ce29b2009-02-13 22:36:38 +0000523 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000524 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000525 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
527 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000528
Evan Cheng223547a2006-01-31 22:28:30 +0000529 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000530 setOperationAction(ISD::FABS , MVT::f64, Custom);
531 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000532
533 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000534 setOperationAction(ISD::FNEG , MVT::f64, Custom);
535 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000536
Evan Cheng68c47cb2007-01-05 07:55:56 +0000537 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
539 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000540
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000541 // Lower this to FGETSIGNx86 plus an AND.
542 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
543 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
544
Evan Chengd25e9e82006-02-02 00:28:23 +0000545 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::FSIN , MVT::f64, Expand);
547 setOperationAction(ISD::FCOS , MVT::f64, Expand);
548 setOperationAction(ISD::FSIN , MVT::f32, Expand);
549 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000550
Chris Lattnera54aa942006-01-29 06:26:08 +0000551 // Expand FP immediates into loads from the stack, except for the special
552 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000553 addLegalFPImmediate(APFloat(+0.0)); // xorpd
554 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000555 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000556 // Use SSE for f32, x87 for f64.
557 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
559 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000560
561 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000563
564 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000565 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000566
Owen Anderson825b72b2009-08-11 20:47:22 +0000567 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000568
569 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000570 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
571 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000572
573 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000574 setOperationAction(ISD::FSIN , MVT::f32, Expand);
575 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000576
Nate Begemane1795842008-02-14 08:57:00 +0000577 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000578 addLegalFPImmediate(APFloat(+0.0f)); // xorps
579 addLegalFPImmediate(APFloat(+0.0)); // FLD0
580 addLegalFPImmediate(APFloat(+1.0)); // FLD1
581 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
582 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
583
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000584 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000585 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
586 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000587 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000588 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000589 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000590 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000591 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
592 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000593
Owen Anderson825b72b2009-08-11 20:47:22 +0000594 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
595 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
596 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
597 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000598
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000599 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
601 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000602 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000603 addLegalFPImmediate(APFloat(+0.0)); // FLD0
604 addLegalFPImmediate(APFloat(+1.0)); // FLD1
605 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
606 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000607 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
608 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
609 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
610 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000611 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000612
Cameron Zwarich33390842011-07-08 21:39:21 +0000613 // We don't support FMA.
614 setOperationAction(ISD::FMA, MVT::f64, Expand);
615 setOperationAction(ISD::FMA, MVT::f32, Expand);
616
Dale Johannesen59a58732007-08-05 18:49:15 +0000617 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000618 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000619 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
620 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
621 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000622 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000623 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000624 addLegalFPImmediate(TmpFlt); // FLD0
625 TmpFlt.changeSign();
626 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000627
628 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000629 APFloat TmpFlt2(+1.0);
630 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
631 &ignored);
632 addLegalFPImmediate(TmpFlt2); // FLD1
633 TmpFlt2.changeSign();
634 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
635 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000636
Evan Chengc7ce29b2009-02-13 22:36:38 +0000637 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000638 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
639 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000640 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000641
642 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000643 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000644
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000645 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000646 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
647 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
648 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000649
Owen Anderson825b72b2009-08-11 20:47:22 +0000650 setOperationAction(ISD::FLOG, MVT::f80, Expand);
651 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
652 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
653 setOperationAction(ISD::FEXP, MVT::f80, Expand);
654 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000655
Mon P Wangf007a8b2008-11-06 05:31:54 +0000656 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000657 // (for widening) or expand (for scalarization). Then we will selectively
658 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
660 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
661 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
662 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
663 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
664 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
665 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
666 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
667 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
668 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
669 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
670 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
671 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
672 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
673 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
674 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
675 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000677 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
678 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000679 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
680 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
681 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
682 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
683 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
684 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
685 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
686 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
687 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000710 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000711 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
715 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
716 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
717 setTruncStoreAction((MVT::SimpleValueType)VT,
718 (MVT::SimpleValueType)InnerVT, Expand);
719 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
720 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
721 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000722 }
723
Evan Chengc7ce29b2009-02-13 22:36:38 +0000724 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
725 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000726 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000727 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000728 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000729 }
730
Dale Johannesen0488fb62010-09-30 23:57:10 +0000731 // MMX-sized vectors (other than x86mmx) are expected to be expanded
732 // into smaller operations.
733 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
734 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
735 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
736 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
737 setOperationAction(ISD::AND, MVT::v8i8, Expand);
738 setOperationAction(ISD::AND, MVT::v4i16, Expand);
739 setOperationAction(ISD::AND, MVT::v2i32, Expand);
740 setOperationAction(ISD::AND, MVT::v1i64, Expand);
741 setOperationAction(ISD::OR, MVT::v8i8, Expand);
742 setOperationAction(ISD::OR, MVT::v4i16, Expand);
743 setOperationAction(ISD::OR, MVT::v2i32, Expand);
744 setOperationAction(ISD::OR, MVT::v1i64, Expand);
745 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
746 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
747 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
748 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
749 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
750 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
751 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
752 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
753 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
754 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
755 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
756 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
757 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000758 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
759 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
760 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
761 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000762
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000763 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000764 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000765
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
767 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
768 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
769 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
770 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
771 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
772 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
773 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
774 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
775 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
776 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
777 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000778 }
779
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000780 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000782
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000783 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
784 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000785 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
786 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
787 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
788 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000789
Owen Anderson825b72b2009-08-11 20:47:22 +0000790 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
791 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
792 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
793 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
794 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
795 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
796 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
797 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
798 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
799 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
800 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
801 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
802 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
803 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
804 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
805 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000806
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
808 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
809 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
810 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000811
Owen Anderson825b72b2009-08-11 20:47:22 +0000812 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
813 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
814 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000817
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000818 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
819 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
820 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
821 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
822 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
823
Evan Cheng2c3ae372006-04-12 21:21:57 +0000824 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000825 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
826 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000827 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000828 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000829 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000830 // Do not attempt to custom lower non-128-bit vectors
831 if (!VT.is128BitVector())
832 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 setOperationAction(ISD::BUILD_VECTOR,
834 VT.getSimpleVT().SimpleTy, Custom);
835 setOperationAction(ISD::VECTOR_SHUFFLE,
836 VT.getSimpleVT().SimpleTy, Custom);
837 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
838 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000839 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000840
Owen Anderson825b72b2009-08-11 20:47:22 +0000841 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
842 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
843 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
844 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
845 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
846 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000847
Nate Begemancdd1eec2008-02-12 22:51:28 +0000848 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000849 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
850 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000851 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000852
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000853 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000854 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
855 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000856 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000857
858 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000859 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000860 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000861
Owen Andersond6662ad2009-08-10 20:46:15 +0000862 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000863 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000864 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000865 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000866 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000868 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000869 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000870 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000871 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000872 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000873
Owen Anderson825b72b2009-08-11 20:47:22 +0000874 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000875
Evan Cheng2c3ae372006-04-12 21:21:57 +0000876 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000877 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
878 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
879 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
880 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000881
Owen Anderson825b72b2009-08-11 20:47:22 +0000882 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
883 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000884 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000885
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000886 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000887 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
888 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
889 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
890 setOperationAction(ISD::FRINT, MVT::f32, Legal);
891 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
892 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
893 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
894 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
895 setOperationAction(ISD::FRINT, MVT::f64, Legal);
896 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
897
Nate Begeman14d12ca2008-02-11 04:19:36 +0000898 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000899 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000900
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000901 // Can turn SHL into an integer multiply.
902 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000903 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000904
Nate Begeman14d12ca2008-02-11 04:19:36 +0000905 // i8 and i16 vectors are custom , because the source register and source
906 // source memory operand types are not the same width. f32 vectors are
907 // custom since the immediate controlling the insert encodes additional
908 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
910 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
911 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
912 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000913
Owen Anderson825b72b2009-08-11 20:47:22 +0000914 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
915 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
916 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
917 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000918
919 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
921 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000922 }
923 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000924
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000925 if (Subtarget->hasSSE2() || Subtarget->hasAVX()) {
Nadav Rotem43012222011-05-11 08:12:09 +0000926 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
927 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
928 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000929 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000930
931 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
932 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
933 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
934
935 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
936 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
937 }
938
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000939 if (Subtarget->hasSSE42() || Subtarget->hasAVX())
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000941
David Greene9b9838d2009-06-29 16:47:10 +0000942 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000943 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
944 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
945 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
946 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
947 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
948 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000949
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000951 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
952 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000953
Owen Anderson825b72b2009-08-11 20:47:22 +0000954 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
955 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
956 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
957 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
958 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
959 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000960
Owen Anderson825b72b2009-08-11 20:47:22 +0000961 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
962 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
963 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
964 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
965 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
966 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000967
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000968 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
969 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000970 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000971
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000972 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
973 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
974 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
975 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
976 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
977 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
978
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000979 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
980 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
981 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
982 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
983
984 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
985 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
986 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
987 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
988
989 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
990 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
991
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +0000992 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
993 setOperationAction(ISD::VSETCC, MVT::v4i64, Custom);
994
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +0000995 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
996 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
997 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
998
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000999 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001000 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001001 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1002 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1003 EVT VT = SVT;
1004
1005 // Extract subvector is special because the value type
1006 // (result) is 128-bit but the source is 256-bit wide.
1007 if (VT.is128BitVector())
1008 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1009
1010 // Do not attempt to custom lower other non-256-bit vectors
1011 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001012 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001013
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001014 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1015 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1016 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1017 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001018 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001019 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001020 }
1021
David Greene54d8eba2011-01-27 22:38:56 +00001022 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001023 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1024 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1025 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001026
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001027 // Do not attempt to promote non-256-bit vectors
1028 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001029 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001030
1031 setOperationAction(ISD::AND, SVT, Promote);
1032 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1033 setOperationAction(ISD::OR, SVT, Promote);
1034 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1035 setOperationAction(ISD::XOR, SVT, Promote);
1036 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1037 setOperationAction(ISD::LOAD, SVT, Promote);
1038 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1039 setOperationAction(ISD::SELECT, SVT, Promote);
1040 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001041 }
David Greene9b9838d2009-06-29 16:47:10 +00001042 }
1043
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001044 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1045 // of this type with custom code.
1046 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1047 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1048 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1049 }
1050
Evan Cheng6be2c582006-04-05 23:38:46 +00001051 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001052 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001053
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001054
Eli Friedman962f5492010-06-02 19:35:46 +00001055 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1056 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001057 //
Eli Friedman962f5492010-06-02 19:35:46 +00001058 // FIXME: We really should do custom legalization for addition and
1059 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1060 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001061 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1062 // Add/Sub/Mul with overflow operations are custom lowered.
1063 MVT VT = IntVTs[i];
1064 setOperationAction(ISD::SADDO, VT, Custom);
1065 setOperationAction(ISD::UADDO, VT, Custom);
1066 setOperationAction(ISD::SSUBO, VT, Custom);
1067 setOperationAction(ISD::USUBO, VT, Custom);
1068 setOperationAction(ISD::SMULO, VT, Custom);
1069 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001070 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001071
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001072 // There are no 8-bit 3-address imul/mul instructions
1073 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1074 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001075
Evan Chengd54f2d52009-03-31 19:38:51 +00001076 if (!Subtarget->is64Bit()) {
1077 // These libcalls are not available in 32-bit.
1078 setLibcallName(RTLIB::SHL_I128, 0);
1079 setLibcallName(RTLIB::SRL_I128, 0);
1080 setLibcallName(RTLIB::SRA_I128, 0);
1081 }
1082
Evan Cheng206ee9d2006-07-07 08:33:52 +00001083 // We have target-specific dag combine patterns for the following nodes:
1084 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001085 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001086 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001087 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001088 setTargetDAGCombine(ISD::SHL);
1089 setTargetDAGCombine(ISD::SRA);
1090 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001091 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001092 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001093 setTargetDAGCombine(ISD::ADD);
1094 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001095 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001096 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001097 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001098 if (Subtarget->is64Bit())
1099 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001100
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001101 computeRegisterProperties();
1102
Evan Cheng05219282011-01-06 06:52:41 +00001103 // On Darwin, -Os means optimize for size without hurting performance,
1104 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001105 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001106 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001107 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001108 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1109 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1110 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001111 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001112 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001113
1114 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001115}
1116
Scott Michel5b8f82e2008-03-10 15:42:14 +00001117
Owen Anderson825b72b2009-08-11 20:47:22 +00001118MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1119 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001120}
1121
1122
Evan Cheng29286502008-01-23 23:17:41 +00001123/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1124/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001125static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001126 if (MaxAlign == 16)
1127 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001128 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001129 if (VTy->getBitWidth() == 128)
1130 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001131 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001132 unsigned EltAlign = 0;
1133 getMaxByValAlign(ATy->getElementType(), EltAlign);
1134 if (EltAlign > MaxAlign)
1135 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001136 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001137 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1138 unsigned EltAlign = 0;
1139 getMaxByValAlign(STy->getElementType(i), EltAlign);
1140 if (EltAlign > MaxAlign)
1141 MaxAlign = EltAlign;
1142 if (MaxAlign == 16)
1143 break;
1144 }
1145 }
1146 return;
1147}
1148
1149/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1150/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001151/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1152/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001153unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001154 if (Subtarget->is64Bit()) {
1155 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001156 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001157 if (TyAlign > 8)
1158 return TyAlign;
1159 return 8;
1160 }
1161
Evan Cheng29286502008-01-23 23:17:41 +00001162 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001163 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001164 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001165 return Align;
1166}
Chris Lattner2b02a442007-02-25 08:29:00 +00001167
Evan Chengf0df0312008-05-15 08:39:06 +00001168/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001169/// and store operations as a result of memset, memcpy, and memmove
1170/// lowering. If DstAlign is zero that means it's safe to destination
1171/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1172/// means there isn't a need to check it against alignment requirement,
1173/// probably because the source does not need to be loaded. If
1174/// 'NonScalarIntSafe' is true, that means it's safe to return a
1175/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1176/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1177/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001178/// It returns EVT::Other if the type should be determined using generic
1179/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001180EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001181X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1182 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001183 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001184 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001185 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001186 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1187 // linux. This is because the stack realignment code can't handle certain
1188 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001189 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001190 if (NonScalarIntSafe &&
1191 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001192 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001193 (Subtarget->isUnalignedMemAccessFast() ||
1194 ((DstAlign == 0 || DstAlign >= 16) &&
1195 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001196 Subtarget->getStackAlignment() >= 16) {
1197 if (Subtarget->hasSSE2())
1198 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001199 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001200 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001201 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001202 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001203 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001204 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001205 // Do not use f64 to lower memcpy if source is string constant. It's
1206 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001207 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001208 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001209 }
Evan Chengf0df0312008-05-15 08:39:06 +00001210 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001211 return MVT::i64;
1212 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001213}
1214
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001215/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1216/// current function. The returned value is a member of the
1217/// MachineJumpTableInfo::JTEntryKind enum.
1218unsigned X86TargetLowering::getJumpTableEncoding() const {
1219 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1220 // symbol.
1221 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1222 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001223 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001224
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001225 // Otherwise, use the normal jump table encoding heuristics.
1226 return TargetLowering::getJumpTableEncoding();
1227}
1228
Chris Lattnerc64daab2010-01-26 05:02:42 +00001229const MCExpr *
1230X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1231 const MachineBasicBlock *MBB,
1232 unsigned uid,MCContext &Ctx) const{
1233 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1234 Subtarget->isPICStyleGOT());
1235 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1236 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001237 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1238 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001239}
1240
Evan Chengcc415862007-11-09 01:32:10 +00001241/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1242/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001243SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001244 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001245 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001246 // This doesn't have DebugLoc associated with it, but is not really the
1247 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001248 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001249 return Table;
1250}
1251
Chris Lattner589c6f62010-01-26 06:28:43 +00001252/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1253/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1254/// MCExpr.
1255const MCExpr *X86TargetLowering::
1256getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1257 MCContext &Ctx) const {
1258 // X86-64 uses RIP relative addressing based on the jump table label.
1259 if (Subtarget->isPICStyleRIPRel())
1260 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1261
1262 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001263 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001264}
1265
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001266// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001267std::pair<const TargetRegisterClass*, uint8_t>
1268X86TargetLowering::findRepresentativeClass(EVT VT) const{
1269 const TargetRegisterClass *RRC = 0;
1270 uint8_t Cost = 1;
1271 switch (VT.getSimpleVT().SimpleTy) {
1272 default:
1273 return TargetLowering::findRepresentativeClass(VT);
1274 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1275 RRC = (Subtarget->is64Bit()
1276 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1277 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001278 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001279 RRC = X86::VR64RegisterClass;
1280 break;
1281 case MVT::f32: case MVT::f64:
1282 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1283 case MVT::v4f32: case MVT::v2f64:
1284 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1285 case MVT::v4f64:
1286 RRC = X86::VR128RegisterClass;
1287 break;
1288 }
1289 return std::make_pair(RRC, Cost);
1290}
1291
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001292bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1293 unsigned &Offset) const {
1294 if (!Subtarget->isTargetLinux())
1295 return false;
1296
1297 if (Subtarget->is64Bit()) {
1298 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1299 Offset = 0x28;
1300 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1301 AddressSpace = 256;
1302 else
1303 AddressSpace = 257;
1304 } else {
1305 // %gs:0x14 on i386
1306 Offset = 0x14;
1307 AddressSpace = 256;
1308 }
1309 return true;
1310}
1311
1312
Chris Lattner2b02a442007-02-25 08:29:00 +00001313//===----------------------------------------------------------------------===//
1314// Return Value Calling Convention Implementation
1315//===----------------------------------------------------------------------===//
1316
Chris Lattner59ed56b2007-02-28 04:55:35 +00001317#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001318
Michael J. Spencerec38de22010-10-10 22:04:20 +00001319bool
Eric Christopher471e4222011-06-08 23:55:35 +00001320X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1321 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001322 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001323 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001324 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001325 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001326 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001327 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001328}
1329
Dan Gohman98ca4f22009-08-05 01:29:28 +00001330SDValue
1331X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001332 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001333 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001334 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001335 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001336 MachineFunction &MF = DAG.getMachineFunction();
1337 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001338
Chris Lattner9774c912007-02-27 05:28:59 +00001339 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001340 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001341 RVLocs, *DAG.getContext());
1342 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001343
Evan Chengdcea1632010-02-04 02:40:39 +00001344 // Add the regs to the liveout set for the function.
1345 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1346 for (unsigned i = 0; i != RVLocs.size(); ++i)
1347 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1348 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001349
Dan Gohman475871a2008-07-27 21:46:04 +00001350 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001351
Dan Gohman475871a2008-07-27 21:46:04 +00001352 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001353 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1354 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001355 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1356 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001357
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001358 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001359 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1360 CCValAssign &VA = RVLocs[i];
1361 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001362 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001363 EVT ValVT = ValToCopy.getValueType();
1364
Dale Johannesenc4510512010-09-24 19:05:48 +00001365 // If this is x86-64, and we disabled SSE, we can't return FP values,
1366 // or SSE or MMX vectors.
1367 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1368 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001369 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001370 report_fatal_error("SSE register return with SSE disabled");
1371 }
1372 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1373 // llvm-gcc has never done it right and no one has noticed, so this
1374 // should be OK for now.
1375 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001376 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001377 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001378
Chris Lattner447ff682008-03-11 03:23:40 +00001379 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1380 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001381 if (VA.getLocReg() == X86::ST0 ||
1382 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001383 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1384 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001385 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001386 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001387 RetOps.push_back(ValToCopy);
1388 // Don't emit a copytoreg.
1389 continue;
1390 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001391
Evan Cheng242b38b2009-02-23 09:03:22 +00001392 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1393 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001394 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001395 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001396 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001397 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001398 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1399 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001400 // If we don't have SSE2 available, convert to v4f32 so the generated
1401 // register is legal.
1402 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001403 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001404 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001405 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001406 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001407
Dale Johannesendd64c412009-02-04 00:33:20 +00001408 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001409 Flag = Chain.getValue(1);
1410 }
Dan Gohman61a92132008-04-21 23:59:07 +00001411
1412 // The x86-64 ABI for returning structs by value requires that we copy
1413 // the sret argument into %rax for the return. We saved the argument into
1414 // a virtual register in the entry block, so now we copy the value out
1415 // and into %rax.
1416 if (Subtarget->is64Bit() &&
1417 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1418 MachineFunction &MF = DAG.getMachineFunction();
1419 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1420 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001421 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001422 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001423 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001424
Dale Johannesendd64c412009-02-04 00:33:20 +00001425 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001426 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001427
1428 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001429 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001430 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001431
Chris Lattner447ff682008-03-11 03:23:40 +00001432 RetOps[0] = Chain; // Update chain.
1433
1434 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001435 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001436 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001437
1438 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001439 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001440}
1441
Evan Cheng3d2125c2010-11-30 23:55:39 +00001442bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1443 if (N->getNumValues() != 1)
1444 return false;
1445 if (!N->hasNUsesOfValue(1, 0))
1446 return false;
1447
1448 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001449 if (Copy->getOpcode() != ISD::CopyToReg &&
1450 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001451 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001452
1453 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001454 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001455 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001456 if (UI->getOpcode() != X86ISD::RET_FLAG)
1457 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001458 HasRet = true;
1459 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001460
Evan Cheng1bf891a2010-12-01 22:59:46 +00001461 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001462}
1463
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001464EVT
1465X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001466 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001467 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001468 // TODO: Is this also valid on 32-bit?
1469 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001470 ReturnMVT = MVT::i8;
1471 else
1472 ReturnMVT = MVT::i32;
1473
1474 EVT MinVT = getRegisterType(Context, ReturnMVT);
1475 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001476}
1477
Dan Gohman98ca4f22009-08-05 01:29:28 +00001478/// LowerCallResult - Lower the result values of a call into the
1479/// appropriate copies out of appropriate physical registers.
1480///
1481SDValue
1482X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001483 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001484 const SmallVectorImpl<ISD::InputArg> &Ins,
1485 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001486 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001487
Chris Lattnere32bbf62007-02-28 07:09:55 +00001488 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001489 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001490 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001491 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1492 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001493 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001494
Chris Lattner3085e152007-02-25 08:59:22 +00001495 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001496 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001497 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001498 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001499
Torok Edwin3f142c32009-02-01 18:15:56 +00001500 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001501 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001502 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001503 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001504 }
1505
Evan Cheng79fb3b42009-02-20 20:43:02 +00001506 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001507
1508 // If this is a call to a function that returns an fp value on the floating
1509 // point stack, we must guarantee the the value is popped from the stack, so
1510 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001511 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001512 // instead.
1513 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1514 // If we prefer to use the value in xmm registers, copy it out as f80 and
1515 // use a truncate to move it from fp stack reg to xmm reg.
1516 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001517 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001518 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1519 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001520 Val = Chain.getValue(0);
1521
1522 // Round the f80 to the right size, which also moves it to the appropriate
1523 // xmm register.
1524 if (CopyVT != VA.getValVT())
1525 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1526 // This truncation won't change the value.
1527 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001528 } else {
1529 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1530 CopyVT, InFlag).getValue(1);
1531 Val = Chain.getValue(0);
1532 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001533 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001534 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001535 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001536
Dan Gohman98ca4f22009-08-05 01:29:28 +00001537 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001538}
1539
1540
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001541//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001542// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001543//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001544// StdCall calling convention seems to be standard for many Windows' API
1545// routines and around. It differs from C calling convention just a little:
1546// callee should clean up the stack, not caller. Symbols should be also
1547// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001548// For info on fast calling convention see Fast Calling Convention (tail call)
1549// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001550
Dan Gohman98ca4f22009-08-05 01:29:28 +00001551/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001552/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001553static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1554 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001555 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001556
Dan Gohman98ca4f22009-08-05 01:29:28 +00001557 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001558}
1559
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001560/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001561/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001562static bool
1563ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1564 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001565 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001566
Dan Gohman98ca4f22009-08-05 01:29:28 +00001567 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001568}
1569
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001570/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1571/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001572/// the specific parameter attribute. The copy will be passed as a byval
1573/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001574static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001575CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001576 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1577 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001578 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001579
Dale Johannesendd64c412009-02-04 00:33:20 +00001580 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001581 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001582 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001583}
1584
Chris Lattner29689432010-03-11 00:22:57 +00001585/// IsTailCallConvention - Return true if the calling convention is one that
1586/// supports tail call optimization.
1587static bool IsTailCallConvention(CallingConv::ID CC) {
1588 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1589}
1590
Evan Cheng485fafc2011-03-21 01:19:09 +00001591bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1592 if (!CI->isTailCall())
1593 return false;
1594
1595 CallSite CS(CI);
1596 CallingConv::ID CalleeCC = CS.getCallingConv();
1597 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1598 return false;
1599
1600 return true;
1601}
1602
Evan Cheng0c439eb2010-01-27 00:07:07 +00001603/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1604/// a tailcall target by changing its ABI.
1605static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001606 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001607}
1608
Dan Gohman98ca4f22009-08-05 01:29:28 +00001609SDValue
1610X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001611 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001612 const SmallVectorImpl<ISD::InputArg> &Ins,
1613 DebugLoc dl, SelectionDAG &DAG,
1614 const CCValAssign &VA,
1615 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001616 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001617 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001618 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001619 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001620 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001621 EVT ValVT;
1622
1623 // If value is passed by pointer we have address passed instead of the value
1624 // itself.
1625 if (VA.getLocInfo() == CCValAssign::Indirect)
1626 ValVT = VA.getLocVT();
1627 else
1628 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001629
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001630 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001631 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001632 // In case of tail call optimization mark all arguments mutable. Since they
1633 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001634 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001635 unsigned Bytes = Flags.getByValSize();
1636 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1637 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001638 return DAG.getFrameIndex(FI, getPointerTy());
1639 } else {
1640 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001641 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001642 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1643 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001644 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001645 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001646 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001647}
1648
Dan Gohman475871a2008-07-27 21:46:04 +00001649SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001650X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001651 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001652 bool isVarArg,
1653 const SmallVectorImpl<ISD::InputArg> &Ins,
1654 DebugLoc dl,
1655 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001656 SmallVectorImpl<SDValue> &InVals)
1657 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001658 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001659 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001660
Gordon Henriksen86737662008-01-05 16:56:59 +00001661 const Function* Fn = MF.getFunction();
1662 if (Fn->hasExternalLinkage() &&
1663 Subtarget->isTargetCygMing() &&
1664 Fn->getName() == "main")
1665 FuncInfo->setForceFramePointer(true);
1666
Evan Cheng1bc78042006-04-26 01:20:17 +00001667 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001668 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001669 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001670
Chris Lattner29689432010-03-11 00:22:57 +00001671 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1672 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001673
Chris Lattner638402b2007-02-28 07:00:42 +00001674 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001675 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001676 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001677 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001678
1679 // Allocate shadow area for Win64
1680 if (IsWin64) {
1681 CCInfo.AllocateStack(32, 8);
1682 }
1683
Duncan Sands45907662010-10-31 13:21:44 +00001684 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001685
Chris Lattnerf39f7712007-02-28 05:46:49 +00001686 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001687 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001688 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1689 CCValAssign &VA = ArgLocs[i];
1690 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1691 // places.
1692 assert(VA.getValNo() != LastVal &&
1693 "Don't support value assigned to multiple locs yet");
1694 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001695
Chris Lattnerf39f7712007-02-28 05:46:49 +00001696 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001697 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001698 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001699 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001700 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001701 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001702 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001703 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001704 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001705 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001706 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001707 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1708 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001709 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001710 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001711 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001712 RC = X86::VR64RegisterClass;
1713 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001714 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001715
Devang Patel68e6bee2011-02-21 23:21:26 +00001716 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001717 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001718
Chris Lattnerf39f7712007-02-28 05:46:49 +00001719 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1720 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1721 // right size.
1722 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001723 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001724 DAG.getValueType(VA.getValVT()));
1725 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001726 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001727 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001728 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001729 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001730
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001731 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001732 // Handle MMX values passed in XMM regs.
1733 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001734 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1735 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001736 } else
1737 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001738 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001739 } else {
1740 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001741 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001742 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001743
1744 // If value is passed via pointer - do a load.
1745 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001746 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1747 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001748
Dan Gohman98ca4f22009-08-05 01:29:28 +00001749 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001750 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001751
Dan Gohman61a92132008-04-21 23:59:07 +00001752 // The x86-64 ABI for returning structs by value requires that we copy
1753 // the sret argument into %rax for the return. Save the argument into
1754 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001755 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001756 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1757 unsigned Reg = FuncInfo->getSRetReturnReg();
1758 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001759 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001760 FuncInfo->setSRetReturnReg(Reg);
1761 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001762 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001763 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001764 }
1765
Chris Lattnerf39f7712007-02-28 05:46:49 +00001766 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001767 // Align stack specially for tail calls.
1768 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001769 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001770
Evan Cheng1bc78042006-04-26 01:20:17 +00001771 // If the function takes variable number of arguments, make a frame index for
1772 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001773 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001774 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1775 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001776 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001777 }
1778 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001779 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1780
1781 // FIXME: We should really autogenerate these arrays
1782 static const unsigned GPR64ArgRegsWin64[] = {
1783 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001784 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001785 static const unsigned GPR64ArgRegs64Bit[] = {
1786 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1787 };
1788 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001789 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1790 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1791 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001792 const unsigned *GPR64ArgRegs;
1793 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001794
1795 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001796 // The XMM registers which might contain var arg parameters are shadowed
1797 // in their paired GPR. So we only need to save the GPR to their home
1798 // slots.
1799 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001800 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001801 } else {
1802 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1803 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001804
1805 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001806 }
1807 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1808 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001809
Devang Patel578efa92009-06-05 21:57:13 +00001810 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001811 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001812 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001813 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001814 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001815 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001816 // Kernel mode asks for SSE to be disabled, so don't push them
1817 // on the stack.
1818 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001819
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001820 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001821 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001822 // Get to the caller-allocated home save location. Add 8 to account
1823 // for the return address.
1824 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001825 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001826 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001827 // Fixup to set vararg frame on shadow area (4 x i64).
1828 if (NumIntRegs < 4)
1829 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001830 } else {
1831 // For X86-64, if there are vararg parameters that are passed via
1832 // registers, then we must store them to their spots on the stack so they
1833 // may be loaded by deferencing the result of va_next.
1834 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1835 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1836 FuncInfo->setRegSaveFrameIndex(
1837 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001838 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001839 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001840
Gordon Henriksen86737662008-01-05 16:56:59 +00001841 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001842 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001843 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1844 getPointerTy());
1845 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001846 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001847 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1848 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001849 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001850 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001851 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001852 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001853 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001854 MachinePointerInfo::getFixedStack(
1855 FuncInfo->getRegSaveFrameIndex(), Offset),
1856 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001857 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001858 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001859 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001860
Dan Gohmanface41a2009-08-16 21:24:25 +00001861 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1862 // Now store the XMM (fp + vector) parameter registers.
1863 SmallVector<SDValue, 11> SaveXMMOps;
1864 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001865
Devang Patel68e6bee2011-02-21 23:21:26 +00001866 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001867 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1868 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001869
Dan Gohman1e93df62010-04-17 14:41:14 +00001870 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1871 FuncInfo->getRegSaveFrameIndex()));
1872 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1873 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001874
Dan Gohmanface41a2009-08-16 21:24:25 +00001875 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001876 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001877 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001878 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1879 SaveXMMOps.push_back(Val);
1880 }
1881 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1882 MVT::Other,
1883 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001884 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001885
1886 if (!MemOps.empty())
1887 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1888 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001889 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001890 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001891
Gordon Henriksen86737662008-01-05 16:56:59 +00001892 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001893 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001894 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001895 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001896 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001897 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001898 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001899 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001900 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001901
Gordon Henriksen86737662008-01-05 16:56:59 +00001902 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001903 // RegSaveFrameIndex is X86-64 only.
1904 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001905 if (CallConv == CallingConv::X86_FastCall ||
1906 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001907 // fastcc functions can't have varargs.
1908 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001909 }
Evan Cheng25caf632006-05-23 21:06:34 +00001910
Dan Gohman98ca4f22009-08-05 01:29:28 +00001911 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001912}
1913
Dan Gohman475871a2008-07-27 21:46:04 +00001914SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001915X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1916 SDValue StackPtr, SDValue Arg,
1917 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001918 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001919 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001920 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001921 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001922 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001923 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001924 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001925
1926 return DAG.getStore(Chain, dl, Arg, PtrOff,
1927 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001928 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001929}
1930
Bill Wendling64e87322009-01-16 19:25:27 +00001931/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001932/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001933SDValue
1934X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001935 SDValue &OutRetAddr, SDValue Chain,
1936 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001937 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001938 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001939 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001940 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001941
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001942 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001943 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1944 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001945 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001946}
1947
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001948/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001949/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001950static SDValue
1951EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001952 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001953 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001954 // Store the return address to the appropriate stack slot.
1955 if (!FPDiff) return Chain;
1956 // Calculate the new stack slot for the return address.
1957 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001958 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001959 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001960 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001961 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001962 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001963 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001964 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001965 return Chain;
1966}
1967
Dan Gohman98ca4f22009-08-05 01:29:28 +00001968SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001969X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001970 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001971 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001972 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001973 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001974 const SmallVectorImpl<ISD::InputArg> &Ins,
1975 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001976 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001977 MachineFunction &MF = DAG.getMachineFunction();
1978 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001979 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001980 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001981 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001982
Evan Cheng5f941932010-02-05 02:21:12 +00001983 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001984 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001985 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1986 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001987 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001988
1989 // Sibcalls are automatically detected tailcalls which do not require
1990 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001991 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001992 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001993
1994 if (isTailCall)
1995 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001996 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001997
Chris Lattner29689432010-03-11 00:22:57 +00001998 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1999 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002000
Chris Lattner638402b2007-02-28 07:00:42 +00002001 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002002 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002003 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002004 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002005
2006 // Allocate shadow area for Win64
2007 if (IsWin64) {
2008 CCInfo.AllocateStack(32, 8);
2009 }
2010
Duncan Sands45907662010-10-31 13:21:44 +00002011 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002012
Chris Lattner423c5f42007-02-28 05:31:48 +00002013 // Get a count of how many bytes are to be pushed on the stack.
2014 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002015 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002016 // This is a sibcall. The memory operands are available in caller's
2017 // own caller's stack.
2018 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002019 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002020 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002021
Gordon Henriksen86737662008-01-05 16:56:59 +00002022 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002023 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002024 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002025 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002026 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2027 FPDiff = NumBytesCallerPushed - NumBytes;
2028
2029 // Set the delta of movement of the returnaddr stackslot.
2030 // But only set if delta is greater than previous delta.
2031 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2032 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2033 }
2034
Evan Chengf22f9b32010-02-06 03:28:46 +00002035 if (!IsSibcall)
2036 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002037
Dan Gohman475871a2008-07-27 21:46:04 +00002038 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002039 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002040 if (isTailCall && FPDiff)
2041 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2042 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002043
Dan Gohman475871a2008-07-27 21:46:04 +00002044 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2045 SmallVector<SDValue, 8> MemOpChains;
2046 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002047
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002048 // Walk the register/memloc assignments, inserting copies/loads. In the case
2049 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002050 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2051 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002052 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002053 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002054 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002055 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002056
Chris Lattner423c5f42007-02-28 05:31:48 +00002057 // Promote the value if needed.
2058 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002059 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002060 case CCValAssign::Full: break;
2061 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002062 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002063 break;
2064 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002065 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002066 break;
2067 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002068 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2069 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002070 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002071 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2072 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002073 } else
2074 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2075 break;
2076 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002077 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002078 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002079 case CCValAssign::Indirect: {
2080 // Store the argument.
2081 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002082 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002083 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002084 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002085 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002086 Arg = SpillSlot;
2087 break;
2088 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002089 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002090
Chris Lattner423c5f42007-02-28 05:31:48 +00002091 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002092 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2093 if (isVarArg && IsWin64) {
2094 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2095 // shadow reg if callee is a varargs function.
2096 unsigned ShadowReg = 0;
2097 switch (VA.getLocReg()) {
2098 case X86::XMM0: ShadowReg = X86::RCX; break;
2099 case X86::XMM1: ShadowReg = X86::RDX; break;
2100 case X86::XMM2: ShadowReg = X86::R8; break;
2101 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002102 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002103 if (ShadowReg)
2104 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002105 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002106 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002107 assert(VA.isMemLoc());
2108 if (StackPtr.getNode() == 0)
2109 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2110 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2111 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002112 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002113 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002114
Evan Cheng32fe1032006-05-25 00:59:30 +00002115 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002116 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002117 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002118
Evan Cheng347d5f72006-04-28 21:29:37 +00002119 // Build a sequence of copy-to-reg nodes chained together with token chain
2120 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002121 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002122 // Tail call byval lowering might overwrite argument registers so in case of
2123 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002124 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002125 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002126 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002127 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002128 InFlag = Chain.getValue(1);
2129 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002130
Chris Lattner88e1fd52009-07-09 04:24:46 +00002131 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002132 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2133 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002134 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002135 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2136 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002137 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002138 InFlag);
2139 InFlag = Chain.getValue(1);
2140 } else {
2141 // If we are tail calling and generating PIC/GOT style code load the
2142 // address of the callee into ECX. The value in ecx is used as target of
2143 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2144 // for tail calls on PIC/GOT architectures. Normally we would just put the
2145 // address of GOT into ebx and then call target@PLT. But for tail calls
2146 // ebx would be restored (since ebx is callee saved) before jumping to the
2147 // target@PLT.
2148
2149 // Note: The actual moving to ECX is done further down.
2150 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2151 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2152 !G->getGlobal()->hasProtectedVisibility())
2153 Callee = LowerGlobalAddress(Callee, DAG);
2154 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002155 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002156 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002157 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002158
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002159 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002160 // From AMD64 ABI document:
2161 // For calls that may call functions that use varargs or stdargs
2162 // (prototype-less calls or calls to functions containing ellipsis (...) in
2163 // the declaration) %al is used as hidden argument to specify the number
2164 // of SSE registers used. The contents of %al do not need to match exactly
2165 // the number of registers, but must be an ubound on the number of SSE
2166 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002167
Gordon Henriksen86737662008-01-05 16:56:59 +00002168 // Count the number of XMM registers allocated.
2169 static const unsigned XMMArgRegs[] = {
2170 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2171 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2172 };
2173 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002174 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002175 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002176
Dale Johannesendd64c412009-02-04 00:33:20 +00002177 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002178 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002179 InFlag = Chain.getValue(1);
2180 }
2181
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002182
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002183 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002184 if (isTailCall) {
2185 // Force all the incoming stack arguments to be loaded from the stack
2186 // before any new outgoing arguments are stored to the stack, because the
2187 // outgoing stack slots may alias the incoming argument stack slots, and
2188 // the alias isn't otherwise explicit. This is slightly more conservative
2189 // than necessary, because it means that each store effectively depends
2190 // on every argument instead of just those arguments it would clobber.
2191 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2192
Dan Gohman475871a2008-07-27 21:46:04 +00002193 SmallVector<SDValue, 8> MemOpChains2;
2194 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002195 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002196 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002197 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002198 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002199 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2200 CCValAssign &VA = ArgLocs[i];
2201 if (VA.isRegLoc())
2202 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002203 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002204 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002205 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002206 // Create frame index.
2207 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002208 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002209 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002210 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002211
Duncan Sands276dcbd2008-03-21 09:14:45 +00002212 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002213 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002214 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002215 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002216 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002217 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002218 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002219
Dan Gohman98ca4f22009-08-05 01:29:28 +00002220 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2221 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002222 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002223 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002224 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002225 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002226 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002227 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002228 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002229 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002230 }
2231 }
2232
2233 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002234 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002235 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002236
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002237 // Copy arguments to their registers.
2238 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002239 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002240 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002241 InFlag = Chain.getValue(1);
2242 }
Dan Gohman475871a2008-07-27 21:46:04 +00002243 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002244
Gordon Henriksen86737662008-01-05 16:56:59 +00002245 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002246 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002247 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002248 }
2249
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002250 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2251 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2252 // In the 64-bit large code model, we have to make all calls
2253 // through a register, since the call instruction's 32-bit
2254 // pc-relative offset may not be large enough to hold the whole
2255 // address.
2256 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002257 // If the callee is a GlobalAddress node (quite common, every direct call
2258 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2259 // it.
2260
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002261 // We should use extra load for direct calls to dllimported functions in
2262 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002263 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002264 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002265 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002266 bool ExtraLoad = false;
2267 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002268
Chris Lattner48a7d022009-07-09 05:02:21 +00002269 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2270 // external symbols most go through the PLT in PIC mode. If the symbol
2271 // has hidden or protected visibility, or if it is static or local, then
2272 // we don't need to use the PLT - we can directly call it.
2273 if (Subtarget->isTargetELF() &&
2274 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002275 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002276 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002277 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002278 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002279 (!Subtarget->getTargetTriple().isMacOSX() ||
2280 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002281 // PC-relative references to external symbols should go through $stub,
2282 // unless we're building with the leopard linker or later, which
2283 // automatically synthesizes these stubs.
2284 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002285 } else if (Subtarget->isPICStyleRIPRel() &&
2286 isa<Function>(GV) &&
2287 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2288 // If the function is marked as non-lazy, generate an indirect call
2289 // which loads from the GOT directly. This avoids runtime overhead
2290 // at the cost of eager binding (and one extra byte of encoding).
2291 OpFlags = X86II::MO_GOTPCREL;
2292 WrapperKind = X86ISD::WrapperRIP;
2293 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002294 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002295
Devang Patel0d881da2010-07-06 22:08:15 +00002296 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002297 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002298
2299 // Add a wrapper if needed.
2300 if (WrapperKind != ISD::DELETED_NODE)
2301 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2302 // Add extra indirection if needed.
2303 if (ExtraLoad)
2304 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2305 MachinePointerInfo::getGOT(),
2306 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002307 }
Bill Wendling056292f2008-09-16 21:48:12 +00002308 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002309 unsigned char OpFlags = 0;
2310
Evan Cheng1bf891a2010-12-01 22:59:46 +00002311 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2312 // external symbols should go through the PLT.
2313 if (Subtarget->isTargetELF() &&
2314 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2315 OpFlags = X86II::MO_PLT;
2316 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002317 (!Subtarget->getTargetTriple().isMacOSX() ||
2318 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002319 // PC-relative references to external symbols should go through $stub,
2320 // unless we're building with the leopard linker or later, which
2321 // automatically synthesizes these stubs.
2322 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002323 }
Eric Christopherfd179292009-08-27 18:07:15 +00002324
Chris Lattner48a7d022009-07-09 05:02:21 +00002325 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2326 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002327 }
2328
Chris Lattnerd96d0722007-02-25 06:40:16 +00002329 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002330 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002331 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002332
Evan Chengf22f9b32010-02-06 03:28:46 +00002333 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002334 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2335 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002336 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002338
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002339 Ops.push_back(Chain);
2340 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002341
Dan Gohman98ca4f22009-08-05 01:29:28 +00002342 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002343 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002344
Gordon Henriksen86737662008-01-05 16:56:59 +00002345 // Add argument registers to the end of the list so that they are known live
2346 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002347 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2348 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2349 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002350
Evan Cheng586ccac2008-03-18 23:36:35 +00002351 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002352 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002353 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2354
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002355 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002356 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002357 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002358
Gabor Greifba36cb52008-08-28 21:40:38 +00002359 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002360 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002361
Dan Gohman98ca4f22009-08-05 01:29:28 +00002362 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002363 // We used to do:
2364 //// If this is the first return lowered for this function, add the regs
2365 //// to the liveout set for the function.
2366 // This isn't right, although it's probably harmless on x86; liveouts
2367 // should be computed from returns not tail calls. Consider a void
2368 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002369 return DAG.getNode(X86ISD::TC_RETURN, dl,
2370 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002371 }
2372
Dale Johannesenace16102009-02-03 19:33:06 +00002373 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002374 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002375
Chris Lattner2d297092006-05-23 18:50:38 +00002376 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002377 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002378 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002379 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002380 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002381 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002382 // pops the hidden struct pointer, so we have to push it back.
2383 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002384 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002385 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002386 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002387
Gordon Henriksenae636f82008-01-03 16:47:34 +00002388 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002389 if (!IsSibcall) {
2390 Chain = DAG.getCALLSEQ_END(Chain,
2391 DAG.getIntPtrConstant(NumBytes, true),
2392 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2393 true),
2394 InFlag);
2395 InFlag = Chain.getValue(1);
2396 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002397
Chris Lattner3085e152007-02-25 08:59:22 +00002398 // Handle result values, copying them out of physregs into vregs that we
2399 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002400 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2401 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002402}
2403
Evan Cheng25ab6902006-09-08 06:48:29 +00002404
2405//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002406// Fast Calling Convention (tail call) implementation
2407//===----------------------------------------------------------------------===//
2408
2409// Like std call, callee cleans arguments, convention except that ECX is
2410// reserved for storing the tail called function address. Only 2 registers are
2411// free for argument passing (inreg). Tail call optimization is performed
2412// provided:
2413// * tailcallopt is enabled
2414// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002415// On X86_64 architecture with GOT-style position independent code only local
2416// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002417// To keep the stack aligned according to platform abi the function
2418// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2419// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002420// If a tail called function callee has more arguments than the caller the
2421// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002422// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002423// original REtADDR, but before the saved framepointer or the spilled registers
2424// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2425// stack layout:
2426// arg1
2427// arg2
2428// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002429// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002430// move area ]
2431// (possible EBP)
2432// ESI
2433// EDI
2434// local1 ..
2435
2436/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2437/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002438unsigned
2439X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2440 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002441 MachineFunction &MF = DAG.getMachineFunction();
2442 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002443 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002444 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002445 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002446 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002447 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002448 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2449 // Number smaller than 12 so just add the difference.
2450 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2451 } else {
2452 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002453 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002454 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002455 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002456 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002457}
2458
Evan Cheng5f941932010-02-05 02:21:12 +00002459/// MatchingStackOffset - Return true if the given stack call argument is
2460/// already available in the same position (relatively) of the caller's
2461/// incoming argument stack.
2462static
2463bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2464 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2465 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002466 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2467 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002468 if (Arg.getOpcode() == ISD::CopyFromReg) {
2469 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002470 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002471 return false;
2472 MachineInstr *Def = MRI->getVRegDef(VR);
2473 if (!Def)
2474 return false;
2475 if (!Flags.isByVal()) {
2476 if (!TII->isLoadFromStackSlot(Def, FI))
2477 return false;
2478 } else {
2479 unsigned Opcode = Def->getOpcode();
2480 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2481 Def->getOperand(1).isFI()) {
2482 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002483 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002484 } else
2485 return false;
2486 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002487 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2488 if (Flags.isByVal())
2489 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002490 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002491 // define @foo(%struct.X* %A) {
2492 // tail call @bar(%struct.X* byval %A)
2493 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002494 return false;
2495 SDValue Ptr = Ld->getBasePtr();
2496 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2497 if (!FINode)
2498 return false;
2499 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002500 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002501 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002502 FI = FINode->getIndex();
2503 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002504 } else
2505 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002506
Evan Cheng4cae1332010-03-05 08:38:04 +00002507 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002508 if (!MFI->isFixedObjectIndex(FI))
2509 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002510 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002511}
2512
Dan Gohman98ca4f22009-08-05 01:29:28 +00002513/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2514/// for tail call optimization. Targets which want to do tail call
2515/// optimization should implement this function.
2516bool
2517X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002518 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002519 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002520 bool isCalleeStructRet,
2521 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002522 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002523 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002524 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002525 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002526 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002527 CalleeCC != CallingConv::C)
2528 return false;
2529
Evan Cheng7096ae42010-01-29 06:45:59 +00002530 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002531 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002532 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002533 CallingConv::ID CallerCC = CallerF->getCallingConv();
2534 bool CCMatch = CallerCC == CalleeCC;
2535
Dan Gohman1797ed52010-02-08 20:27:50 +00002536 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002537 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002538 return true;
2539 return false;
2540 }
2541
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002542 // Look for obvious safe cases to perform tail call optimization that do not
2543 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002544
Evan Cheng2c12cb42010-03-26 16:26:03 +00002545 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2546 // emit a special epilogue.
2547 if (RegInfo->needsStackRealignment(MF))
2548 return false;
2549
Evan Chenga375d472010-03-15 18:54:48 +00002550 // Also avoid sibcall optimization if either caller or callee uses struct
2551 // return semantics.
2552 if (isCalleeStructRet || isCallerStructRet)
2553 return false;
2554
Chad Rosier2416da32011-06-24 21:15:36 +00002555 // An stdcall caller is expected to clean up its arguments; the callee
2556 // isn't going to do that.
2557 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2558 return false;
2559
Chad Rosier871f6642011-05-18 19:59:50 +00002560 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002561 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002562 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002563
2564 // Optimizing for varargs on Win64 is unlikely to be safe without
2565 // additional testing.
2566 if (Subtarget->isTargetWin64())
2567 return false;
2568
Chad Rosier871f6642011-05-18 19:59:50 +00002569 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002570 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2571 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002572
Chad Rosier871f6642011-05-18 19:59:50 +00002573 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2574 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2575 if (!ArgLocs[i].isRegLoc())
2576 return false;
2577 }
2578
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002579 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2580 // Therefore if it's not used by the call it is not safe to optimize this into
2581 // a sibcall.
2582 bool Unused = false;
2583 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2584 if (!Ins[i].Used) {
2585 Unused = true;
2586 break;
2587 }
2588 }
2589 if (Unused) {
2590 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002591 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2592 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002593 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002594 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002595 CCValAssign &VA = RVLocs[i];
2596 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2597 return false;
2598 }
2599 }
2600
Evan Cheng13617962010-04-30 01:12:32 +00002601 // If the calling conventions do not match, then we'd better make sure the
2602 // results are returned in the same way as what the caller expects.
2603 if (!CCMatch) {
2604 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002605 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2606 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002607 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2608
2609 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002610 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2611 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002612 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2613
2614 if (RVLocs1.size() != RVLocs2.size())
2615 return false;
2616 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2617 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2618 return false;
2619 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2620 return false;
2621 if (RVLocs1[i].isRegLoc()) {
2622 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2623 return false;
2624 } else {
2625 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2626 return false;
2627 }
2628 }
2629 }
2630
Evan Chenga6bff982010-01-30 01:22:00 +00002631 // If the callee takes no arguments then go on to check the results of the
2632 // call.
2633 if (!Outs.empty()) {
2634 // Check if stack adjustment is needed. For now, do not do this if any
2635 // argument is passed on the stack.
2636 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002637 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2638 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002639
2640 // Allocate shadow area for Win64
2641 if (Subtarget->isTargetWin64()) {
2642 CCInfo.AllocateStack(32, 8);
2643 }
2644
Duncan Sands45907662010-10-31 13:21:44 +00002645 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002646 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002647 MachineFunction &MF = DAG.getMachineFunction();
2648 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2649 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002650
2651 // Check if the arguments are already laid out in the right way as
2652 // the caller's fixed stack objects.
2653 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002654 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2655 const X86InstrInfo *TII =
2656 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002657 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2658 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002659 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002660 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002661 if (VA.getLocInfo() == CCValAssign::Indirect)
2662 return false;
2663 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002664 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2665 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002666 return false;
2667 }
2668 }
2669 }
Evan Cheng9c044672010-05-29 01:35:22 +00002670
2671 // If the tailcall address may be in a register, then make sure it's
2672 // possible to register allocate for it. In 32-bit, the call address can
2673 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002674 // callee-saved registers are restored. These happen to be the same
2675 // registers used to pass 'inreg' arguments so watch out for those.
2676 if (!Subtarget->is64Bit() &&
2677 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002678 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002679 unsigned NumInRegs = 0;
2680 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2681 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002682 if (!VA.isRegLoc())
2683 continue;
2684 unsigned Reg = VA.getLocReg();
2685 switch (Reg) {
2686 default: break;
2687 case X86::EAX: case X86::EDX: case X86::ECX:
2688 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002689 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002690 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002691 }
2692 }
2693 }
Evan Chenga6bff982010-01-30 01:22:00 +00002694 }
Evan Chengb1712452010-01-27 06:25:16 +00002695
Evan Cheng86809cc2010-02-03 03:28:02 +00002696 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002697}
2698
Dan Gohman3df24e62008-09-03 23:12:08 +00002699FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002700X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2701 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002702}
2703
2704
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002705//===----------------------------------------------------------------------===//
2706// Other Lowering Hooks
2707//===----------------------------------------------------------------------===//
2708
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002709static bool MayFoldLoad(SDValue Op) {
2710 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2711}
2712
2713static bool MayFoldIntoStore(SDValue Op) {
2714 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2715}
2716
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002717static bool isTargetShuffle(unsigned Opcode) {
2718 switch(Opcode) {
2719 default: return false;
2720 case X86ISD::PSHUFD:
2721 case X86ISD::PSHUFHW:
2722 case X86ISD::PSHUFLW:
2723 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002724 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002725 case X86ISD::SHUFPS:
2726 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002727 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002728 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002729 case X86ISD::MOVLPS:
2730 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002731 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002732 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002733 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002734 case X86ISD::MOVSS:
2735 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002736 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002737 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002738 case X86ISD::VUNPCKLPSY:
2739 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002740 case X86ISD::PUNPCKLWD:
2741 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002742 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002743 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002744 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002745 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002746 case X86ISD::VUNPCKHPSY:
2747 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002748 case X86ISD::PUNPCKHWD:
2749 case X86ISD::PUNPCKHBW:
2750 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002751 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002752 case X86ISD::VPERMILPS:
2753 case X86ISD::VPERMILPSY:
2754 case X86ISD::VPERMILPD:
2755 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002756 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002757 return true;
2758 }
2759 return false;
2760}
2761
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002762static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002763 SDValue V1, SelectionDAG &DAG) {
2764 switch(Opc) {
2765 default: llvm_unreachable("Unknown x86 shuffle node");
2766 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002767 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002768 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002769 return DAG.getNode(Opc, dl, VT, V1);
2770 }
2771
2772 return SDValue();
2773}
2774
2775static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002776 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002777 switch(Opc) {
2778 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002779 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002780 case X86ISD::PSHUFHW:
2781 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002782 case X86ISD::VPERMILPS:
2783 case X86ISD::VPERMILPSY:
2784 case X86ISD::VPERMILPD:
2785 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002786 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2787 }
2788
2789 return SDValue();
2790}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002791
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002792static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2793 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2794 switch(Opc) {
2795 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002796 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002797 case X86ISD::SHUFPD:
2798 case X86ISD::SHUFPS:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002799 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002800 return DAG.getNode(Opc, dl, VT, V1, V2,
2801 DAG.getConstant(TargetMask, MVT::i8));
2802 }
2803 return SDValue();
2804}
2805
2806static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2807 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2808 switch(Opc) {
2809 default: llvm_unreachable("Unknown x86 shuffle node");
2810 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002811 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002812 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002813 case X86ISD::MOVLPS:
2814 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002815 case X86ISD::MOVSS:
2816 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002817 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002818 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002819 case X86ISD::VUNPCKLPSY:
2820 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002821 case X86ISD::PUNPCKLWD:
2822 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002823 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002824 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002825 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002826 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002827 case X86ISD::VUNPCKHPSY:
2828 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002829 case X86ISD::PUNPCKHWD:
2830 case X86ISD::PUNPCKHBW:
2831 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002832 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002833 return DAG.getNode(Opc, dl, VT, V1, V2);
2834 }
2835 return SDValue();
2836}
2837
Dan Gohmand858e902010-04-17 15:26:15 +00002838SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002839 MachineFunction &MF = DAG.getMachineFunction();
2840 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2841 int ReturnAddrIndex = FuncInfo->getRAIndex();
2842
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002843 if (ReturnAddrIndex == 0) {
2844 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002845 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002846 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002847 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002848 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002849 }
2850
Evan Cheng25ab6902006-09-08 06:48:29 +00002851 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002852}
2853
2854
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002855bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2856 bool hasSymbolicDisplacement) {
2857 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002858 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002859 return false;
2860
2861 // If we don't have a symbolic displacement - we don't have any extra
2862 // restrictions.
2863 if (!hasSymbolicDisplacement)
2864 return true;
2865
2866 // FIXME: Some tweaks might be needed for medium code model.
2867 if (M != CodeModel::Small && M != CodeModel::Kernel)
2868 return false;
2869
2870 // For small code model we assume that latest object is 16MB before end of 31
2871 // bits boundary. We may also accept pretty large negative constants knowing
2872 // that all objects are in the positive half of address space.
2873 if (M == CodeModel::Small && Offset < 16*1024*1024)
2874 return true;
2875
2876 // For kernel code model we know that all object resist in the negative half
2877 // of 32bits address space. We may not accept negative offsets, since they may
2878 // be just off and we may accept pretty large positive ones.
2879 if (M == CodeModel::Kernel && Offset > 0)
2880 return true;
2881
2882 return false;
2883}
2884
Evan Chengef41ff62011-06-23 17:54:54 +00002885/// isCalleePop - Determines whether the callee is required to pop its
2886/// own arguments. Callee pop is necessary to support tail calls.
2887bool X86::isCalleePop(CallingConv::ID CallingConv,
2888 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2889 if (IsVarArg)
2890 return false;
2891
2892 switch (CallingConv) {
2893 default:
2894 return false;
2895 case CallingConv::X86_StdCall:
2896 return !is64Bit;
2897 case CallingConv::X86_FastCall:
2898 return !is64Bit;
2899 case CallingConv::X86_ThisCall:
2900 return !is64Bit;
2901 case CallingConv::Fast:
2902 return TailCallOpt;
2903 case CallingConv::GHC:
2904 return TailCallOpt;
2905 }
2906}
2907
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002908/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2909/// specific condition code, returning the condition code and the LHS/RHS of the
2910/// comparison to make.
2911static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2912 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002913 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002914 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2915 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2916 // X > -1 -> X == 0, jump !sign.
2917 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002918 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002919 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2920 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002921 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002922 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002923 // X < 1 -> X <= 0
2924 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002925 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002926 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002927 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002928
Evan Chengd9558e02006-01-06 00:43:03 +00002929 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002930 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002931 case ISD::SETEQ: return X86::COND_E;
2932 case ISD::SETGT: return X86::COND_G;
2933 case ISD::SETGE: return X86::COND_GE;
2934 case ISD::SETLT: return X86::COND_L;
2935 case ISD::SETLE: return X86::COND_LE;
2936 case ISD::SETNE: return X86::COND_NE;
2937 case ISD::SETULT: return X86::COND_B;
2938 case ISD::SETUGT: return X86::COND_A;
2939 case ISD::SETULE: return X86::COND_BE;
2940 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002941 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002942 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002943
Chris Lattner4c78e022008-12-23 23:42:27 +00002944 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002945
Chris Lattner4c78e022008-12-23 23:42:27 +00002946 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002947 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2948 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002949 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2950 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002951 }
2952
Chris Lattner4c78e022008-12-23 23:42:27 +00002953 switch (SetCCOpcode) {
2954 default: break;
2955 case ISD::SETOLT:
2956 case ISD::SETOLE:
2957 case ISD::SETUGT:
2958 case ISD::SETUGE:
2959 std::swap(LHS, RHS);
2960 break;
2961 }
2962
2963 // On a floating point condition, the flags are set as follows:
2964 // ZF PF CF op
2965 // 0 | 0 | 0 | X > Y
2966 // 0 | 0 | 1 | X < Y
2967 // 1 | 0 | 0 | X == Y
2968 // 1 | 1 | 1 | unordered
2969 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002970 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002971 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002972 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002973 case ISD::SETOLT: // flipped
2974 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002975 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002976 case ISD::SETOLE: // flipped
2977 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002978 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002979 case ISD::SETUGT: // flipped
2980 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002981 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002982 case ISD::SETUGE: // flipped
2983 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002984 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002985 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002986 case ISD::SETNE: return X86::COND_NE;
2987 case ISD::SETUO: return X86::COND_P;
2988 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002989 case ISD::SETOEQ:
2990 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002991 }
Evan Chengd9558e02006-01-06 00:43:03 +00002992}
2993
Evan Cheng4a460802006-01-11 00:33:36 +00002994/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2995/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002996/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002997static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002998 switch (X86CC) {
2999 default:
3000 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003001 case X86::COND_B:
3002 case X86::COND_BE:
3003 case X86::COND_E:
3004 case X86::COND_P:
3005 case X86::COND_A:
3006 case X86::COND_AE:
3007 case X86::COND_NE:
3008 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003009 return true;
3010 }
3011}
3012
Evan Chengeb2f9692009-10-27 19:56:55 +00003013/// isFPImmLegal - Returns true if the target can instruction select the
3014/// specified FP immediate natively. If false, the legalizer will
3015/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003016bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003017 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3018 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3019 return true;
3020 }
3021 return false;
3022}
3023
Nate Begeman9008ca62009-04-27 18:41:29 +00003024/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3025/// the specified range (L, H].
3026static bool isUndefOrInRange(int Val, int Low, int Hi) {
3027 return (Val < 0) || (Val >= Low && Val < Hi);
3028}
3029
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00003030/// isUndefOrInRange - Return true if every element in Mask, begining
3031/// from position Pos and ending in Pos+Size, falls within the specified
3032/// range (L, L+Pos]. or is undef.
3033static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3034 int Pos, int Size, int Low, int Hi) {
3035 for (int i = Pos, e = Pos+Size; i != e; ++i)
3036 if (!isUndefOrInRange(Mask[i], Low, Hi))
3037 return false;
3038 return true;
3039}
3040
Nate Begeman9008ca62009-04-27 18:41:29 +00003041/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3042/// specified value.
3043static bool isUndefOrEqual(int Val, int CmpVal) {
3044 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003045 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003046 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003047}
3048
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003049/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3050/// from position Pos and ending in Pos+Size, falls within the specified
3051/// sequential range (L, L+Pos]. or is undef.
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003052static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3053 int Pos, int Size, int Low) {
3054 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3055 if (!isUndefOrEqual(Mask[i], Low))
3056 return false;
3057 return true;
3058}
3059
Nate Begeman9008ca62009-04-27 18:41:29 +00003060/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3061/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3062/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003063static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003064 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003065 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003066 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003067 return (Mask[0] < 2 && Mask[1] < 2);
3068 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003069}
3070
Nate Begeman9008ca62009-04-27 18:41:29 +00003071bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003072 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003073 N->getMask(M);
3074 return ::isPSHUFDMask(M, N->getValueType(0));
3075}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003076
Nate Begeman9008ca62009-04-27 18:41:29 +00003077/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3078/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003079static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003080 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003081 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003082
Nate Begeman9008ca62009-04-27 18:41:29 +00003083 // Lower quadword copied in order or undef.
3084 for (int i = 0; i != 4; ++i)
3085 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003086 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003087
Evan Cheng506d3df2006-03-29 23:07:14 +00003088 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003089 for (int i = 4; i != 8; ++i)
3090 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003091 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003092
Evan Cheng506d3df2006-03-29 23:07:14 +00003093 return true;
3094}
3095
Nate Begeman9008ca62009-04-27 18:41:29 +00003096bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003097 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003098 N->getMask(M);
3099 return ::isPSHUFHWMask(M, N->getValueType(0));
3100}
Evan Cheng506d3df2006-03-29 23:07:14 +00003101
Nate Begeman9008ca62009-04-27 18:41:29 +00003102/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3103/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003104static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003105 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003106 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003107
Rafael Espindola15684b22009-04-24 12:40:33 +00003108 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003109 for (int i = 4; i != 8; ++i)
3110 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003111 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003112
Rafael Espindola15684b22009-04-24 12:40:33 +00003113 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003114 for (int i = 0; i != 4; ++i)
3115 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003116 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003117
Rafael Espindola15684b22009-04-24 12:40:33 +00003118 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003119}
3120
Nate Begeman9008ca62009-04-27 18:41:29 +00003121bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003122 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003123 N->getMask(M);
3124 return ::isPSHUFLWMask(M, N->getValueType(0));
3125}
3126
Nate Begemana09008b2009-10-19 02:17:23 +00003127/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3128/// is suitable for input to PALIGNR.
3129static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3130 bool hasSSSE3) {
3131 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003132 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3133 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003134
Nate Begemana09008b2009-10-19 02:17:23 +00003135 // Do not handle v2i64 / v2f64 shuffles with palignr.
3136 if (e < 4 || !hasSSSE3)
3137 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003138
Nate Begemana09008b2009-10-19 02:17:23 +00003139 for (i = 0; i != e; ++i)
3140 if (Mask[i] >= 0)
3141 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003142
Nate Begemana09008b2009-10-19 02:17:23 +00003143 // All undef, not a palignr.
3144 if (i == e)
3145 return false;
3146
Eli Friedman63f8dde2011-07-25 21:36:45 +00003147 // Make sure we're shifting in the right direction.
3148 if (Mask[i] <= i)
3149 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003150
3151 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003152
Nate Begemana09008b2009-10-19 02:17:23 +00003153 // Check the rest of the elements to see if they are consecutive.
3154 for (++i; i != e; ++i) {
3155 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003156 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003157 return false;
3158 }
3159 return true;
3160}
3161
Evan Cheng14aed5e2006-03-24 01:18:28 +00003162/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3163/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003164static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003165 int NumElems = VT.getVectorNumElements();
3166 if (NumElems != 2 && NumElems != 4)
3167 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003168
Nate Begeman9008ca62009-04-27 18:41:29 +00003169 int Half = NumElems / 2;
3170 for (int i = 0; i < Half; ++i)
3171 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003172 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003173 for (int i = Half; i < NumElems; ++i)
3174 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003175 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003176
Evan Cheng14aed5e2006-03-24 01:18:28 +00003177 return true;
3178}
3179
Nate Begeman9008ca62009-04-27 18:41:29 +00003180bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3181 SmallVector<int, 8> M;
3182 N->getMask(M);
3183 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003184}
3185
Evan Cheng213d2cf2007-05-17 18:45:50 +00003186/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003187/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3188/// half elements to come from vector 1 (which would equal the dest.) and
3189/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003190static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003191 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003192
3193 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003194 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003195
Nate Begeman9008ca62009-04-27 18:41:29 +00003196 int Half = NumElems / 2;
3197 for (int i = 0; i < Half; ++i)
3198 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003199 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003200 for (int i = Half; i < NumElems; ++i)
3201 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003202 return false;
3203 return true;
3204}
3205
Nate Begeman9008ca62009-04-27 18:41:29 +00003206static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3207 SmallVector<int, 8> M;
3208 N->getMask(M);
3209 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003210}
3211
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003212/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3213/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003214bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003215 EVT VT = N->getValueType(0);
3216 unsigned NumElems = VT.getVectorNumElements();
3217
3218 if (VT.getSizeInBits() != 128)
3219 return false;
3220
3221 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003222 return false;
3223
Evan Cheng2064a2b2006-03-28 06:50:32 +00003224 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003225 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3226 isUndefOrEqual(N->getMaskElt(1), 7) &&
3227 isUndefOrEqual(N->getMaskElt(2), 2) &&
3228 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003229}
3230
Nate Begeman0b10b912009-11-07 23:17:15 +00003231/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3232/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3233/// <2, 3, 2, 3>
3234bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003235 EVT VT = N->getValueType(0);
3236 unsigned NumElems = VT.getVectorNumElements();
3237
3238 if (VT.getSizeInBits() != 128)
3239 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003240
Nate Begeman0b10b912009-11-07 23:17:15 +00003241 if (NumElems != 4)
3242 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003243
Nate Begeman0b10b912009-11-07 23:17:15 +00003244 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003245 isUndefOrEqual(N->getMaskElt(1), 3) &&
3246 isUndefOrEqual(N->getMaskElt(2), 2) &&
3247 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003248}
3249
Evan Cheng5ced1d82006-04-06 23:23:56 +00003250/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3251/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003252bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3253 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003254
Evan Cheng5ced1d82006-04-06 23:23:56 +00003255 if (NumElems != 2 && NumElems != 4)
3256 return false;
3257
Evan Chengc5cdff22006-04-07 21:53:05 +00003258 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003259 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003260 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003261
Evan Chengc5cdff22006-04-07 21:53:05 +00003262 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003263 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003264 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003265
3266 return true;
3267}
3268
Nate Begeman0b10b912009-11-07 23:17:15 +00003269/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3270/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3271bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003272 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003273
David Greenea20244d2011-03-02 17:23:43 +00003274 if ((NumElems != 2 && NumElems != 4)
3275 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003276 return false;
3277
Evan Chengc5cdff22006-04-07 21:53:05 +00003278 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003279 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003280 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003281
Nate Begeman9008ca62009-04-27 18:41:29 +00003282 for (unsigned i = 0; i < NumElems/2; ++i)
3283 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003284 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003285
3286 return true;
3287}
3288
Evan Cheng0038e592006-03-28 00:39:58 +00003289/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3290/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003291static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003292 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003293 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003294
3295 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3296 "Unsupported vector type for unpckh");
3297
3298 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003299 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003300
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003301 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3302 // independently on 128-bit lanes.
3303 unsigned NumLanes = VT.getSizeInBits()/128;
3304 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003305
3306 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003307 unsigned End = NumLaneElts;
3308 for (unsigned s = 0; s < NumLanes; ++s) {
3309 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003310 i != End;
3311 i += 2, ++j) {
3312 int BitI = Mask[i];
3313 int BitI1 = Mask[i+1];
3314 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003315 return false;
David Greenea20244d2011-03-02 17:23:43 +00003316 if (V2IsSplat) {
3317 if (!isUndefOrEqual(BitI1, NumElts))
3318 return false;
3319 } else {
3320 if (!isUndefOrEqual(BitI1, j + NumElts))
3321 return false;
3322 }
Evan Cheng39623da2006-04-20 08:58:49 +00003323 }
David Greenea20244d2011-03-02 17:23:43 +00003324 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003325 Start += NumLaneElts;
3326 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003327 }
David Greenea20244d2011-03-02 17:23:43 +00003328
Evan Cheng0038e592006-03-28 00:39:58 +00003329 return true;
3330}
3331
Nate Begeman9008ca62009-04-27 18:41:29 +00003332bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3333 SmallVector<int, 8> M;
3334 N->getMask(M);
3335 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003336}
3337
Evan Cheng4fcb9222006-03-28 02:43:26 +00003338/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3339/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003340static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003341 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003342 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003343
3344 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3345 "Unsupported vector type for unpckh");
3346
3347 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003348 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003349
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003350 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3351 // independently on 128-bit lanes.
3352 unsigned NumLanes = VT.getSizeInBits()/128;
3353 unsigned NumLaneElts = NumElts/NumLanes;
3354
3355 unsigned Start = 0;
3356 unsigned End = NumLaneElts;
3357 for (unsigned l = 0; l != NumLanes; ++l) {
3358 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3359 i != End; i += 2, ++j) {
3360 int BitI = Mask[i];
3361 int BitI1 = Mask[i+1];
3362 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003363 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003364 if (V2IsSplat) {
3365 if (isUndefOrEqual(BitI1, NumElts))
3366 return false;
3367 } else {
3368 if (!isUndefOrEqual(BitI1, j+NumElts))
3369 return false;
3370 }
Evan Cheng39623da2006-04-20 08:58:49 +00003371 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003372 // Process the next 128 bits.
3373 Start += NumLaneElts;
3374 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003375 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003376 return true;
3377}
3378
Nate Begeman9008ca62009-04-27 18:41:29 +00003379bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3380 SmallVector<int, 8> M;
3381 N->getMask(M);
3382 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003383}
3384
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003385/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3386/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3387/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003388static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003389 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003390 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003391 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003392
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003393 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3394 // independently on 128-bit lanes.
3395 unsigned NumLanes = VT.getSizeInBits() / 128;
3396 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003397
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003398 for (unsigned s = 0; s < NumLanes; ++s) {
3399 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3400 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003401 i += 2, ++j) {
3402 int BitI = Mask[i];
3403 int BitI1 = Mask[i+1];
3404
3405 if (!isUndefOrEqual(BitI, j))
3406 return false;
3407 if (!isUndefOrEqual(BitI1, j))
3408 return false;
3409 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003410 }
David Greenea20244d2011-03-02 17:23:43 +00003411
Rafael Espindola15684b22009-04-24 12:40:33 +00003412 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003413}
3414
Nate Begeman9008ca62009-04-27 18:41:29 +00003415bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3416 SmallVector<int, 8> M;
3417 N->getMask(M);
3418 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3419}
3420
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003421/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3422/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3423/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003424static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003425 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003426 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3427 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003428
Nate Begeman9008ca62009-04-27 18:41:29 +00003429 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3430 int BitI = Mask[i];
3431 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003432 if (!isUndefOrEqual(BitI, j))
3433 return false;
3434 if (!isUndefOrEqual(BitI1, j))
3435 return false;
3436 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003437 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003438}
3439
Nate Begeman9008ca62009-04-27 18:41:29 +00003440bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3441 SmallVector<int, 8> M;
3442 N->getMask(M);
3443 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3444}
3445
Evan Cheng017dcc62006-04-21 01:05:10 +00003446/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3447/// specifies a shuffle of elements that is suitable for input to MOVSS,
3448/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003449static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003450 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003451 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003452
3453 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003454
Nate Begeman9008ca62009-04-27 18:41:29 +00003455 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003456 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003457
Nate Begeman9008ca62009-04-27 18:41:29 +00003458 for (int i = 1; i < NumElts; ++i)
3459 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003460 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003461
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003462 return true;
3463}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003464
Nate Begeman9008ca62009-04-27 18:41:29 +00003465bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3466 SmallVector<int, 8> M;
3467 N->getMask(M);
3468 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003469}
3470
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003471/// isVPERM2F128Mask - Match 256-bit shuffles where the elements are considered
3472/// as permutations between 128-bit chunks or halves. As an example: this
3473/// shuffle bellow:
3474/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3475/// The first half comes from the second half of V1 and the second half from the
3476/// the second half of V2.
3477static bool isVPERM2F128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3478 const X86Subtarget *Subtarget) {
3479 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3480 return false;
3481
3482 // The shuffle result is divided into half A and half B. In total the two
3483 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3484 // B must come from C, D, E or F.
3485 int HalfSize = VT.getVectorNumElements()/2;
3486 bool MatchA = false, MatchB = false;
3487
3488 // Check if A comes from one of C, D, E, F.
3489 for (int Half = 0; Half < 4; ++Half) {
3490 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3491 MatchA = true;
3492 break;
3493 }
3494 }
3495
3496 // Check if B comes from one of C, D, E, F.
3497 for (int Half = 0; Half < 4; ++Half) {
3498 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3499 MatchB = true;
3500 break;
3501 }
3502 }
3503
3504 return MatchA && MatchB;
3505}
3506
3507/// getShuffleVPERM2F128Immediate - Return the appropriate immediate to shuffle
3508/// the specified VECTOR_MASK mask with VPERM2F128 instructions.
3509static unsigned getShuffleVPERM2F128Immediate(SDNode *N) {
3510 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3511 EVT VT = SVOp->getValueType(0);
3512
3513 int HalfSize = VT.getVectorNumElements()/2;
3514
3515 int FstHalf = 0, SndHalf = 0;
3516 for (int i = 0; i < HalfSize; ++i) {
3517 if (SVOp->getMaskElt(i) > 0) {
3518 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3519 break;
3520 }
3521 }
3522 for (int i = HalfSize; i < HalfSize*2; ++i) {
3523 if (SVOp->getMaskElt(i) > 0) {
3524 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3525 break;
3526 }
3527 }
3528
3529 return (FstHalf | (SndHalf << 4));
3530}
3531
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003532/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3533/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3534/// Note that VPERMIL mask matching is different depending whether theunderlying
3535/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3536/// to the same elements of the low, but to the higher half of the source.
3537/// In VPERMILPD the two lanes could be shuffled independently of each other
3538/// with the same restriction that lanes can't be crossed.
3539static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3540 const X86Subtarget *Subtarget) {
3541 int NumElts = VT.getVectorNumElements();
3542 int NumLanes = VT.getSizeInBits()/128;
3543
3544 if (!Subtarget->hasAVX())
3545 return false;
3546
3547 // Match any permutation of 128-bit vector with 64-bit types
3548 if (NumLanes == 1 && NumElts != 2)
3549 return false;
3550
3551 // Only match 256-bit with 32 types
3552 if (VT.getSizeInBits() == 256 && NumElts != 4)
3553 return false;
3554
3555 // The mask on the high lane is independent of the low. Both can match
3556 // any element in inside its own lane, but can't cross.
3557 int LaneSize = NumElts/NumLanes;
3558 for (int l = 0; l < NumLanes; ++l)
3559 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3560 int LaneStart = l*LaneSize;
3561 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3562 return false;
3563 }
3564
3565 return true;
3566}
3567
3568/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3569/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3570/// Note that VPERMIL mask matching is different depending whether theunderlying
3571/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3572/// to the same elements of the low, but to the higher half of the source.
3573/// In VPERMILPD the two lanes could be shuffled independently of each other
3574/// with the same restriction that lanes can't be crossed.
3575static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3576 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003577 unsigned NumElts = VT.getVectorNumElements();
3578 unsigned NumLanes = VT.getSizeInBits()/128;
3579
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003580 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003581 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003582
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003583 // Match any permutation of 128-bit vector with 32-bit types
3584 if (NumLanes == 1 && NumElts != 4)
3585 return false;
3586
3587 // Only match 256-bit with 32 types
3588 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003589 return false;
3590
3591 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003592 // they can differ if any of the corresponding index in a lane is undef
3593 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003594 int LaneSize = NumElts/NumLanes;
3595 for (int i = 0; i < LaneSize; ++i) {
3596 int HighElt = i+LaneSize;
Bruno Cardoso Lopes155a92a2011-08-10 01:54:17 +00003597 bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3598 bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3599
3600 if (!HighValid || !LowValid)
3601 return false;
3602 if (Mask[i] < 0 || Mask[HighElt] < 0)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003603 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003604 if (Mask[HighElt]-Mask[i] != LaneSize)
3605 return false;
3606 }
3607
3608 return true;
3609}
3610
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003611/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3612/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3613static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003614 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3615 EVT VT = SVOp->getValueType(0);
3616
3617 int NumElts = VT.getVectorNumElements();
3618 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003619 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003620
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003621 // Although the mask is equal for both lanes do it twice to get the cases
3622 // where a mask will match because the same mask element is undef on the
3623 // first half but valid on the second. This would get pathological cases
3624 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003625 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003626 for (int l = 0; l < NumLanes; ++l) {
3627 for (int i = 0; i < LaneSize; ++i) {
3628 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3629 if (MaskElt < 0)
3630 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003631 if (MaskElt >= LaneSize)
3632 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003633 Mask |= MaskElt << (i*2);
3634 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003635 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003636
3637 return Mask;
3638}
3639
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003640/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3641/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3642static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3643 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3644 EVT VT = SVOp->getValueType(0);
3645
3646 int NumElts = VT.getVectorNumElements();
3647 int NumLanes = VT.getSizeInBits()/128;
3648
3649 unsigned Mask = 0;
3650 int LaneSize = NumElts/NumLanes;
3651 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003652 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3653 int MaskElt = SVOp->getMaskElt(i);
3654 if (MaskElt < 0)
3655 continue;
3656 Mask |= (MaskElt-l*LaneSize) << i;
3657 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003658
3659 return Mask;
3660}
3661
Evan Cheng017dcc62006-04-21 01:05:10 +00003662/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3663/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003664/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003665static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003666 bool V2IsSplat = false, bool V2IsUndef = false) {
3667 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003668 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003669 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003670
Nate Begeman9008ca62009-04-27 18:41:29 +00003671 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003672 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003673
Nate Begeman9008ca62009-04-27 18:41:29 +00003674 for (int i = 1; i < NumOps; ++i)
3675 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3676 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3677 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003678 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003679
Evan Cheng39623da2006-04-20 08:58:49 +00003680 return true;
3681}
3682
Nate Begeman9008ca62009-04-27 18:41:29 +00003683static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003684 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003685 SmallVector<int, 8> M;
3686 N->getMask(M);
3687 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003688}
3689
Evan Chengd9539472006-04-14 21:59:03 +00003690/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3691/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003692/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3693bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3694 const X86Subtarget *Subtarget) {
3695 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003696 return false;
3697
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003698 // The second vector must be undef
3699 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3700 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003701
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003702 EVT VT = N->getValueType(0);
3703 unsigned NumElems = VT.getVectorNumElements();
3704
3705 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3706 (VT.getSizeInBits() == 256 && NumElems != 8))
3707 return false;
3708
3709 // "i+1" is the value the indexed mask element must have
3710 for (unsigned i = 0; i < NumElems; i += 2)
3711 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3712 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003713 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003714
3715 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003716}
3717
3718/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3719/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003720/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3721bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3722 const X86Subtarget *Subtarget) {
3723 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003724 return false;
3725
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003726 // The second vector must be undef
3727 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3728 return false;
3729
3730 EVT VT = N->getValueType(0);
3731 unsigned NumElems = VT.getVectorNumElements();
3732
3733 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3734 (VT.getSizeInBits() == 256 && NumElems != 8))
3735 return false;
3736
3737 // "i" is the value the indexed mask element must have
3738 for (unsigned i = 0; i < NumElems; i += 2)
3739 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3740 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003741 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003742
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003743 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003744}
3745
Evan Cheng0b457f02008-09-25 20:50:48 +00003746/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3747/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003748bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3749 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003750
Nate Begeman9008ca62009-04-27 18:41:29 +00003751 for (int i = 0; i < e; ++i)
3752 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003753 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003754 for (int i = 0; i < e; ++i)
3755 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003756 return false;
3757 return true;
3758}
3759
David Greenec38a03e2011-02-03 15:50:00 +00003760/// isVEXTRACTF128Index - Return true if the specified
3761/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3762/// suitable for input to VEXTRACTF128.
3763bool X86::isVEXTRACTF128Index(SDNode *N) {
3764 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3765 return false;
3766
3767 // The index should be aligned on a 128-bit boundary.
3768 uint64_t Index =
3769 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3770
3771 unsigned VL = N->getValueType(0).getVectorNumElements();
3772 unsigned VBits = N->getValueType(0).getSizeInBits();
3773 unsigned ElSize = VBits / VL;
3774 bool Result = (Index * ElSize) % 128 == 0;
3775
3776 return Result;
3777}
3778
David Greeneccacdc12011-02-04 16:08:29 +00003779/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3780/// operand specifies a subvector insert that is suitable for input to
3781/// VINSERTF128.
3782bool X86::isVINSERTF128Index(SDNode *N) {
3783 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3784 return false;
3785
3786 // The index should be aligned on a 128-bit boundary.
3787 uint64_t Index =
3788 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3789
3790 unsigned VL = N->getValueType(0).getVectorNumElements();
3791 unsigned VBits = N->getValueType(0).getSizeInBits();
3792 unsigned ElSize = VBits / VL;
3793 bool Result = (Index * ElSize) % 128 == 0;
3794
3795 return Result;
3796}
3797
Evan Cheng63d33002006-03-22 08:01:21 +00003798/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003799/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003800unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003801 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3802 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3803
Evan Chengb9df0ca2006-03-22 02:53:00 +00003804 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3805 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003806 for (int i = 0; i < NumOperands; ++i) {
3807 int Val = SVOp->getMaskElt(NumOperands-i-1);
3808 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003809 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003810 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003811 if (i != NumOperands - 1)
3812 Mask <<= Shift;
3813 }
Evan Cheng63d33002006-03-22 08:01:21 +00003814 return Mask;
3815}
3816
Evan Cheng506d3df2006-03-29 23:07:14 +00003817/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003818/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003819unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003820 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003821 unsigned Mask = 0;
3822 // 8 nodes, but we only care about the last 4.
3823 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003824 int Val = SVOp->getMaskElt(i);
3825 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003826 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003827 if (i != 4)
3828 Mask <<= 2;
3829 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003830 return Mask;
3831}
3832
3833/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003834/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003835unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003836 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003837 unsigned Mask = 0;
3838 // 8 nodes, but we only care about the first 4.
3839 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003840 int Val = SVOp->getMaskElt(i);
3841 if (Val >= 0)
3842 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003843 if (i != 0)
3844 Mask <<= 2;
3845 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003846 return Mask;
3847}
3848
Nate Begemana09008b2009-10-19 02:17:23 +00003849/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3850/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3851unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3852 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3853 EVT VVT = N->getValueType(0);
3854 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3855 int Val = 0;
3856
3857 unsigned i, e;
3858 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3859 Val = SVOp->getMaskElt(i);
3860 if (Val >= 0)
3861 break;
3862 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003863 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003864 return (Val - i) * EltSize;
3865}
3866
David Greenec38a03e2011-02-03 15:50:00 +00003867/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3868/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3869/// instructions.
3870unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3871 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3872 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3873
3874 uint64_t Index =
3875 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3876
3877 EVT VecVT = N->getOperand(0).getValueType();
3878 EVT ElVT = VecVT.getVectorElementType();
3879
3880 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003881 return Index / NumElemsPerChunk;
3882}
3883
David Greeneccacdc12011-02-04 16:08:29 +00003884/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3885/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3886/// instructions.
3887unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3888 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3889 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3890
3891 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003892 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003893
3894 EVT VecVT = N->getValueType(0);
3895 EVT ElVT = VecVT.getVectorElementType();
3896
3897 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003898 return Index / NumElemsPerChunk;
3899}
3900
Evan Cheng37b73872009-07-30 08:33:02 +00003901/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3902/// constant +0.0.
3903bool X86::isZeroNode(SDValue Elt) {
3904 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003905 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003906 (isa<ConstantFPSDNode>(Elt) &&
3907 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3908}
3909
Nate Begeman9008ca62009-04-27 18:41:29 +00003910/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3911/// their permute mask.
3912static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3913 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003914 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003915 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003916 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003917
Nate Begeman5a5ca152009-04-29 05:20:52 +00003918 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003919 int idx = SVOp->getMaskElt(i);
3920 if (idx < 0)
3921 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003922 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003923 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003924 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003925 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003926 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003927 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3928 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003929}
3930
Evan Cheng779ccea2007-12-07 21:30:01 +00003931/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3932/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003933static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003934 unsigned NumElems = VT.getVectorNumElements();
3935 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003936 int idx = Mask[i];
3937 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003938 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003939 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003940 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003941 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003942 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003943 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003944}
3945
Evan Cheng533a0aa2006-04-19 20:35:22 +00003946/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3947/// match movhlps. The lower half elements should come from upper half of
3948/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003949/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003950static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00003951 EVT VT = Op->getValueType(0);
3952 if (VT.getSizeInBits() != 128)
3953 return false;
3954 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003955 return false;
3956 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003957 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003958 return false;
3959 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003960 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003961 return false;
3962 return true;
3963}
3964
Evan Cheng5ced1d82006-04-06 23:23:56 +00003965/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003966/// is promoted to a vector. It also returns the LoadSDNode by reference if
3967/// required.
3968static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003969 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3970 return false;
3971 N = N->getOperand(0).getNode();
3972 if (!ISD::isNON_EXTLoad(N))
3973 return false;
3974 if (LD)
3975 *LD = cast<LoadSDNode>(N);
3976 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003977}
3978
Evan Cheng533a0aa2006-04-19 20:35:22 +00003979/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3980/// match movlp{s|d}. The lower half elements should come from lower half of
3981/// V1 (and in order), and the upper half elements should come from the upper
3982/// half of V2 (and in order). And since V1 will become the source of the
3983/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003984static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3985 ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00003986 EVT VT = Op->getValueType(0);
3987 if (VT.getSizeInBits() != 128)
3988 return false;
3989
Evan Cheng466685d2006-10-09 20:57:25 +00003990 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003991 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003992 // Is V2 is a vector load, don't do this transformation. We will try to use
3993 // load folding shufps op.
3994 if (ISD::isNON_EXTLoad(V2))
3995 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003996
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00003997 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003998
Evan Cheng533a0aa2006-04-19 20:35:22 +00003999 if (NumElems != 2 && NumElems != 4)
4000 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004001 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004002 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004003 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004004 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004005 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004006 return false;
4007 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004008}
4009
Evan Cheng39623da2006-04-20 08:58:49 +00004010/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4011/// all the same.
4012static bool isSplatVector(SDNode *N) {
4013 if (N->getOpcode() != ISD::BUILD_VECTOR)
4014 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004015
Dan Gohman475871a2008-07-27 21:46:04 +00004016 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004017 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4018 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004019 return false;
4020 return true;
4021}
4022
Evan Cheng213d2cf2007-05-17 18:45:50 +00004023/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004024/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004025/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004026static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004027 SDValue V1 = N->getOperand(0);
4028 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004029 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4030 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004031 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004032 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004033 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004034 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4035 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004036 if (Opc != ISD::BUILD_VECTOR ||
4037 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004038 return false;
4039 } else if (Idx >= 0) {
4040 unsigned Opc = V1.getOpcode();
4041 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4042 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004043 if (Opc != ISD::BUILD_VECTOR ||
4044 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004045 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004046 }
4047 }
4048 return true;
4049}
4050
4051/// getZeroVector - Returns a vector of specified type with all zero elements.
4052///
Owen Andersone50ed302009-08-10 22:56:29 +00004053static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004054 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004055 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004056
Dale Johannesen0488fb62010-09-30 23:57:10 +00004057 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004058 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004059 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00004060 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004061 if (HasSSE2) { // SSE2
4062 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4063 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4064 } else { // SSE1
4065 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4066 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4067 }
4068 } else if (VT.getSizeInBits() == 256) { // AVX
4069 // 256-bit logic and arithmetic instructions in AVX are
4070 // all floating-point, no support for integer ops. Default
4071 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00004072 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004073 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4074 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00004075 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004076 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004077}
4078
Chris Lattner8a594482007-11-25 00:24:49 +00004079/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004080/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
4081/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
4082/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00004083static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004084 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004085 assert((VT.is128BitVector() || VT.is256BitVector())
4086 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004087
Owen Anderson825b72b2009-08-11 20:47:22 +00004088 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004089 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
4090 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004091
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004092 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004093 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4094 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4095 Vec = Insert128BitVector(InsV, Vec,
4096 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4097 }
4098
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004099 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004100}
4101
Evan Cheng39623da2006-04-20 08:58:49 +00004102/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4103/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004104static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004105 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004106 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004107
Evan Cheng39623da2006-04-20 08:58:49 +00004108 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004109 SmallVector<int, 8> MaskVec;
4110 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004111
Nate Begeman5a5ca152009-04-29 05:20:52 +00004112 for (unsigned i = 0; i != NumElems; ++i) {
4113 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004114 MaskVec[i] = NumElems;
4115 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004116 }
Evan Cheng39623da2006-04-20 08:58:49 +00004117 }
Evan Cheng39623da2006-04-20 08:58:49 +00004118 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004119 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4120 SVOp->getOperand(1), &MaskVec[0]);
4121 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004122}
4123
Evan Cheng017dcc62006-04-21 01:05:10 +00004124/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4125/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004126static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004127 SDValue V2) {
4128 unsigned NumElems = VT.getVectorNumElements();
4129 SmallVector<int, 8> Mask;
4130 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004131 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004132 Mask.push_back(i);
4133 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004134}
4135
Nate Begeman9008ca62009-04-27 18:41:29 +00004136/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004137static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004138 SDValue V2) {
4139 unsigned NumElems = VT.getVectorNumElements();
4140 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004141 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004142 Mask.push_back(i);
4143 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004144 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004145 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004146}
4147
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004148/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004149static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004150 SDValue V2) {
4151 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004152 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004153 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004154 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004155 Mask.push_back(i + Half);
4156 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004157 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004158 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004159}
4160
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004161// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004162// a generic shuffle instruction because the target has no such instructions.
4163// Generate shuffles which repeat i16 and i8 several times until they can be
4164// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004165static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004166 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004167 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004168 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004169
Nate Begeman9008ca62009-04-27 18:41:29 +00004170 while (NumElems > 4) {
4171 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004172 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004173 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004174 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004175 EltNo -= NumElems/2;
4176 }
4177 NumElems >>= 1;
4178 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004179 return V;
4180}
Eric Christopherfd179292009-08-27 18:07:15 +00004181
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004182/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4183static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4184 EVT VT = V.getValueType();
4185 DebugLoc dl = V.getDebugLoc();
4186 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4187 && "Vector size not supported");
4188
4189 bool Is128 = VT.getSizeInBits() == 128;
4190 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
4191 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
4192
4193 if (Is128) {
4194 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4195 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4196 } else {
4197 // The second half of indicies refer to the higher part, which is a
4198 // duplication of the lower one. This makes this shuffle a perfect match
4199 // for the VPERM instruction.
4200 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4201 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4202 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4203 }
4204
4205 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4206}
4207
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004208/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004209static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4210 EVT SrcVT = SV->getValueType(0);
4211 SDValue V1 = SV->getOperand(0);
4212 DebugLoc dl = SV->getDebugLoc();
4213
4214 int EltNo = SV->getSplatIndex();
4215 int NumElems = SrcVT.getVectorNumElements();
4216 unsigned Size = SrcVT.getSizeInBits();
4217
4218 // Extract the 128-bit part containing the splat element and update
4219 // the splat element index when it refers to the higher register.
4220 if (Size == 256) {
4221 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4222 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4223 if (Idx > 0)
4224 EltNo -= NumElems/2;
4225 }
4226
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004227 // All i16 and i8 vector types can't be used directly by a generic shuffle
4228 // instruction because the target has no such instruction. Generate shuffles
4229 // which repeat i16 and i8 several times until they fit in i32, and then can
4230 // be manipulated by target suported shuffles. After the insertion of the
4231 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004232 EVT EltVT = SrcVT.getVectorElementType();
4233 if (NumElems > 4 && (EltVT == MVT::i8 || EltVT == MVT::i16))
4234 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004235
4236 // Recreate the 256-bit vector and place the same 128-bit vector
4237 // into the low and high part. This is necessary because we want
4238 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4239 // inside each separate v4f32 lane.
4240 if (Size == 256) {
4241 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4242 DAG.getConstant(0, MVT::i32), DAG, dl);
4243 V1 = Insert128BitVector(InsV, V1,
4244 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4245 }
4246
4247 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004248}
4249
Evan Chengba05f722006-04-21 23:03:30 +00004250/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004251/// vector of zero or undef vector. This produces a shuffle where the low
4252/// element of V2 is swizzled into the zero/undef vector, landing at element
4253/// 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 +00004254static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004255 bool isZero, bool HasSSE2,
4256 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004257 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004258 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004259 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4260 unsigned NumElems = VT.getVectorNumElements();
4261 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004262 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004263 // If this is the insertion idx, put the low elt of V2 here.
4264 MaskVec.push_back(i == Idx ? NumElems : i);
4265 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004266}
4267
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004268/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4269/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004270static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4271 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004272 if (Depth == 6)
4273 return SDValue(); // Limit search depth.
4274
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004275 SDValue V = SDValue(N, 0);
4276 EVT VT = V.getValueType();
4277 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004278
4279 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4280 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4281 Index = SV->getMaskElt(Index);
4282
4283 if (Index < 0)
4284 return DAG.getUNDEF(VT.getVectorElementType());
4285
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004286 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004287 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004288 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004289 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004290
4291 // Recurse into target specific vector shuffles to find scalars.
4292 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004293 int NumElems = VT.getVectorNumElements();
4294 SmallVector<unsigned, 16> ShuffleMask;
4295 SDValue ImmN;
4296
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004297 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004298 case X86ISD::SHUFPS:
4299 case X86ISD::SHUFPD:
4300 ImmN = N->getOperand(N->getNumOperands()-1);
4301 DecodeSHUFPSMask(NumElems,
4302 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4303 ShuffleMask);
4304 break;
4305 case X86ISD::PUNPCKHBW:
4306 case X86ISD::PUNPCKHWD:
4307 case X86ISD::PUNPCKHDQ:
4308 case X86ISD::PUNPCKHQDQ:
4309 DecodePUNPCKHMask(NumElems, ShuffleMask);
4310 break;
4311 case X86ISD::UNPCKHPS:
4312 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004313 case X86ISD::VUNPCKHPSY:
4314 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004315 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4316 break;
4317 case X86ISD::PUNPCKLBW:
4318 case X86ISD::PUNPCKLWD:
4319 case X86ISD::PUNPCKLDQ:
4320 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004321 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004322 break;
4323 case X86ISD::UNPCKLPS:
4324 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004325 case X86ISD::VUNPCKLPSY:
4326 case X86ISD::VUNPCKLPDY:
4327 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004328 break;
4329 case X86ISD::MOVHLPS:
4330 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4331 break;
4332 case X86ISD::MOVLHPS:
4333 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4334 break;
4335 case X86ISD::PSHUFD:
4336 ImmN = N->getOperand(N->getNumOperands()-1);
4337 DecodePSHUFMask(NumElems,
4338 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4339 ShuffleMask);
4340 break;
4341 case X86ISD::PSHUFHW:
4342 ImmN = N->getOperand(N->getNumOperands()-1);
4343 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4344 ShuffleMask);
4345 break;
4346 case X86ISD::PSHUFLW:
4347 ImmN = N->getOperand(N->getNumOperands()-1);
4348 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4349 ShuffleMask);
4350 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004351 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004352 case X86ISD::MOVSD: {
4353 // The index 0 always comes from the first element of the second source,
4354 // this is why MOVSS and MOVSD are used in the first place. The other
4355 // elements come from the other positions of the first source vector.
4356 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004357 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4358 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004359 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004360 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004361 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004362 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004363 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004364 break;
4365 case X86ISD::VPERMILPSY:
4366 ImmN = N->getOperand(N->getNumOperands()-1);
4367 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4368 ShuffleMask);
4369 break;
4370 case X86ISD::VPERMILPD:
4371 ImmN = N->getOperand(N->getNumOperands()-1);
4372 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4373 ShuffleMask);
4374 break;
4375 case X86ISD::VPERMILPDY:
4376 ImmN = N->getOperand(N->getNumOperands()-1);
4377 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4378 ShuffleMask);
4379 break;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004380 case X86ISD::VPERM2F128:
4381 ImmN = N->getOperand(N->getNumOperands()-1);
4382 DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4383 ShuffleMask);
4384 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004385 default:
4386 assert("not implemented for target shuffle node");
4387 return SDValue();
4388 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004389
4390 Index = ShuffleMask[Index];
4391 if (Index < 0)
4392 return DAG.getUNDEF(VT.getVectorElementType());
4393
4394 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4395 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4396 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004397 }
4398
4399 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004400 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004401 V = V.getOperand(0);
4402 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004403 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004404
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004405 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004406 return SDValue();
4407 }
4408
4409 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4410 return (Index == 0) ? V.getOperand(0)
4411 : DAG.getUNDEF(VT.getVectorElementType());
4412
4413 if (V.getOpcode() == ISD::BUILD_VECTOR)
4414 return V.getOperand(Index);
4415
4416 return SDValue();
4417}
4418
4419/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4420/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004421/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004422static
4423unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4424 bool ZerosFromLeft, SelectionDAG &DAG) {
4425 int i = 0;
4426
4427 while (i < NumElems) {
4428 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004429 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004430 if (!(Elt.getNode() &&
4431 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4432 break;
4433 ++i;
4434 }
4435
4436 return i;
4437}
4438
4439/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4440/// MaskE correspond consecutively to elements from one of the vector operands,
4441/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4442static
4443bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4444 int OpIdx, int NumElems, unsigned &OpNum) {
4445 bool SeenV1 = false;
4446 bool SeenV2 = false;
4447
4448 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4449 int Idx = SVOp->getMaskElt(i);
4450 // Ignore undef indicies
4451 if (Idx < 0)
4452 continue;
4453
4454 if (Idx < NumElems)
4455 SeenV1 = true;
4456 else
4457 SeenV2 = true;
4458
4459 // Only accept consecutive elements from the same vector
4460 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4461 return false;
4462 }
4463
4464 OpNum = SeenV1 ? 0 : 1;
4465 return true;
4466}
4467
4468/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4469/// logical left shift of a vector.
4470static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4471 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4472 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4473 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4474 false /* check zeros from right */, DAG);
4475 unsigned OpSrc;
4476
4477 if (!NumZeros)
4478 return false;
4479
4480 // Considering the elements in the mask that are not consecutive zeros,
4481 // check if they consecutively come from only one of the source vectors.
4482 //
4483 // V1 = {X, A, B, C} 0
4484 // \ \ \ /
4485 // vector_shuffle V1, V2 <1, 2, 3, X>
4486 //
4487 if (!isShuffleMaskConsecutive(SVOp,
4488 0, // Mask Start Index
4489 NumElems-NumZeros-1, // Mask End Index
4490 NumZeros, // Where to start looking in the src vector
4491 NumElems, // Number of elements in vector
4492 OpSrc)) // Which source operand ?
4493 return false;
4494
4495 isLeft = false;
4496 ShAmt = NumZeros;
4497 ShVal = SVOp->getOperand(OpSrc);
4498 return true;
4499}
4500
4501/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4502/// logical left shift of a vector.
4503static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4504 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4505 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4506 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4507 true /* check zeros from left */, DAG);
4508 unsigned OpSrc;
4509
4510 if (!NumZeros)
4511 return false;
4512
4513 // Considering the elements in the mask that are not consecutive zeros,
4514 // check if they consecutively come from only one of the source vectors.
4515 //
4516 // 0 { A, B, X, X } = V2
4517 // / \ / /
4518 // vector_shuffle V1, V2 <X, X, 4, 5>
4519 //
4520 if (!isShuffleMaskConsecutive(SVOp,
4521 NumZeros, // Mask Start Index
4522 NumElems-1, // Mask End Index
4523 0, // Where to start looking in the src vector
4524 NumElems, // Number of elements in vector
4525 OpSrc)) // Which source operand ?
4526 return false;
4527
4528 isLeft = true;
4529 ShAmt = NumZeros;
4530 ShVal = SVOp->getOperand(OpSrc);
4531 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004532}
4533
4534/// isVectorShift - Returns true if the shuffle can be implemented as a
4535/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004536static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004537 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004538 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4539 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4540 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004541
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004542 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004543}
4544
Evan Chengc78d3b42006-04-24 18:01:45 +00004545/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4546///
Dan Gohman475871a2008-07-27 21:46:04 +00004547static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004548 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004549 SelectionDAG &DAG,
4550 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004551 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004552 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004553
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004554 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004555 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004556 bool First = true;
4557 for (unsigned i = 0; i < 16; ++i) {
4558 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4559 if (ThisIsNonZero && First) {
4560 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004561 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004562 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004563 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004564 First = false;
4565 }
4566
4567 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004568 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004569 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4570 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004571 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004572 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004573 }
4574 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004575 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4576 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4577 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004578 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004579 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004580 } else
4581 ThisElt = LastElt;
4582
Gabor Greifba36cb52008-08-28 21:40:38 +00004583 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004584 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004585 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004586 }
4587 }
4588
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004589 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004590}
4591
Bill Wendlinga348c562007-03-22 18:42:45 +00004592/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004593///
Dan Gohman475871a2008-07-27 21:46:04 +00004594static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004595 unsigned NumNonZero, unsigned NumZero,
4596 SelectionDAG &DAG,
4597 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004598 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004599 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004600
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004601 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004602 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004603 bool First = true;
4604 for (unsigned i = 0; i < 8; ++i) {
4605 bool isNonZero = (NonZeros & (1 << i)) != 0;
4606 if (isNonZero) {
4607 if (First) {
4608 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004609 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004610 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004611 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004612 First = false;
4613 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004614 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004615 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004616 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004617 }
4618 }
4619
4620 return V;
4621}
4622
Evan Chengf26ffe92008-05-29 08:22:04 +00004623/// getVShift - Return a vector logical shift node.
4624///
Owen Andersone50ed302009-08-10 22:56:29 +00004625static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004626 unsigned NumBits, SelectionDAG &DAG,
4627 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004628 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004629 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004630 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4631 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004632 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004633 DAG.getConstant(NumBits,
4634 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004635}
4636
Dan Gohman475871a2008-07-27 21:46:04 +00004637SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004638X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004639 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004640
Evan Chengc3630942009-12-09 21:00:30 +00004641 // Check if the scalar load can be widened into a vector load. And if
4642 // the address is "base + cst" see if the cst can be "absorbed" into
4643 // the shuffle mask.
4644 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4645 SDValue Ptr = LD->getBasePtr();
4646 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4647 return SDValue();
4648 EVT PVT = LD->getValueType(0);
4649 if (PVT != MVT::i32 && PVT != MVT::f32)
4650 return SDValue();
4651
4652 int FI = -1;
4653 int64_t Offset = 0;
4654 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4655 FI = FINode->getIndex();
4656 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004657 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004658 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4659 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4660 Offset = Ptr.getConstantOperandVal(1);
4661 Ptr = Ptr.getOperand(0);
4662 } else {
4663 return SDValue();
4664 }
4665
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004666 // FIXME: 256-bit vector instructions don't require a strict alignment,
4667 // improve this code to support it better.
4668 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004669 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004670 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004671 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004672 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004673 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004674 // Can't change the alignment. FIXME: It's possible to compute
4675 // the exact stack offset and reference FI + adjust offset instead.
4676 // If someone *really* cares about this. That's the way to implement it.
4677 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004678 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004679 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004680 }
4681 }
4682
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004683 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004684 // Ptr + (Offset & ~15).
4685 if (Offset < 0)
4686 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004687 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004688 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004689 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004690 if (StartOffset)
4691 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4692 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4693
4694 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004695 int NumElems = VT.getVectorNumElements();
4696
4697 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4698 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4699 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004700 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004701 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004702
4703 // Canonicalize it to a v4i32 or v8i32 shuffle.
4704 SmallVector<int, 8> Mask;
4705 for (int i = 0; i < NumElems; ++i)
4706 Mask.push_back(EltNo);
4707
4708 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4709 return DAG.getNode(ISD::BITCAST, dl, NVT,
4710 DAG.getVectorShuffle(CanonVT, dl, V1,
4711 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004712 }
4713
4714 return SDValue();
4715}
4716
Michael J. Spencerec38de22010-10-10 22:04:20 +00004717/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4718/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004719/// load which has the same value as a build_vector whose operands are 'elts'.
4720///
4721/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004722///
Nate Begeman1449f292010-03-24 22:19:06 +00004723/// FIXME: we'd also like to handle the case where the last elements are zero
4724/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4725/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004726static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004727 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004728 EVT EltVT = VT.getVectorElementType();
4729 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004730
Nate Begemanfdea31a2010-03-24 20:49:50 +00004731 LoadSDNode *LDBase = NULL;
4732 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004733
Nate Begeman1449f292010-03-24 22:19:06 +00004734 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004735 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004736 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004737 for (unsigned i = 0; i < NumElems; ++i) {
4738 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004739
Nate Begemanfdea31a2010-03-24 20:49:50 +00004740 if (!Elt.getNode() ||
4741 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4742 return SDValue();
4743 if (!LDBase) {
4744 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4745 return SDValue();
4746 LDBase = cast<LoadSDNode>(Elt.getNode());
4747 LastLoadedElt = i;
4748 continue;
4749 }
4750 if (Elt.getOpcode() == ISD::UNDEF)
4751 continue;
4752
4753 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4754 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4755 return SDValue();
4756 LastLoadedElt = i;
4757 }
Nate Begeman1449f292010-03-24 22:19:06 +00004758
4759 // If we have found an entire vector of loads and undefs, then return a large
4760 // load of the entire vector width starting at the base pointer. If we found
4761 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004762 if (LastLoadedElt == NumElems - 1) {
4763 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004764 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004765 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004766 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004767 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004768 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004769 LDBase->isVolatile(), LDBase->isNonTemporal(),
4770 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004771 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4772 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004773 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4774 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004775 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4776 Ops, 2, MVT::i32,
4777 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004778 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004779 }
4780 return SDValue();
4781}
4782
Evan Chengc3630942009-12-09 21:00:30 +00004783SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004784X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004785 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004786
David Greenef125a292011-02-08 19:04:41 +00004787 EVT VT = Op.getValueType();
4788 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004789 unsigned NumElems = Op.getNumOperands();
4790
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004791 // Vectors containing all zeros can be matched by pxor and xorps later
4792 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
4793 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
4794 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004795 if (Op.getValueType() == MVT::v4i32 ||
4796 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004797 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004798
Dale Johannesenace16102009-02-03 19:33:06 +00004799 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004800 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004801
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004802 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
4803 // vectors or broken into v4i32 operations on 256-bit vectors.
4804 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
4805 if (Op.getValueType() == MVT::v4i32)
4806 return Op;
4807
4808 return getOnesVector(Op.getValueType(), DAG, dl);
4809 }
4810
Owen Andersone50ed302009-08-10 22:56:29 +00004811 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004812
Evan Cheng0db9fe62006-04-25 20:13:52 +00004813 unsigned NumZero = 0;
4814 unsigned NumNonZero = 0;
4815 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004816 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004817 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004818 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004819 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004820 if (Elt.getOpcode() == ISD::UNDEF)
4821 continue;
4822 Values.insert(Elt);
4823 if (Elt.getOpcode() != ISD::Constant &&
4824 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004825 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004826 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004827 NumZero++;
4828 else {
4829 NonZeros |= (1 << i);
4830 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004831 }
4832 }
4833
Chris Lattner97a2a562010-08-26 05:24:29 +00004834 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4835 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004836 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004837
Chris Lattner67f453a2008-03-09 05:42:06 +00004838 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004839 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004840 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004841 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004842
Chris Lattner62098042008-03-09 01:05:04 +00004843 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4844 // the value are obviously zero, truncate the value to i32 and do the
4845 // insertion that way. Only do this if the value is non-constant or if the
4846 // value is a constant being inserted into element 0. It is cheaper to do
4847 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004848 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004849 (!IsAllConstants || Idx == 0)) {
4850 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004851 // Handle SSE only.
4852 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4853 EVT VecVT = MVT::v4i32;
4854 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004855
Chris Lattner62098042008-03-09 01:05:04 +00004856 // Truncate the value (which may itself be a constant) to i32, and
4857 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004858 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004859 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004860 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4861 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004862
Chris Lattner62098042008-03-09 01:05:04 +00004863 // Now we have our 32-bit value zero extended in the low element of
4864 // a vector. If Idx != 0, swizzle it into place.
4865 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004866 SmallVector<int, 4> Mask;
4867 Mask.push_back(Idx);
4868 for (unsigned i = 1; i != VecElts; ++i)
4869 Mask.push_back(i);
4870 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004871 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004872 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004873 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004874 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004875 }
4876 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004877
Chris Lattner19f79692008-03-08 22:59:52 +00004878 // If we have a constant or non-constant insertion into the low element of
4879 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4880 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004881 // depending on what the source datatype is.
4882 if (Idx == 0) {
4883 if (NumZero == 0) {
4884 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004885 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4886 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004887 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4888 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4889 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4890 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004891 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4892 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004893 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4894 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004895 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4896 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4897 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004898 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004899 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004900 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004901
4902 // Is it a vector logical left shift?
4903 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004904 X86::isZeroNode(Op.getOperand(0)) &&
4905 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004906 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004907 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004908 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004909 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004910 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004911 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004912
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004913 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004914 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004915
Chris Lattner19f79692008-03-08 22:59:52 +00004916 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4917 // is a non-constant being inserted into an element other than the low one,
4918 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4919 // movd/movss) to move this into the low element, then shuffle it into
4920 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004921 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004922 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004923
Evan Cheng0db9fe62006-04-25 20:13:52 +00004924 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004925 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4926 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004927 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004928 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004929 MaskVec.push_back(i == Idx ? 0 : 1);
4930 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004931 }
4932 }
4933
Chris Lattner67f453a2008-03-09 05:42:06 +00004934 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004935 if (Values.size() == 1) {
4936 if (EVTBits == 32) {
4937 // Instead of a shuffle like this:
4938 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4939 // Check if it's possible to issue this instead.
4940 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4941 unsigned Idx = CountTrailingZeros_32(NonZeros);
4942 SDValue Item = Op.getOperand(Idx);
4943 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4944 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4945 }
Dan Gohman475871a2008-07-27 21:46:04 +00004946 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004947 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004948
Dan Gohmana3941172007-07-24 22:55:08 +00004949 // A vector full of immediates; various special cases are already
4950 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004951 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004952 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004953
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004954 // For AVX-length vectors, build the individual 128-bit pieces and use
4955 // shuffles to put them in place.
4956 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4957 SmallVector<SDValue, 32> V;
4958 for (unsigned i = 0; i < NumElems; ++i)
4959 V.push_back(Op.getOperand(i));
4960
4961 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4962
4963 // Build both the lower and upper subvector.
4964 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4965 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4966 NumElems/2);
4967
4968 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00004969 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4970 DAG.getConstant(0, MVT::i32), DAG, dl);
4971 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004972 DAG, dl);
4973 }
4974
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004975 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004976 if (EVTBits == 64) {
4977 if (NumNonZero == 1) {
4978 // One half is zero or undef.
4979 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004980 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004981 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004982 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4983 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004984 }
Dan Gohman475871a2008-07-27 21:46:04 +00004985 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004986 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004987
4988 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004989 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004990 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004991 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004992 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004993 }
4994
Bill Wendling826f36f2007-03-28 00:57:11 +00004995 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004996 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004997 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004998 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004999 }
5000
5001 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005002 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00005003 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005004 if (NumElems == 4 && NumZero > 0) {
5005 for (unsigned i = 0; i < 4; ++i) {
5006 bool isZero = !(NonZeros & (1 << i));
5007 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00005008 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005009 else
Dale Johannesenace16102009-02-03 19:33:06 +00005010 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005011 }
5012
5013 for (unsigned i = 0; i < 2; ++i) {
5014 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5015 default: break;
5016 case 0:
5017 V[i] = V[i*2]; // Must be a zero vector.
5018 break;
5019 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005020 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005021 break;
5022 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005023 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005024 break;
5025 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005026 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005027 break;
5028 }
5029 }
5030
Nate Begeman9008ca62009-04-27 18:41:29 +00005031 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005032 bool Reverse = (NonZeros & 0x3) == 2;
5033 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005034 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005035 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5036 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005037 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5038 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005039 }
5040
Nate Begemanfdea31a2010-03-24 20:49:50 +00005041 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5042 // Check for a build vector of consecutive loads.
5043 for (unsigned i = 0; i < NumElems; ++i)
5044 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005045
Nate Begemanfdea31a2010-03-24 20:49:50 +00005046 // Check for elements which are consecutive loads.
5047 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5048 if (LD.getNode())
5049 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005050
5051 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005052 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005053 SDValue Result;
5054 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5055 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5056 else
5057 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005058
Chris Lattner24faf612010-08-28 17:59:08 +00005059 for (unsigned i = 1; i < NumElems; ++i) {
5060 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5061 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005062 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005063 }
5064 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005065 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005066
Chris Lattner6e80e442010-08-28 17:15:43 +00005067 // Otherwise, expand into a number of unpckl*, start by extending each of
5068 // our (non-undef) elements to the full vector width with the element in the
5069 // bottom slot of the vector (which generates no code for SSE).
5070 for (unsigned i = 0; i < NumElems; ++i) {
5071 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5072 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5073 else
5074 V[i] = DAG.getUNDEF(VT);
5075 }
5076
5077 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005078 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5079 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5080 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005081 unsigned EltStride = NumElems >> 1;
5082 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005083 for (unsigned i = 0; i < EltStride; ++i) {
5084 // If V[i+EltStride] is undef and this is the first round of mixing,
5085 // then it is safe to just drop this shuffle: V[i] is already in the
5086 // right place, the one element (since it's the first round) being
5087 // inserted as undef can be dropped. This isn't safe for successive
5088 // rounds because they will permute elements within both vectors.
5089 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5090 EltStride == NumElems/2)
5091 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005092
Chris Lattner6e80e442010-08-28 17:15:43 +00005093 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005094 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005095 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005096 }
5097 return V[0];
5098 }
Dan Gohman475871a2008-07-27 21:46:04 +00005099 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005100}
5101
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005102// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5103// them in a MMX register. This is better than doing a stack convert.
5104static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005105 DebugLoc dl = Op.getDebugLoc();
5106 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005107
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005108 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5109 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5110 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005111 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005112 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5113 InVec = Op.getOperand(1);
5114 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5115 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005116 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005117 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5118 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5119 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005120 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005121 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5122 Mask[0] = 0; Mask[1] = 2;
5123 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5124 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005125 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005126}
5127
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005128// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5129// to create 256-bit vectors from two other 128-bit ones.
5130static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5131 DebugLoc dl = Op.getDebugLoc();
5132 EVT ResVT = Op.getValueType();
5133
5134 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5135
5136 SDValue V1 = Op.getOperand(0);
5137 SDValue V2 = Op.getOperand(1);
5138 unsigned NumElems = ResVT.getVectorNumElements();
5139
5140 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5141 DAG.getConstant(0, MVT::i32), DAG, dl);
5142 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5143 DAG, dl);
5144}
5145
5146SDValue
5147X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005148 EVT ResVT = Op.getValueType();
5149
5150 assert(Op.getNumOperands() == 2);
5151 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5152 "Unsupported CONCAT_VECTORS for value type");
5153
5154 // We support concatenate two MMX registers and place them in a MMX register.
5155 // This is better than doing a stack convert.
5156 if (ResVT.is128BitVector())
5157 return LowerMMXCONCAT_VECTORS(Op, DAG);
5158
5159 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5160 // from two other 128-bit ones.
5161 return LowerAVXCONCAT_VECTORS(Op, DAG);
5162}
5163
Nate Begemanb9a47b82009-02-23 08:49:38 +00005164// v8i16 shuffles - Prefer shuffles in the following order:
5165// 1. [all] pshuflw, pshufhw, optional move
5166// 2. [ssse3] 1 x pshufb
5167// 3. [ssse3] 2 x pshufb + 1 x por
5168// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005169SDValue
5170X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5171 SelectionDAG &DAG) const {
5172 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005173 SDValue V1 = SVOp->getOperand(0);
5174 SDValue V2 = SVOp->getOperand(1);
5175 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005176 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005177
Nate Begemanb9a47b82009-02-23 08:49:38 +00005178 // Determine if more than 1 of the words in each of the low and high quadwords
5179 // of the result come from the same quadword of one of the two inputs. Undef
5180 // mask values count as coming from any quadword, for better codegen.
5181 SmallVector<unsigned, 4> LoQuad(4);
5182 SmallVector<unsigned, 4> HiQuad(4);
5183 BitVector InputQuads(4);
5184 for (unsigned i = 0; i < 8; ++i) {
5185 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005186 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005187 MaskVals.push_back(EltIdx);
5188 if (EltIdx < 0) {
5189 ++Quad[0];
5190 ++Quad[1];
5191 ++Quad[2];
5192 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005193 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005194 }
5195 ++Quad[EltIdx / 4];
5196 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005197 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005198
Nate Begemanb9a47b82009-02-23 08:49:38 +00005199 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005200 unsigned MaxQuad = 1;
5201 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005202 if (LoQuad[i] > MaxQuad) {
5203 BestLoQuad = i;
5204 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005205 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005206 }
5207
Nate Begemanb9a47b82009-02-23 08:49:38 +00005208 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005209 MaxQuad = 1;
5210 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005211 if (HiQuad[i] > MaxQuad) {
5212 BestHiQuad = i;
5213 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005214 }
5215 }
5216
Nate Begemanb9a47b82009-02-23 08:49:38 +00005217 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005218 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005219 // single pshufb instruction is necessary. If There are more than 2 input
5220 // quads, disable the next transformation since it does not help SSSE3.
5221 bool V1Used = InputQuads[0] || InputQuads[1];
5222 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005223 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005224 if (InputQuads.count() == 2 && V1Used && V2Used) {
5225 BestLoQuad = InputQuads.find_first();
5226 BestHiQuad = InputQuads.find_next(BestLoQuad);
5227 }
5228 if (InputQuads.count() > 2) {
5229 BestLoQuad = -1;
5230 BestHiQuad = -1;
5231 }
5232 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005233
Nate Begemanb9a47b82009-02-23 08:49:38 +00005234 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5235 // the shuffle mask. If a quad is scored as -1, that means that it contains
5236 // words from all 4 input quadwords.
5237 SDValue NewV;
5238 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005239 SmallVector<int, 8> MaskV;
5240 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5241 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005242 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005243 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5244 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5245 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005246
Nate Begemanb9a47b82009-02-23 08:49:38 +00005247 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5248 // source words for the shuffle, to aid later transformations.
5249 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005250 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005251 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005252 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005253 if (idx != (int)i)
5254 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005255 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005256 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005257 AllWordsInNewV = false;
5258 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005259 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005260
Nate Begemanb9a47b82009-02-23 08:49:38 +00005261 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5262 if (AllWordsInNewV) {
5263 for (int i = 0; i != 8; ++i) {
5264 int idx = MaskVals[i];
5265 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005266 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005267 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005268 if ((idx != i) && idx < 4)
5269 pshufhw = false;
5270 if ((idx != i) && idx > 3)
5271 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005272 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005273 V1 = NewV;
5274 V2Used = false;
5275 BestLoQuad = 0;
5276 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005277 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005278
Nate Begemanb9a47b82009-02-23 08:49:38 +00005279 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5280 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005281 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005282 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5283 unsigned TargetMask = 0;
5284 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005285 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005286 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5287 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5288 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005289 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005290 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005291 }
Eric Christopherfd179292009-08-27 18:07:15 +00005292
Nate Begemanb9a47b82009-02-23 08:49:38 +00005293 // If we have SSSE3, and all words of the result are from 1 input vector,
5294 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5295 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005296 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005297 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005298
Nate Begemanb9a47b82009-02-23 08:49:38 +00005299 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005300 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005301 // mask, and elements that come from V1 in the V2 mask, so that the two
5302 // results can be OR'd together.
5303 bool TwoInputs = V1Used && V2Used;
5304 for (unsigned i = 0; i != 8; ++i) {
5305 int EltIdx = MaskVals[i] * 2;
5306 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005307 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5308 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005309 continue;
5310 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005311 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5312 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005313 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005314 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005315 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005316 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005317 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005318 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005319 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005320
Nate Begemanb9a47b82009-02-23 08:49:38 +00005321 // Calculate the shuffle mask for the second input, shuffle it, and
5322 // OR it with the first shuffled input.
5323 pshufbMask.clear();
5324 for (unsigned i = 0; i != 8; ++i) {
5325 int EltIdx = MaskVals[i] * 2;
5326 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005327 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5328 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005329 continue;
5330 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005331 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5332 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005333 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005334 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005335 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005336 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005337 MVT::v16i8, &pshufbMask[0], 16));
5338 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005339 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005340 }
5341
5342 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5343 // and update MaskVals with new element order.
5344 BitVector InOrder(8);
5345 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005346 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005347 for (int i = 0; i != 4; ++i) {
5348 int idx = MaskVals[i];
5349 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005350 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005351 InOrder.set(i);
5352 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005353 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005354 InOrder.set(i);
5355 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005356 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005357 }
5358 }
5359 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005360 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005361 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005362 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005363
5364 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5365 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5366 NewV.getOperand(0),
5367 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5368 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005369 }
Eric Christopherfd179292009-08-27 18:07:15 +00005370
Nate Begemanb9a47b82009-02-23 08:49:38 +00005371 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5372 // and update MaskVals with the new element order.
5373 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005374 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005375 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005376 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005377 for (unsigned i = 4; i != 8; ++i) {
5378 int idx = MaskVals[i];
5379 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005380 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005381 InOrder.set(i);
5382 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005383 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005384 InOrder.set(i);
5385 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005386 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005387 }
5388 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005389 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005390 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005391
5392 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5393 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5394 NewV.getOperand(0),
5395 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5396 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005397 }
Eric Christopherfd179292009-08-27 18:07:15 +00005398
Nate Begemanb9a47b82009-02-23 08:49:38 +00005399 // In case BestHi & BestLo were both -1, which means each quadword has a word
5400 // from each of the four input quadwords, calculate the InOrder bitvector now
5401 // before falling through to the insert/extract cleanup.
5402 if (BestLoQuad == -1 && BestHiQuad == -1) {
5403 NewV = V1;
5404 for (int i = 0; i != 8; ++i)
5405 if (MaskVals[i] < 0 || MaskVals[i] == i)
5406 InOrder.set(i);
5407 }
Eric Christopherfd179292009-08-27 18:07:15 +00005408
Nate Begemanb9a47b82009-02-23 08:49:38 +00005409 // The other elements are put in the right place using pextrw and pinsrw.
5410 for (unsigned i = 0; i != 8; ++i) {
5411 if (InOrder[i])
5412 continue;
5413 int EltIdx = MaskVals[i];
5414 if (EltIdx < 0)
5415 continue;
5416 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005417 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005418 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005419 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005420 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005421 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005422 DAG.getIntPtrConstant(i));
5423 }
5424 return NewV;
5425}
5426
5427// v16i8 shuffles - Prefer shuffles in the following order:
5428// 1. [ssse3] 1 x pshufb
5429// 2. [ssse3] 2 x pshufb + 1 x por
5430// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5431static
Nate Begeman9008ca62009-04-27 18:41:29 +00005432SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005433 SelectionDAG &DAG,
5434 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005435 SDValue V1 = SVOp->getOperand(0);
5436 SDValue V2 = SVOp->getOperand(1);
5437 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005438 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005439 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005440
Nate Begemanb9a47b82009-02-23 08:49:38 +00005441 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005442 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005443 // present, fall back to case 3.
5444 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5445 bool V1Only = true;
5446 bool V2Only = true;
5447 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005448 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005449 if (EltIdx < 0)
5450 continue;
5451 if (EltIdx < 16)
5452 V2Only = false;
5453 else
5454 V1Only = false;
5455 }
Eric Christopherfd179292009-08-27 18:07:15 +00005456
Nate Begemanb9a47b82009-02-23 08:49:38 +00005457 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5458 if (TLI.getSubtarget()->hasSSSE3()) {
5459 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005460
Nate Begemanb9a47b82009-02-23 08:49:38 +00005461 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005462 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005463 //
5464 // Otherwise, we have elements from both input vectors, and must zero out
5465 // elements that come from V2 in the first mask, and V1 in the second mask
5466 // so that we can OR them together.
5467 bool TwoInputs = !(V1Only || V2Only);
5468 for (unsigned i = 0; i != 16; ++i) {
5469 int EltIdx = MaskVals[i];
5470 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005471 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005472 continue;
5473 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005474 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005475 }
5476 // If all the elements are from V2, assign it to V1 and return after
5477 // building the first pshufb.
5478 if (V2Only)
5479 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005480 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005481 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005482 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005483 if (!TwoInputs)
5484 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005485
Nate Begemanb9a47b82009-02-23 08:49:38 +00005486 // Calculate the shuffle mask for the second input, shuffle it, and
5487 // OR it with the first shuffled input.
5488 pshufbMask.clear();
5489 for (unsigned i = 0; i != 16; ++i) {
5490 int EltIdx = MaskVals[i];
5491 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005492 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005493 continue;
5494 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005495 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005496 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005497 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005498 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005499 MVT::v16i8, &pshufbMask[0], 16));
5500 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005501 }
Eric Christopherfd179292009-08-27 18:07:15 +00005502
Nate Begemanb9a47b82009-02-23 08:49:38 +00005503 // No SSSE3 - Calculate in place words and then fix all out of place words
5504 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5505 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005506 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5507 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005508 SDValue NewV = V2Only ? V2 : V1;
5509 for (int i = 0; i != 8; ++i) {
5510 int Elt0 = MaskVals[i*2];
5511 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005512
Nate Begemanb9a47b82009-02-23 08:49:38 +00005513 // This word of the result is all undef, skip it.
5514 if (Elt0 < 0 && Elt1 < 0)
5515 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005516
Nate Begemanb9a47b82009-02-23 08:49:38 +00005517 // This word of the result is already in the correct place, skip it.
5518 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5519 continue;
5520 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5521 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005522
Nate Begemanb9a47b82009-02-23 08:49:38 +00005523 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5524 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5525 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005526
5527 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5528 // using a single extract together, load it and store it.
5529 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005530 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005531 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005532 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005533 DAG.getIntPtrConstant(i));
5534 continue;
5535 }
5536
Nate Begemanb9a47b82009-02-23 08:49:38 +00005537 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005538 // source byte is not also odd, shift the extracted word left 8 bits
5539 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005540 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005541 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005542 DAG.getIntPtrConstant(Elt1 / 2));
5543 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005544 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005545 DAG.getConstant(8,
5546 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005547 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005548 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5549 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005550 }
5551 // If Elt0 is defined, extract it from the appropriate source. If the
5552 // source byte is not also even, shift the extracted word right 8 bits. If
5553 // Elt1 was also defined, OR the extracted values together before
5554 // inserting them in the result.
5555 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005556 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005557 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5558 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005559 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005560 DAG.getConstant(8,
5561 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005562 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005563 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5564 DAG.getConstant(0x00FF, MVT::i16));
5565 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005566 : InsElt0;
5567 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005568 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005569 DAG.getIntPtrConstant(i));
5570 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005571 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005572}
5573
Evan Cheng7a831ce2007-12-15 03:00:47 +00005574/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005575/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005576/// done when every pair / quad of shuffle mask elements point to elements in
5577/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005578/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005579static
Nate Begeman9008ca62009-04-27 18:41:29 +00005580SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005581 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005582 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005583 SDValue V1 = SVOp->getOperand(0);
5584 SDValue V2 = SVOp->getOperand(1);
5585 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005586 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005587 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005588 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005589 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005590 case MVT::v4f32: NewVT = MVT::v2f64; break;
5591 case MVT::v4i32: NewVT = MVT::v2i64; break;
5592 case MVT::v8i16: NewVT = MVT::v4i32; break;
5593 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005594 }
5595
Nate Begeman9008ca62009-04-27 18:41:29 +00005596 int Scale = NumElems / NewWidth;
5597 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005598 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005599 int StartIdx = -1;
5600 for (int j = 0; j < Scale; ++j) {
5601 int EltIdx = SVOp->getMaskElt(i+j);
5602 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005603 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005604 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005605 StartIdx = EltIdx - (EltIdx % Scale);
5606 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005607 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005608 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005609 if (StartIdx == -1)
5610 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005611 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005612 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005613 }
5614
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005615 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5616 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005617 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005618}
5619
Evan Chengd880b972008-05-09 21:53:03 +00005620/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005621///
Owen Andersone50ed302009-08-10 22:56:29 +00005622static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005623 SDValue SrcOp, SelectionDAG &DAG,
5624 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005625 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005626 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005627 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005628 LD = dyn_cast<LoadSDNode>(SrcOp);
5629 if (!LD) {
5630 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5631 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005632 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005633 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005634 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005635 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005636 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005637 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005638 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005639 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005640 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5641 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5642 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005643 SrcOp.getOperand(0)
5644 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005645 }
5646 }
5647 }
5648
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005649 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005650 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005651 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005652 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005653}
5654
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005655/// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
5656/// shuffle node referes to only one lane in the sources.
5657static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
5658 EVT VT = SVOp->getValueType(0);
5659 int NumElems = VT.getVectorNumElements();
5660 int HalfSize = NumElems/2;
5661 SmallVector<int, 16> M;
5662 SVOp->getMask(M);
5663 bool MatchA = false, MatchB = false;
5664
5665 for (int l = 0; l < NumElems*2; l += HalfSize) {
5666 if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
5667 MatchA = true;
5668 break;
5669 }
5670 }
5671
5672 for (int l = 0; l < NumElems*2; l += HalfSize) {
5673 if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
5674 MatchB = true;
5675 break;
5676 }
5677 }
5678
5679 return MatchA && MatchB;
5680}
5681
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005682/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5683/// which could not be matched by any known target speficic shuffle
5684static SDValue
5685LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005686 if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
5687 // If each half of a vector shuffle node referes to only one lane in the
5688 // source vectors, extract each used 128-bit lane and shuffle them using
5689 // 128-bit shuffles. Then, concatenate the results. Otherwise leave
5690 // the work to the legalizer.
5691 DebugLoc dl = SVOp->getDebugLoc();
5692 EVT VT = SVOp->getValueType(0);
5693 int NumElems = VT.getVectorNumElements();
5694 int HalfSize = NumElems/2;
5695
5696 // Extract the reference for each half
5697 int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
5698 int FstVecOpNum = 0, SndVecOpNum = 0;
5699 for (int i = 0; i < HalfSize; ++i) {
5700 int Elt = SVOp->getMaskElt(i);
5701 if (SVOp->getMaskElt(i) < 0)
5702 continue;
5703 FstVecOpNum = Elt/NumElems;
5704 FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5705 break;
5706 }
5707 for (int i = HalfSize; i < NumElems; ++i) {
5708 int Elt = SVOp->getMaskElt(i);
5709 if (SVOp->getMaskElt(i) < 0)
5710 continue;
5711 SndVecOpNum = Elt/NumElems;
5712 SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5713 break;
5714 }
5715
5716 // Extract the subvectors
5717 SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
5718 DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
5719 SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
5720 DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
5721
5722 // Generate 128-bit shuffles
5723 SmallVector<int, 16> MaskV1, MaskV2;
5724 for (int i = 0; i < HalfSize; ++i) {
5725 int Elt = SVOp->getMaskElt(i);
5726 MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5727 }
5728 for (int i = HalfSize; i < NumElems; ++i) {
5729 int Elt = SVOp->getMaskElt(i);
5730 MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5731 }
5732
5733 EVT NVT = V1.getValueType();
5734 V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
5735 V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
5736
5737 // Concatenate the result back
5738 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
5739 DAG.getConstant(0, MVT::i32), DAG, dl);
5740 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5741 DAG, dl);
5742 }
5743
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005744 return SDValue();
5745}
5746
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005747/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5748/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005749static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005750LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005751 SDValue V1 = SVOp->getOperand(0);
5752 SDValue V2 = SVOp->getOperand(1);
5753 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005754 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005755
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005756 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5757
Evan Chengace3c172008-07-22 21:13:36 +00005758 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005759 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005760 SmallVector<int, 8> Mask1(4U, -1);
5761 SmallVector<int, 8> PermMask;
5762 SVOp->getMask(PermMask);
5763
Evan Chengace3c172008-07-22 21:13:36 +00005764 unsigned NumHi = 0;
5765 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005766 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005767 int Idx = PermMask[i];
5768 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005769 Locs[i] = std::make_pair(-1, -1);
5770 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005771 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5772 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005773 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005774 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005775 NumLo++;
5776 } else {
5777 Locs[i] = std::make_pair(1, NumHi);
5778 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005779 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005780 NumHi++;
5781 }
5782 }
5783 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005784
Evan Chengace3c172008-07-22 21:13:36 +00005785 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005786 // If no more than two elements come from either vector. This can be
5787 // implemented with two shuffles. First shuffle gather the elements.
5788 // The second shuffle, which takes the first shuffle as both of its
5789 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005790 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005791
Nate Begeman9008ca62009-04-27 18:41:29 +00005792 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005793
Evan Chengace3c172008-07-22 21:13:36 +00005794 for (unsigned i = 0; i != 4; ++i) {
5795 if (Locs[i].first == -1)
5796 continue;
5797 else {
5798 unsigned Idx = (i < 2) ? 0 : 4;
5799 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005800 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005801 }
5802 }
5803
Nate Begeman9008ca62009-04-27 18:41:29 +00005804 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005805 } else if (NumLo == 3 || NumHi == 3) {
5806 // Otherwise, we must have three elements from one vector, call it X, and
5807 // one element from the other, call it Y. First, use a shufps to build an
5808 // intermediate vector with the one element from Y and the element from X
5809 // that will be in the same half in the final destination (the indexes don't
5810 // matter). Then, use a shufps to build the final vector, taking the half
5811 // containing the element from Y from the intermediate, and the other half
5812 // from X.
5813 if (NumHi == 3) {
5814 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005815 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005816 std::swap(V1, V2);
5817 }
5818
5819 // Find the element from V2.
5820 unsigned HiIndex;
5821 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005822 int Val = PermMask[HiIndex];
5823 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005824 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005825 if (Val >= 4)
5826 break;
5827 }
5828
Nate Begeman9008ca62009-04-27 18:41:29 +00005829 Mask1[0] = PermMask[HiIndex];
5830 Mask1[1] = -1;
5831 Mask1[2] = PermMask[HiIndex^1];
5832 Mask1[3] = -1;
5833 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005834
5835 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005836 Mask1[0] = PermMask[0];
5837 Mask1[1] = PermMask[1];
5838 Mask1[2] = HiIndex & 1 ? 6 : 4;
5839 Mask1[3] = HiIndex & 1 ? 4 : 6;
5840 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005841 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005842 Mask1[0] = HiIndex & 1 ? 2 : 0;
5843 Mask1[1] = HiIndex & 1 ? 0 : 2;
5844 Mask1[2] = PermMask[2];
5845 Mask1[3] = PermMask[3];
5846 if (Mask1[2] >= 0)
5847 Mask1[2] += 4;
5848 if (Mask1[3] >= 0)
5849 Mask1[3] += 4;
5850 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005851 }
Evan Chengace3c172008-07-22 21:13:36 +00005852 }
5853
5854 // Break it into (shuffle shuffle_hi, shuffle_lo).
5855 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005856 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005857 SmallVector<int,8> LoMask(4U, -1);
5858 SmallVector<int,8> HiMask(4U, -1);
5859
5860 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005861 unsigned MaskIdx = 0;
5862 unsigned LoIdx = 0;
5863 unsigned HiIdx = 2;
5864 for (unsigned i = 0; i != 4; ++i) {
5865 if (i == 2) {
5866 MaskPtr = &HiMask;
5867 MaskIdx = 1;
5868 LoIdx = 0;
5869 HiIdx = 2;
5870 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005871 int Idx = PermMask[i];
5872 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005873 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005874 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005875 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005876 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005877 LoIdx++;
5878 } else {
5879 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005880 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005881 HiIdx++;
5882 }
5883 }
5884
Nate Begeman9008ca62009-04-27 18:41:29 +00005885 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5886 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5887 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005888 for (unsigned i = 0; i != 4; ++i) {
5889 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005890 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005891 } else {
5892 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005893 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005894 }
5895 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005896 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005897}
5898
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005899static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005900 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005901 V = V.getOperand(0);
5902 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5903 V = V.getOperand(0);
5904 if (MayFoldLoad(V))
5905 return true;
5906 return false;
5907}
5908
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005909// FIXME: the version above should always be used. Since there's
5910// a bug where several vector shuffles can't be folded because the
5911// DAG is not updated during lowering and a node claims to have two
5912// uses while it only has one, use this version, and let isel match
5913// another instruction if the load really happens to have more than
5914// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005915// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005916static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005917 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005918 V = V.getOperand(0);
5919 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5920 V = V.getOperand(0);
5921 if (ISD::isNormalLoad(V.getNode()))
5922 return true;
5923 return false;
5924}
5925
5926/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5927/// a vector extract, and if both can be later optimized into a single load.
5928/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5929/// here because otherwise a target specific shuffle node is going to be
5930/// emitted for this shuffle, and the optimization not done.
5931/// FIXME: This is probably not the best approach, but fix the problem
5932/// until the right path is decided.
5933static
5934bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5935 const TargetLowering &TLI) {
5936 EVT VT = V.getValueType();
5937 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5938
5939 // Be sure that the vector shuffle is present in a pattern like this:
5940 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5941 if (!V.hasOneUse())
5942 return false;
5943
5944 SDNode *N = *V.getNode()->use_begin();
5945 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5946 return false;
5947
5948 SDValue EltNo = N->getOperand(1);
5949 if (!isa<ConstantSDNode>(EltNo))
5950 return false;
5951
5952 // If the bit convert changed the number of elements, it is unsafe
5953 // to examine the mask.
5954 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005955 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005956 EVT SrcVT = V.getOperand(0).getValueType();
5957 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5958 return false;
5959 V = V.getOperand(0);
5960 HasShuffleIntoBitcast = true;
5961 }
5962
5963 // Select the input vector, guarding against out of range extract vector.
5964 unsigned NumElems = VT.getVectorNumElements();
5965 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5966 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5967 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5968
5969 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005970 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005971 V = V.getOperand(0);
5972
5973 if (ISD::isNormalLoad(V.getNode())) {
5974 // Is the original load suitable?
5975 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5976
5977 // FIXME: avoid the multi-use bug that is preventing lots of
5978 // of foldings to be detected, this is still wrong of course, but
5979 // give the temporary desired behavior, and if it happens that
5980 // the load has real more uses, during isel it will not fold, and
5981 // will generate poor code.
5982 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5983 return false;
5984
5985 if (!HasShuffleIntoBitcast)
5986 return true;
5987
5988 // If there's a bitcast before the shuffle, check if the load type and
5989 // alignment is valid.
5990 unsigned Align = LN0->getAlignment();
5991 unsigned NewAlign =
5992 TLI.getTargetData()->getABITypeAlignment(
5993 VT.getTypeForEVT(*DAG.getContext()));
5994
5995 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5996 return false;
5997 }
5998
5999 return true;
6000}
6001
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006002static
Evan Cheng835580f2010-10-07 20:50:20 +00006003SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6004 EVT VT = Op.getValueType();
6005
6006 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006007 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6008 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006009 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6010 V1, DAG));
6011}
6012
6013static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006014SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6015 bool HasSSE2) {
6016 SDValue V1 = Op.getOperand(0);
6017 SDValue V2 = Op.getOperand(1);
6018 EVT VT = Op.getValueType();
6019
6020 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6021
6022 if (HasSSE2 && VT == MVT::v2f64)
6023 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6024
6025 // v4f32 or v4i32
6026 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
6027}
6028
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006029static
6030SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6031 SDValue V1 = Op.getOperand(0);
6032 SDValue V2 = Op.getOperand(1);
6033 EVT VT = Op.getValueType();
6034
6035 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6036 "unsupported shuffle type");
6037
6038 if (V2.getOpcode() == ISD::UNDEF)
6039 V2 = V1;
6040
6041 // v4i32 or v4f32
6042 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6043}
6044
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006045static
6046SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6047 SDValue V1 = Op.getOperand(0);
6048 SDValue V2 = Op.getOperand(1);
6049 EVT VT = Op.getValueType();
6050 unsigned NumElems = VT.getVectorNumElements();
6051
6052 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6053 // operand of these instructions is only memory, so check if there's a
6054 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6055 // same masks.
6056 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006057
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006058 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006059 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006060 CanFoldLoad = true;
6061
6062 // When V1 is a load, it can be folded later into a store in isel, example:
6063 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6064 // turns into:
6065 // (MOVLPSmr addr:$src1, VR128:$src2)
6066 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006067 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006068 CanFoldLoad = true;
6069
Eric Christopher893a8822011-02-20 05:04:42 +00006070 // Both of them can't be memory operations though.
6071 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
6072 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00006073
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006074 if (CanFoldLoad) {
6075 if (HasSSE2 && NumElems == 2)
6076 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6077
6078 if (NumElems == 4)
6079 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6080 }
6081
6082 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6083 // movl and movlp will both match v2i64, but v2i64 is never matched by
6084 // movl earlier because we make it strict to avoid messing with the movlp load
6085 // folding logic (see the code above getMOVLP call). Match it here then,
6086 // this is horrible, but will stay like this until we move all shuffle
6087 // matching to x86 specific nodes. Note that for the 1st condition all
6088 // types are matched with movsd.
6089 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
6090 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6091 else if (HasSSE2)
6092 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6093
6094
6095 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6096
6097 // Invert the operand order and use SHUFPS to match it.
6098 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
6099 X86::getShuffleSHUFImmediate(SVOp), DAG);
6100}
6101
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006102static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006103 switch(VT.getSimpleVT().SimpleTy) {
6104 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
6105 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006106 case MVT::v4f32: return X86ISD::UNPCKLPS;
6107 case MVT::v2f64: return X86ISD::UNPCKLPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006108 case MVT::v8i32: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006109 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006110 case MVT::v4i64: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006111 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006112 case MVT::v16i8: return X86ISD::PUNPCKLBW;
6113 case MVT::v8i16: return X86ISD::PUNPCKLWD;
6114 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006115 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006116 }
6117 return 0;
6118}
6119
6120static inline unsigned getUNPCKHOpcode(EVT VT) {
6121 switch(VT.getSimpleVT().SimpleTy) {
6122 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
6123 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
6124 case MVT::v4f32: return X86ISD::UNPCKHPS;
6125 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006126 case MVT::v8i32: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006127 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006128 case MVT::v4i64: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006129 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006130 case MVT::v16i8: return X86ISD::PUNPCKHBW;
6131 case MVT::v8i16: return X86ISD::PUNPCKHWD;
6132 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006133 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006134 }
6135 return 0;
6136}
6137
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006138static inline unsigned getVPERMILOpcode(EVT VT) {
6139 switch(VT.getSimpleVT().SimpleTy) {
6140 case MVT::v4i32:
6141 case MVT::v4f32: return X86ISD::VPERMILPS;
6142 case MVT::v2i64:
6143 case MVT::v2f64: return X86ISD::VPERMILPD;
6144 case MVT::v8i32:
6145 case MVT::v8f32: return X86ISD::VPERMILPSY;
6146 case MVT::v4i64:
6147 case MVT::v4f64: return X86ISD::VPERMILPDY;
6148 default:
6149 llvm_unreachable("Unknown type for vpermil");
6150 }
6151 return 0;
6152}
6153
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006154/// isVectorBroadcast - Check if the node chain is suitable to be xformed to
6155/// a vbroadcast node. The nodes are suitable whenever we can fold a load coming
6156/// from a 32 or 64 bit scalar. Update Op to the desired load to be folded.
6157static bool isVectorBroadcast(SDValue &Op) {
6158 EVT VT = Op.getValueType();
6159 bool Is256 = VT.getSizeInBits() == 256;
6160
6161 assert((VT.getSizeInBits() == 128 || Is256) &&
6162 "Unsupported type for vbroadcast node");
6163
6164 SDValue V = Op;
6165 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6166 V = V.getOperand(0);
6167
6168 if (Is256 && !(V.hasOneUse() &&
6169 V.getOpcode() == ISD::INSERT_SUBVECTOR &&
6170 V.getOperand(0).getOpcode() == ISD::UNDEF))
6171 return false;
6172
6173 if (Is256)
6174 V = V.getOperand(1);
6175 if (V.hasOneUse() && V.getOpcode() != ISD::SCALAR_TO_VECTOR)
6176 return false;
6177
6178 // Check the source scalar_to_vector type. 256-bit broadcasts are
6179 // supported for 32/64-bit sizes, while 128-bit ones are only supported
6180 // for 32-bit scalars.
6181 unsigned ScalarSize = V.getOperand(0).getValueType().getSizeInBits();
6182 if (ScalarSize != 32 && ScalarSize != 64)
6183 return false;
6184 if (!Is256 && ScalarSize == 64)
6185 return false;
6186
6187 V = V.getOperand(0);
6188 if (!MayFoldLoad(V))
6189 return false;
6190
6191 // Return the load node
6192 Op = V;
6193 return true;
6194}
6195
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006196static
6197SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006198 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006199 const X86Subtarget *Subtarget) {
6200 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6201 EVT VT = Op.getValueType();
6202 DebugLoc dl = Op.getDebugLoc();
6203 SDValue V1 = Op.getOperand(0);
6204 SDValue V2 = Op.getOperand(1);
6205
6206 if (isZeroShuffle(SVOp))
6207 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
6208
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006209 // Handle splat operations
6210 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006211 unsigned NumElem = VT.getVectorNumElements();
6212 // Special case, this is the only place now where it's allowed to return
6213 // a vector_shuffle operation without using a target specific node, because
6214 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6215 // this be moved to DAGCombine instead?
6216 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006217 return Op;
6218
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006219 // Use vbroadcast whenever the splat comes from a foldable load
6220 if (Subtarget->hasAVX() && isVectorBroadcast(V1))
6221 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, V1);
6222
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006223 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00006224 if (VT.is128BitVector() && NumElem <= 4)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006225 return SDValue();
6226
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006227 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006228 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006229 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006230
6231 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6232 // do it!
6233 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6234 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6235 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006236 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006237 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6238 // FIXME: Figure out a cleaner way to do this.
6239 // Try to make use of movq to zero out the top part.
6240 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6241 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6242 if (NewOp.getNode()) {
6243 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6244 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6245 DAG, Subtarget, dl);
6246 }
6247 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6248 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6249 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6250 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6251 DAG, Subtarget, dl);
6252 }
6253 }
6254 return SDValue();
6255}
6256
Dan Gohman475871a2008-07-27 21:46:04 +00006257SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006258X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006259 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006260 SDValue V1 = Op.getOperand(0);
6261 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006262 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006263 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006264 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006265 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006266 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6267 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006268 bool V1IsSplat = false;
6269 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006270 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006271 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006272 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006273 MachineFunction &MF = DAG.getMachineFunction();
6274 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006275
Dale Johannesen0488fb62010-09-30 23:57:10 +00006276 // Shuffle operations on MMX not supported.
6277 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006278 return Op;
6279
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006280 // Vector shuffle lowering takes 3 steps:
6281 //
6282 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6283 // narrowing and commutation of operands should be handled.
6284 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6285 // shuffle nodes.
6286 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6287 // so the shuffle can be broken into other shuffles and the legalizer can
6288 // try the lowering again.
6289 //
6290 // The general ideia is that no vector_shuffle operation should be left to
6291 // be matched during isel, all of them must be converted to a target specific
6292 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006293
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006294 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6295 // narrowing and commutation of operands should be handled. The actual code
6296 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006297 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006298 if (NewOp.getNode())
6299 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006300
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006301 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6302 // unpckh_undef). Only use pshufd if speed is more important than size.
6303 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006304 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006305 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006306 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006307
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006308 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006309 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006310 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006311
Dale Johannesen0488fb62010-09-30 23:57:10 +00006312 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006313 return getMOVHighToLow(Op, dl, DAG);
6314
6315 // Use to match splats
6316 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6317 (VT == MVT::v2f64 || VT == MVT::v2i64))
6318 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6319
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006320 if (X86::isPSHUFDMask(SVOp)) {
6321 // The actual implementation will match the mask in the if above and then
6322 // during isel it can match several different instructions, not only pshufd
6323 // as its name says, sad but true, emulate the behavior for now...
6324 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6325 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6326
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006327 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6328
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006329 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006330 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6331
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006332 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006333 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6334 TargetMask, DAG);
6335
6336 if (VT == MVT::v4f32)
6337 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6338 TargetMask, DAG);
6339 }
Eric Christopherfd179292009-08-27 18:07:15 +00006340
Evan Chengf26ffe92008-05-29 08:22:04 +00006341 // Check if this can be converted into a logical shift.
6342 bool isLeft = false;
6343 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006344 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006345 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006346 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006347 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006348 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006349 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006350 EVT EltVT = VT.getVectorElementType();
6351 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006352 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006353 }
Eric Christopherfd179292009-08-27 18:07:15 +00006354
Nate Begeman9008ca62009-04-27 18:41:29 +00006355 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006356 if (V1IsUndef)
6357 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006358 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006359 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006360 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006361 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006362 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6363
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006364 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006365 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6366 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006367 }
Eric Christopherfd179292009-08-27 18:07:15 +00006368
Nate Begeman9008ca62009-04-27 18:41:29 +00006369 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006370 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6371 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006372
Dale Johannesen0488fb62010-09-30 23:57:10 +00006373 if (X86::isMOVHLPSMask(SVOp))
6374 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006375
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006376 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006377 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006378
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006379 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006380 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006381
Dale Johannesen0488fb62010-09-30 23:57:10 +00006382 if (X86::isMOVLPMask(SVOp))
6383 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006384
Nate Begeman9008ca62009-04-27 18:41:29 +00006385 if (ShouldXformToMOVHLPS(SVOp) ||
6386 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6387 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006388
Evan Chengf26ffe92008-05-29 08:22:04 +00006389 if (isShift) {
6390 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006391 EVT EltVT = VT.getVectorElementType();
6392 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006393 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006394 }
Eric Christopherfd179292009-08-27 18:07:15 +00006395
Evan Cheng9eca5e82006-10-25 21:49:50 +00006396 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006397 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6398 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006399 V1IsSplat = isSplatVector(V1.getNode());
6400 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006401
Chris Lattner8a594482007-11-25 00:24:49 +00006402 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006403 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006404 Op = CommuteVectorShuffle(SVOp, DAG);
6405 SVOp = cast<ShuffleVectorSDNode>(Op);
6406 V1 = SVOp->getOperand(0);
6407 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006408 std::swap(V1IsSplat, V2IsSplat);
6409 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006410 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006411 }
6412
Nate Begeman9008ca62009-04-27 18:41:29 +00006413 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6414 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006415 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006416 return V1;
6417 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6418 // the instruction selector will not match, so get a canonical MOVL with
6419 // swapped operands to undo the commute.
6420 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006421 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006422
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006423 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006424 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006425
6426 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006427 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006428
Evan Cheng9bbbb982006-10-25 20:48:19 +00006429 if (V2IsSplat) {
6430 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006431 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006432 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006433 SDValue NewMask = NormalizeMask(SVOp, DAG);
6434 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6435 if (NSVOp != SVOp) {
6436 if (X86::isUNPCKLMask(NSVOp, true)) {
6437 return NewMask;
6438 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6439 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006440 }
6441 }
6442 }
6443
Evan Cheng9eca5e82006-10-25 21:49:50 +00006444 if (Commuted) {
6445 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006446 // FIXME: this seems wrong.
6447 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6448 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006449
6450 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006451 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006452
6453 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006454 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006455 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006456
Nate Begeman9008ca62009-04-27 18:41:29 +00006457 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006458 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006459 return CommuteVectorShuffle(SVOp, DAG);
6460
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006461 // The checks below are all present in isShuffleMaskLegal, but they are
6462 // inlined here right now to enable us to directly emit target specific
6463 // nodes, and remove one by one until they don't return Op anymore.
6464 SmallVector<int, 16> M;
6465 SVOp->getMask(M);
6466
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006467 if (isPALIGNRMask(M, VT, HasSSSE3))
6468 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6469 X86::getShufflePALIGNRImmediate(SVOp),
6470 DAG);
6471
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006472 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6473 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006474 if (VT == MVT::v2f64)
6475 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006476 if (VT == MVT::v2i64)
6477 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6478 }
6479
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006480 if (isPSHUFHWMask(M, VT))
6481 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6482 X86::getShufflePSHUFHWImmediate(SVOp),
6483 DAG);
6484
6485 if (isPSHUFLWMask(M, VT))
6486 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6487 X86::getShufflePSHUFLWImmediate(SVOp),
6488 DAG);
6489
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006490 if (isSHUFPMask(M, VT)) {
6491 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6492 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6493 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6494 TargetMask, DAG);
6495 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6496 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6497 TargetMask, DAG);
6498 }
6499
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006500 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006501 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006502 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006503 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006504
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006505 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006506 // Generate target specific nodes for 128 or 256-bit shuffles only
6507 // supported in the AVX instruction set.
6508 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006509
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006510 // Handle VPERMILPS* permutations
6511 if (isVPERMILPSMask(M, VT, Subtarget))
6512 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6513 getShuffleVPERMILPSImmediate(SVOp), DAG);
6514
6515 // Handle VPERMILPD* permutations
6516 if (isVPERMILPDMask(M, VT, Subtarget))
6517 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6518 getShuffleVPERMILPDImmediate(SVOp), DAG);
6519
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00006520 // Handle VPERM2F128 permutations
6521 if (isVPERM2F128Mask(M, VT, Subtarget))
6522 return getTargetShuffleNode(X86ISD::VPERM2F128, dl, VT, V1, V2,
6523 getShuffleVPERM2F128Immediate(SVOp), DAG);
6524
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006525 //===--------------------------------------------------------------------===//
6526 // Since no target specific shuffle was selected for this generic one,
6527 // lower it into other known shuffles. FIXME: this isn't true yet, but
6528 // this is the plan.
6529 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006530
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006531 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6532 if (VT == MVT::v8i16) {
6533 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6534 if (NewOp.getNode())
6535 return NewOp;
6536 }
6537
6538 if (VT == MVT::v16i8) {
6539 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6540 if (NewOp.getNode())
6541 return NewOp;
6542 }
6543
6544 // Handle all 128-bit wide vectors with 4 elements, and match them with
6545 // several different shuffle types.
6546 if (NumElems == 4 && VT.getSizeInBits() == 128)
6547 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6548
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006549 // Handle general 256-bit shuffles
6550 if (VT.is256BitVector())
6551 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6552
Dan Gohman475871a2008-07-27 21:46:04 +00006553 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006554}
6555
Dan Gohman475871a2008-07-27 21:46:04 +00006556SDValue
6557X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006558 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006559 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006560 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006561
6562 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6563 return SDValue();
6564
Duncan Sands83ec4b62008-06-06 12:08:01 +00006565 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006566 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006567 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006568 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006569 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006570 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006571 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006572 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6573 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6574 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006575 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6576 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006577 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006578 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006579 Op.getOperand(0)),
6580 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006581 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006582 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006583 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006584 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006585 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006586 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006587 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6588 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006589 // result has a single use which is a store or a bitcast to i32. And in
6590 // the case of a store, it's not worth it if the index is a constant 0,
6591 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006592 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006593 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006594 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006595 if ((User->getOpcode() != ISD::STORE ||
6596 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6597 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006598 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006599 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006600 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006601 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006602 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006603 Op.getOperand(0)),
6604 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006605 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006606 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006607 // ExtractPS works with constant index.
6608 if (isa<ConstantSDNode>(Op.getOperand(1)))
6609 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006610 }
Dan Gohman475871a2008-07-27 21:46:04 +00006611 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006612}
6613
6614
Dan Gohman475871a2008-07-27 21:46:04 +00006615SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006616X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6617 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006618 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006619 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006620
David Greene74a579d2011-02-10 16:57:36 +00006621 SDValue Vec = Op.getOperand(0);
6622 EVT VecVT = Vec.getValueType();
6623
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006624 // If this is a 256-bit vector result, first extract the 128-bit vector and
6625 // then extract the element from the 128-bit vector.
6626 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006627 DebugLoc dl = Op.getNode()->getDebugLoc();
6628 unsigned NumElems = VecVT.getVectorNumElements();
6629 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006630 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6631
6632 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006633 bool Upper = IdxVal >= NumElems/2;
6634 Vec = Extract128BitVector(Vec,
6635 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006636
David Greene74a579d2011-02-10 16:57:36 +00006637 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006638 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006639 }
6640
6641 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6642
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006643 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006644 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006645 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006646 return Res;
6647 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006648
Owen Andersone50ed302009-08-10 22:56:29 +00006649 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006650 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006651 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006652 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006653 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006654 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006655 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006656 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6657 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006658 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006659 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006660 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006661 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006662 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006663 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006664 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006665 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006666 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006667 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006668 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006669 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006670 if (Idx == 0)
6671 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006672
Evan Cheng0db9fe62006-04-25 20:13:52 +00006673 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006674 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006675 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006676 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006677 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006678 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006679 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006680 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006681 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6682 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6683 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006684 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006685 if (Idx == 0)
6686 return Op;
6687
6688 // UNPCKHPD the element to the lowest double word, then movsd.
6689 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6690 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006691 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006692 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006693 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006694 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006695 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006696 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006697 }
6698
Dan Gohman475871a2008-07-27 21:46:04 +00006699 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006700}
6701
Dan Gohman475871a2008-07-27 21:46:04 +00006702SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006703X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6704 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006705 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006706 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006707 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006708
Dan Gohman475871a2008-07-27 21:46:04 +00006709 SDValue N0 = Op.getOperand(0);
6710 SDValue N1 = Op.getOperand(1);
6711 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006712
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006713 if (VT.getSizeInBits() == 256)
6714 return SDValue();
6715
Dan Gohman8a55ce42009-09-23 21:02:20 +00006716 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006717 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006718 unsigned Opc;
6719 if (VT == MVT::v8i16)
6720 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006721 else if (VT == MVT::v16i8)
6722 Opc = X86ISD::PINSRB;
6723 else
6724 Opc = X86ISD::PINSRB;
6725
Nate Begeman14d12ca2008-02-11 04:19:36 +00006726 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6727 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006728 if (N1.getValueType() != MVT::i32)
6729 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6730 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006731 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006732 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006733 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006734 // Bits [7:6] of the constant are the source select. This will always be
6735 // zero here. The DAG Combiner may combine an extract_elt index into these
6736 // bits. For example (insert (extract, 3), 2) could be matched by putting
6737 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006738 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006739 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006740 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006741 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006742 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006743 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006744 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006745 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006746 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006747 // PINSR* works with constant index.
6748 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006749 }
Dan Gohman475871a2008-07-27 21:46:04 +00006750 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006751}
6752
Dan Gohman475871a2008-07-27 21:46:04 +00006753SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006754X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006755 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006756 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006757
David Greene6b381262011-02-09 15:32:06 +00006758 DebugLoc dl = Op.getDebugLoc();
6759 SDValue N0 = Op.getOperand(0);
6760 SDValue N1 = Op.getOperand(1);
6761 SDValue N2 = Op.getOperand(2);
6762
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006763 // If this is a 256-bit vector result, first extract the 128-bit vector,
6764 // insert the element into the extracted half and then place it back.
6765 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006766 if (!isa<ConstantSDNode>(N2))
6767 return SDValue();
6768
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006769 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006770 unsigned NumElems = VT.getVectorNumElements();
6771 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006772 bool Upper = IdxVal >= NumElems/2;
6773 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6774 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006775
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006776 // Insert the element into the desired half.
6777 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6778 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006779
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006780 // Insert the changed part back to the 256-bit vector
6781 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006782 }
6783
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006784 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006785 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6786
Dan Gohman8a55ce42009-09-23 21:02:20 +00006787 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006788 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006789
Dan Gohman8a55ce42009-09-23 21:02:20 +00006790 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006791 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6792 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006793 if (N1.getValueType() != MVT::i32)
6794 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6795 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006796 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006797 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006798 }
Dan Gohman475871a2008-07-27 21:46:04 +00006799 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006800}
6801
Dan Gohman475871a2008-07-27 21:46:04 +00006802SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006803X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006804 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006805 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006806 EVT OpVT = Op.getValueType();
6807
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006808 // If this is a 256-bit vector result, first insert into a 128-bit
6809 // vector and then insert into the 256-bit vector.
6810 if (OpVT.getSizeInBits() > 128) {
6811 // Insert into a 128-bit vector.
6812 EVT VT128 = EVT::getVectorVT(*Context,
6813 OpVT.getVectorElementType(),
6814 OpVT.getVectorNumElements() / 2);
6815
6816 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6817
6818 // Insert the 128-bit vector.
6819 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6820 DAG.getConstant(0, MVT::i32),
6821 DAG, dl);
6822 }
6823
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006824 if (Op.getValueType() == MVT::v1i64 &&
6825 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006826 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006827
Owen Anderson825b72b2009-08-11 20:47:22 +00006828 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006829 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6830 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006831 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006832 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006833}
6834
David Greene91585092011-01-26 15:38:49 +00006835// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6836// a simple subregister reference or explicit instructions to grab
6837// upper bits of a vector.
6838SDValue
6839X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6840 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006841 DebugLoc dl = Op.getNode()->getDebugLoc();
6842 SDValue Vec = Op.getNode()->getOperand(0);
6843 SDValue Idx = Op.getNode()->getOperand(1);
6844
6845 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6846 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6847 return Extract128BitVector(Vec, Idx, DAG, dl);
6848 }
David Greene91585092011-01-26 15:38:49 +00006849 }
6850 return SDValue();
6851}
6852
David Greenecfe33c42011-01-26 19:13:22 +00006853// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6854// simple superregister reference or explicit instructions to insert
6855// the upper bits of a vector.
6856SDValue
6857X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6858 if (Subtarget->hasAVX()) {
6859 DebugLoc dl = Op.getNode()->getDebugLoc();
6860 SDValue Vec = Op.getNode()->getOperand(0);
6861 SDValue SubVec = Op.getNode()->getOperand(1);
6862 SDValue Idx = Op.getNode()->getOperand(2);
6863
6864 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6865 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006866 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006867 }
6868 }
6869 return SDValue();
6870}
6871
Bill Wendling056292f2008-09-16 21:48:12 +00006872// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6873// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6874// one of the above mentioned nodes. It has to be wrapped because otherwise
6875// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6876// be used to form addressing mode. These wrapped nodes will be selected
6877// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006878SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006879X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006880 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006881
Chris Lattner41621a22009-06-26 19:22:52 +00006882 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6883 // global base reg.
6884 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006885 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006886 CodeModel::Model M = getTargetMachine().getCodeModel();
6887
Chris Lattner4f066492009-07-11 20:29:19 +00006888 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006889 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006890 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006891 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006892 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006893 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006894 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006895
Evan Cheng1606e8e2009-03-13 07:51:59 +00006896 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006897 CP->getAlignment(),
6898 CP->getOffset(), OpFlag);
6899 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006900 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006901 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006902 if (OpFlag) {
6903 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006904 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006905 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006906 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006907 }
6908
6909 return Result;
6910}
6911
Dan Gohmand858e902010-04-17 15:26:15 +00006912SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006913 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006914
Chris Lattner18c59872009-06-27 04:16:01 +00006915 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6916 // global base reg.
6917 unsigned char OpFlag = 0;
6918 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006919 CodeModel::Model M = getTargetMachine().getCodeModel();
6920
Chris Lattner4f066492009-07-11 20:29:19 +00006921 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006922 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006923 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006924 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006925 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006926 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006927 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006928
Chris Lattner18c59872009-06-27 04:16:01 +00006929 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6930 OpFlag);
6931 DebugLoc DL = JT->getDebugLoc();
6932 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006933
Chris Lattner18c59872009-06-27 04:16:01 +00006934 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006935 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006936 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6937 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006938 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006939 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006940
Chris Lattner18c59872009-06-27 04:16:01 +00006941 return Result;
6942}
6943
6944SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006945X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006946 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006947
Chris Lattner18c59872009-06-27 04:16:01 +00006948 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6949 // global base reg.
6950 unsigned char OpFlag = 0;
6951 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006952 CodeModel::Model M = getTargetMachine().getCodeModel();
6953
Chris Lattner4f066492009-07-11 20:29:19 +00006954 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00006955 (M == CodeModel::Small || M == CodeModel::Kernel)) {
6956 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
6957 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00006958 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00006959 } else if (Subtarget->isPICStyleGOT()) {
6960 OpFlag = X86II::MO_GOT;
6961 } else if (Subtarget->isPICStyleStubPIC()) {
6962 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
6963 } else if (Subtarget->isPICStyleStubNoDynamic()) {
6964 OpFlag = X86II::MO_DARWIN_NONLAZY;
6965 }
Eric Christopherfd179292009-08-27 18:07:15 +00006966
Chris Lattner18c59872009-06-27 04:16:01 +00006967 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006968
Chris Lattner18c59872009-06-27 04:16:01 +00006969 DebugLoc DL = Op.getDebugLoc();
6970 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006971
6972
Chris Lattner18c59872009-06-27 04:16:01 +00006973 // With PIC, the address is actually $g + Offset.
6974 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006975 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006976 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6977 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006978 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006979 Result);
6980 }
Eric Christopherfd179292009-08-27 18:07:15 +00006981
Eli Friedman586272d2011-08-11 01:48:05 +00006982 // For symbols that require a load from a stub to get the address, emit the
6983 // load.
6984 if (isGlobalStubReference(OpFlag))
6985 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
6986 MachinePointerInfo::getGOT(), false, false, 0);
6987
Chris Lattner18c59872009-06-27 04:16:01 +00006988 return Result;
6989}
6990
Dan Gohman475871a2008-07-27 21:46:04 +00006991SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006992X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006993 // Create the TargetBlockAddressAddress node.
6994 unsigned char OpFlags =
6995 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006996 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006997 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006998 DebugLoc dl = Op.getDebugLoc();
6999 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7000 /*isTarget=*/true, OpFlags);
7001
Dan Gohmanf705adb2009-10-30 01:28:02 +00007002 if (Subtarget->isPICStyleRIPRel() &&
7003 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007004 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7005 else
7006 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007007
Dan Gohman29cbade2009-11-20 23:18:13 +00007008 // With PIC, the address is actually $g + Offset.
7009 if (isGlobalRelativeToPICBase(OpFlags)) {
7010 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7011 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7012 Result);
7013 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007014
7015 return Result;
7016}
7017
7018SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007019X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00007020 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00007021 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007022 // Create the TargetGlobalAddress node, folding in the constant
7023 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007024 unsigned char OpFlags =
7025 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007026 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007027 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007028 if (OpFlags == X86II::MO_NO_FLAG &&
7029 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007030 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007031 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007032 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007033 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007034 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007035 }
Eric Christopherfd179292009-08-27 18:07:15 +00007036
Chris Lattner4f066492009-07-11 20:29:19 +00007037 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007038 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007039 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7040 else
7041 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007042
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007043 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007044 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007045 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7046 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007047 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007048 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007049
Chris Lattner36c25012009-07-10 07:34:39 +00007050 // For globals that require a load from a stub to get the address, emit the
7051 // load.
7052 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007053 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007054 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007055
Dan Gohman6520e202008-10-18 02:06:02 +00007056 // If there was a non-zero offset that we didn't fold, create an explicit
7057 // addition for it.
7058 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007059 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007060 DAG.getConstant(Offset, getPointerTy()));
7061
Evan Cheng0db9fe62006-04-25 20:13:52 +00007062 return Result;
7063}
7064
Evan Chengda43bcf2008-09-24 00:05:32 +00007065SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007066X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007067 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007068 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007069 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007070}
7071
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007072static SDValue
7073GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007074 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00007075 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007076 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007077 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007078 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007079 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007080 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007081 GA->getOffset(),
7082 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007083 if (InFlag) {
7084 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007085 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007086 } else {
7087 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007088 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007089 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007090
7091 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007092 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007093
Rafael Espindola15f1b662009-04-24 12:59:40 +00007094 SDValue Flag = Chain.getValue(1);
7095 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007096}
7097
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007098// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007099static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007100LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007101 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007102 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007103 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7104 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007105 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007106 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007107 InFlag = Chain.getValue(1);
7108
Chris Lattnerb903bed2009-06-26 21:20:29 +00007109 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007110}
7111
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007112// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007113static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007114LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007115 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007116 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7117 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007118}
7119
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007120// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7121// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007122static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007123 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00007124 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007125 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007126
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007127 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7128 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7129 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007130
Michael J. Spencerec38de22010-10-10 22:04:20 +00007131 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007132 DAG.getIntPtrConstant(0),
7133 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007134
Chris Lattnerb903bed2009-06-26 21:20:29 +00007135 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007136 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7137 // initialexec.
7138 unsigned WrapperKind = X86ISD::Wrapper;
7139 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007140 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00007141 } else if (is64Bit) {
7142 assert(model == TLSModel::InitialExec);
7143 OperandFlags = X86II::MO_GOTTPOFF;
7144 WrapperKind = X86ISD::WrapperRIP;
7145 } else {
7146 assert(model == TLSModel::InitialExec);
7147 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00007148 }
Eric Christopherfd179292009-08-27 18:07:15 +00007149
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007150 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7151 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007152 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007153 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007154 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007155 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007156
Rafael Espindola9a580232009-02-27 13:37:18 +00007157 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007158 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007159 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007160
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007161 // The address of the thread local variable is the add of the thread
7162 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007163 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007164}
7165
Dan Gohman475871a2008-07-27 21:46:04 +00007166SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007167X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007168
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007169 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007170 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007171
Eric Christopher30ef0e52010-06-03 04:07:48 +00007172 if (Subtarget->isTargetELF()) {
7173 // TODO: implement the "local dynamic" model
7174 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00007175
Eric Christopher30ef0e52010-06-03 04:07:48 +00007176 // If GV is an alias then use the aliasee for determining
7177 // thread-localness.
7178 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7179 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007180
7181 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00007182 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007183
Eric Christopher30ef0e52010-06-03 04:07:48 +00007184 switch (model) {
7185 case TLSModel::GeneralDynamic:
7186 case TLSModel::LocalDynamic: // not implemented
7187 if (Subtarget->is64Bit())
7188 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7189 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007190
Eric Christopher30ef0e52010-06-03 04:07:48 +00007191 case TLSModel::InitialExec:
7192 case TLSModel::LocalExec:
7193 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7194 Subtarget->is64Bit());
7195 }
7196 } else if (Subtarget->isTargetDarwin()) {
7197 // Darwin only has one model of TLS. Lower to that.
7198 unsigned char OpFlag = 0;
7199 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7200 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007201
Eric Christopher30ef0e52010-06-03 04:07:48 +00007202 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7203 // global base reg.
7204 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7205 !Subtarget->is64Bit();
7206 if (PIC32)
7207 OpFlag = X86II::MO_TLVP_PIC_BASE;
7208 else
7209 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007210 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007211 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007212 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007213 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007214 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007215
Eric Christopher30ef0e52010-06-03 04:07:48 +00007216 // With PIC32, the address is actually $g + Offset.
7217 if (PIC32)
7218 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7219 DAG.getNode(X86ISD::GlobalBaseReg,
7220 DebugLoc(), getPointerTy()),
7221 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007222
Eric Christopher30ef0e52010-06-03 04:07:48 +00007223 // Lowering the machine isd will make sure everything is in the right
7224 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007225 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007226 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007227 SDValue Args[] = { Chain, Offset };
7228 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007229
Eric Christopher30ef0e52010-06-03 04:07:48 +00007230 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7231 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7232 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007233
Eric Christopher30ef0e52010-06-03 04:07:48 +00007234 // And our return value (tls address) is in the standard call return value
7235 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007236 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7237 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007238 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007239
Eric Christopher30ef0e52010-06-03 04:07:48 +00007240 assert(false &&
7241 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007242
Torok Edwinc23197a2009-07-14 16:55:14 +00007243 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007244 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007245}
7246
Evan Cheng0db9fe62006-04-25 20:13:52 +00007247
Nadav Rotem43012222011-05-11 08:12:09 +00007248/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007249/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007250SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007251 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007252 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007253 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007254 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007255 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007256 SDValue ShOpLo = Op.getOperand(0);
7257 SDValue ShOpHi = Op.getOperand(1);
7258 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007259 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007260 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007261 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007262
Dan Gohman475871a2008-07-27 21:46:04 +00007263 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007264 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007265 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7266 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007267 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007268 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7269 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007270 }
Evan Chenge3413162006-01-09 18:33:28 +00007271
Owen Anderson825b72b2009-08-11 20:47:22 +00007272 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7273 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007274 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007275 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007276
Dan Gohman475871a2008-07-27 21:46:04 +00007277 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007278 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007279 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7280 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007281
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007282 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007283 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7284 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007285 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007286 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7287 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007288 }
7289
Dan Gohman475871a2008-07-27 21:46:04 +00007290 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007291 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007292}
Evan Chenga3195e82006-01-12 22:54:21 +00007293
Dan Gohmand858e902010-04-17 15:26:15 +00007294SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7295 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007296 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007297
Dale Johannesen0488fb62010-09-30 23:57:10 +00007298 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007299 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007300
Owen Anderson825b72b2009-08-11 20:47:22 +00007301 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007302 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007303
Eli Friedman36df4992009-05-27 00:47:34 +00007304 // These are really Legal; return the operand so the caller accepts it as
7305 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007306 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007307 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007308 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007309 Subtarget->is64Bit()) {
7310 return Op;
7311 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007312
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007313 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007314 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007315 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007316 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007317 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007318 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007319 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007320 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007321 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007322 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7323}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007324
Owen Andersone50ed302009-08-10 22:56:29 +00007325SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007326 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007327 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007328 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007329 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007330 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007331 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007332 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007333 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007334 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007335 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007336
Chris Lattner492a43e2010-09-22 01:28:21 +00007337 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007338
Stuart Hastings84be9582011-06-02 15:57:11 +00007339 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7340 MachineMemOperand *MMO;
7341 if (FI) {
7342 int SSFI = FI->getIndex();
7343 MMO =
7344 DAG.getMachineFunction()
7345 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7346 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7347 } else {
7348 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7349 StackSlot = StackSlot.getOperand(1);
7350 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007351 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007352 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7353 X86ISD::FILD, DL,
7354 Tys, Ops, array_lengthof(Ops),
7355 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007356
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007357 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007358 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007359 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007360
7361 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7362 // shouldn't be necessary except that RFP cannot be live across
7363 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007364 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007365 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7366 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007367 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007368 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007369 SDValue Ops[] = {
7370 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7371 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007372 MachineMemOperand *MMO =
7373 DAG.getMachineFunction()
7374 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007375 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007376
Chris Lattner492a43e2010-09-22 01:28:21 +00007377 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7378 Ops, array_lengthof(Ops),
7379 Op.getValueType(), MMO);
7380 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007381 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007382 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007383 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007384
Evan Cheng0db9fe62006-04-25 20:13:52 +00007385 return Result;
7386}
7387
Bill Wendling8b8a6362009-01-17 03:56:04 +00007388// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007389SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7390 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007391 // This algorithm is not obvious. Here it is in C code, more or less:
7392 /*
7393 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7394 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7395 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007396
Bill Wendling8b8a6362009-01-17 03:56:04 +00007397 // Copy ints to xmm registers.
7398 __m128i xh = _mm_cvtsi32_si128( hi );
7399 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007400
Bill Wendling8b8a6362009-01-17 03:56:04 +00007401 // Combine into low half of a single xmm register.
7402 __m128i x = _mm_unpacklo_epi32( xh, xl );
7403 __m128d d;
7404 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007405
Bill Wendling8b8a6362009-01-17 03:56:04 +00007406 // Merge in appropriate exponents to give the integer bits the right
7407 // magnitude.
7408 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007409
Bill Wendling8b8a6362009-01-17 03:56:04 +00007410 // Subtract away the biases to deal with the IEEE-754 double precision
7411 // implicit 1.
7412 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007413
Bill Wendling8b8a6362009-01-17 03:56:04 +00007414 // All conversions up to here are exact. The correctly rounded result is
7415 // calculated using the current rounding mode using the following
7416 // horizontal add.
7417 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7418 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7419 // store doesn't really need to be here (except
7420 // maybe to zero the other double)
7421 return sd;
7422 }
7423 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007424
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007425 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007426 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007427
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007428 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007429 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007430 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7431 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7432 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7433 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007434 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007435 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007436
Bill Wendling8b8a6362009-01-17 03:56:04 +00007437 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007438 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007439 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007440 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007441 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007442 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007443 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007444
Owen Anderson825b72b2009-08-11 20:47:22 +00007445 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7446 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007447 Op.getOperand(0),
7448 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007449 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7450 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007451 Op.getOperand(0),
7452 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007453 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7454 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007455 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007456 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007457 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007458 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007459 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007460 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007461 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007462 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007463
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007464 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007465 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007466 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7467 DAG.getUNDEF(MVT::v2f64), ShufMask);
7468 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7469 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007470 DAG.getIntPtrConstant(0));
7471}
7472
Bill Wendling8b8a6362009-01-17 03:56:04 +00007473// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007474SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7475 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007476 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007477 // FP constant to bias correct the final result.
7478 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007479 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007480
7481 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007482 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007483 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007484
Owen Anderson825b72b2009-08-11 20:47:22 +00007485 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007486 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007487 DAG.getIntPtrConstant(0));
7488
7489 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007490 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007491 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007492 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007493 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007494 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007495 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007496 MVT::v2f64, Bias)));
7497 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007498 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007499 DAG.getIntPtrConstant(0));
7500
7501 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007502 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007503
7504 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007505 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007506
Owen Anderson825b72b2009-08-11 20:47:22 +00007507 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007508 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007509 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007510 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007511 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007512 }
7513
7514 // Handle final rounding.
7515 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007516}
7517
Dan Gohmand858e902010-04-17 15:26:15 +00007518SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7519 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007520 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007521 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007522
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007523 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007524 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7525 // the optimization here.
7526 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007527 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007528
Owen Andersone50ed302009-08-10 22:56:29 +00007529 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007530 EVT DstVT = Op.getValueType();
7531 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007532 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007533 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007534 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007535
7536 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007537 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007538 if (SrcVT == MVT::i32) {
7539 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7540 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7541 getPointerTy(), StackSlot, WordOff);
7542 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007543 StackSlot, MachinePointerInfo(),
7544 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007545 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007546 OffsetSlot, MachinePointerInfo(),
7547 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007548 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7549 return Fild;
7550 }
7551
7552 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7553 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007554 StackSlot, MachinePointerInfo(),
7555 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007556 // For i64 source, we need to add the appropriate power of 2 if the input
7557 // was negative. This is the same as the optimization in
7558 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7559 // we must be careful to do the computation in x87 extended precision, not
7560 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007561 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7562 MachineMemOperand *MMO =
7563 DAG.getMachineFunction()
7564 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7565 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007566
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007567 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7568 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007569 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7570 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007571
7572 APInt FF(32, 0x5F800000ULL);
7573
7574 // Check whether the sign bit is set.
7575 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7576 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7577 ISD::SETLT);
7578
7579 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7580 SDValue FudgePtr = DAG.getConstantPool(
7581 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7582 getPointerTy());
7583
7584 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7585 SDValue Zero = DAG.getIntPtrConstant(0);
7586 SDValue Four = DAG.getIntPtrConstant(4);
7587 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7588 Zero, Four);
7589 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7590
7591 // Load the value out, extending it from f32 to f80.
7592 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007593 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007594 FudgePtr, MachinePointerInfo::getConstantPool(),
7595 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007596 // Extend everything to 80 bits to force it to be done on x87.
7597 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7598 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007599}
7600
Dan Gohman475871a2008-07-27 21:46:04 +00007601std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007602FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007603 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007604
Owen Andersone50ed302009-08-10 22:56:29 +00007605 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007606
7607 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007608 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7609 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007610 }
7611
Owen Anderson825b72b2009-08-11 20:47:22 +00007612 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7613 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007614 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007615
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007616 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007617 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007618 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007619 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007620 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007621 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007622 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007623 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007624
Evan Cheng87c89352007-10-15 20:11:21 +00007625 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7626 // stack slot.
7627 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007628 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007629 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007630 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007631
Michael J. Spencerec38de22010-10-10 22:04:20 +00007632
7633
Evan Cheng0db9fe62006-04-25 20:13:52 +00007634 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007635 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007636 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007637 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7638 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7639 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007640 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007641
Dan Gohman475871a2008-07-27 21:46:04 +00007642 SDValue Chain = DAG.getEntryNode();
7643 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007644 EVT TheVT = Op.getOperand(0).getValueType();
7645 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007646 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007647 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007648 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007649 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007650 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007651 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007652 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007653 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007654
Chris Lattner492a43e2010-09-22 01:28:21 +00007655 MachineMemOperand *MMO =
7656 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7657 MachineMemOperand::MOLoad, MemSize, MemSize);
7658 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7659 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007660 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007661 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007662 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7663 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007664
Chris Lattner07290932010-09-22 01:05:16 +00007665 MachineMemOperand *MMO =
7666 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7667 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007668
Evan Cheng0db9fe62006-04-25 20:13:52 +00007669 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007670 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007671 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7672 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007673
Chris Lattner27a6c732007-11-24 07:07:01 +00007674 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007675}
7676
Dan Gohmand858e902010-04-17 15:26:15 +00007677SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7678 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007679 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007680 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007681
Eli Friedman948e95a2009-05-23 09:59:16 +00007682 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007683 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007684 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7685 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007686
Chris Lattner27a6c732007-11-24 07:07:01 +00007687 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007688 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007689 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007690}
7691
Dan Gohmand858e902010-04-17 15:26:15 +00007692SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7693 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007694 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7695 SDValue FIST = Vals.first, StackSlot = Vals.second;
7696 assert(FIST.getNode() && "Unexpected failure");
7697
7698 // Load the result.
7699 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007700 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007701}
7702
Dan Gohmand858e902010-04-17 15:26:15 +00007703SDValue X86TargetLowering::LowerFABS(SDValue Op,
7704 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007705 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007706 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007707 EVT VT = Op.getValueType();
7708 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007709 if (VT.isVector())
7710 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007711 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007712 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007713 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007714 CV.push_back(C);
7715 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007716 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007717 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007718 CV.push_back(C);
7719 CV.push_back(C);
7720 CV.push_back(C);
7721 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007722 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007723 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007724 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007725 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007726 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007727 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007728 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007729}
7730
Dan Gohmand858e902010-04-17 15:26:15 +00007731SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007732 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007733 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007734 EVT VT = Op.getValueType();
7735 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007736 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007737 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007738 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007739 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007740 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007741 CV.push_back(C);
7742 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007743 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007744 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007745 CV.push_back(C);
7746 CV.push_back(C);
7747 CV.push_back(C);
7748 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007749 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007750 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007751 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007752 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007753 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007754 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007755 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007756 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007757 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007758 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007759 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007760 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007761 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007762 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007763 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007764}
7765
Dan Gohmand858e902010-04-17 15:26:15 +00007766SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007767 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007768 SDValue Op0 = Op.getOperand(0);
7769 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007770 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007771 EVT VT = Op.getValueType();
7772 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007773
7774 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007775 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007776 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007777 SrcVT = VT;
7778 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007779 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007780 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007781 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007782 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007783 }
7784
7785 // At this point the operands and the result should have the same
7786 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007787
Evan Cheng68c47cb2007-01-05 07:55:56 +00007788 // First get the sign bit of second operand.
7789 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007790 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007791 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7792 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007793 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007794 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7795 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7796 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7797 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007798 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007799 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007800 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007801 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007802 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007803 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007804 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007805
7806 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007807 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007808 // Op0 is MVT::f32, Op1 is MVT::f64.
7809 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7810 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7811 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007812 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007813 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007814 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007815 }
7816
Evan Cheng73d6cf12007-01-05 21:37:56 +00007817 // Clear first operand sign bit.
7818 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007819 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007820 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7821 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007822 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007823 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7824 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7825 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7826 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007827 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007828 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007829 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007830 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007831 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007832 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007833 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007834
7835 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007836 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007837}
7838
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007839SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7840 SDValue N0 = Op.getOperand(0);
7841 DebugLoc dl = Op.getDebugLoc();
7842 EVT VT = Op.getValueType();
7843
7844 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7845 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7846 DAG.getConstant(1, VT));
7847 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7848}
7849
Dan Gohman076aee32009-03-04 19:44:21 +00007850/// Emit nodes that will be selected as "test Op0,Op0", or something
7851/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007852SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007853 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007854 DebugLoc dl = Op.getDebugLoc();
7855
Dan Gohman31125812009-03-07 01:58:32 +00007856 // CF and OF aren't always set the way we want. Determine which
7857 // of these we need.
7858 bool NeedCF = false;
7859 bool NeedOF = false;
7860 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007861 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007862 case X86::COND_A: case X86::COND_AE:
7863 case X86::COND_B: case X86::COND_BE:
7864 NeedCF = true;
7865 break;
7866 case X86::COND_G: case X86::COND_GE:
7867 case X86::COND_L: case X86::COND_LE:
7868 case X86::COND_O: case X86::COND_NO:
7869 NeedOF = true;
7870 break;
Dan Gohman31125812009-03-07 01:58:32 +00007871 }
7872
Dan Gohman076aee32009-03-04 19:44:21 +00007873 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007874 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7875 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007876 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7877 // Emit a CMP with 0, which is the TEST pattern.
7878 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7879 DAG.getConstant(0, Op.getValueType()));
7880
7881 unsigned Opcode = 0;
7882 unsigned NumOperands = 0;
7883 switch (Op.getNode()->getOpcode()) {
7884 case ISD::ADD:
7885 // Due to an isel shortcoming, be conservative if this add is likely to be
7886 // selected as part of a load-modify-store instruction. When the root node
7887 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7888 // uses of other nodes in the match, such as the ADD in this case. This
7889 // leads to the ADD being left around and reselected, with the result being
7890 // two adds in the output. Alas, even if none our users are stores, that
7891 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7892 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7893 // climbing the DAG back to the root, and it doesn't seem to be worth the
7894 // effort.
7895 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007896 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007897 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7898 goto default_case;
7899
7900 if (ConstantSDNode *C =
7901 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7902 // An add of one will be selected as an INC.
7903 if (C->getAPIntValue() == 1) {
7904 Opcode = X86ISD::INC;
7905 NumOperands = 1;
7906 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007907 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007908
7909 // An add of negative one (subtract of one) will be selected as a DEC.
7910 if (C->getAPIntValue().isAllOnesValue()) {
7911 Opcode = X86ISD::DEC;
7912 NumOperands = 1;
7913 break;
7914 }
Dan Gohman076aee32009-03-04 19:44:21 +00007915 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007916
7917 // Otherwise use a regular EFLAGS-setting add.
7918 Opcode = X86ISD::ADD;
7919 NumOperands = 2;
7920 break;
7921 case ISD::AND: {
7922 // If the primary and result isn't used, don't bother using X86ISD::AND,
7923 // because a TEST instruction will be better.
7924 bool NonFlagUse = false;
7925 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7926 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7927 SDNode *User = *UI;
7928 unsigned UOpNo = UI.getOperandNo();
7929 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7930 // Look pass truncate.
7931 UOpNo = User->use_begin().getOperandNo();
7932 User = *User->use_begin();
7933 }
7934
7935 if (User->getOpcode() != ISD::BRCOND &&
7936 User->getOpcode() != ISD::SETCC &&
7937 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7938 NonFlagUse = true;
7939 break;
7940 }
Dan Gohman076aee32009-03-04 19:44:21 +00007941 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007942
7943 if (!NonFlagUse)
7944 break;
7945 }
7946 // FALL THROUGH
7947 case ISD::SUB:
7948 case ISD::OR:
7949 case ISD::XOR:
7950 // Due to the ISEL shortcoming noted above, be conservative if this op is
7951 // likely to be selected as part of a load-modify-store instruction.
7952 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7953 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7954 if (UI->getOpcode() == ISD::STORE)
7955 goto default_case;
7956
7957 // Otherwise use a regular EFLAGS-setting instruction.
7958 switch (Op.getNode()->getOpcode()) {
7959 default: llvm_unreachable("unexpected operator!");
7960 case ISD::SUB: Opcode = X86ISD::SUB; break;
7961 case ISD::OR: Opcode = X86ISD::OR; break;
7962 case ISD::XOR: Opcode = X86ISD::XOR; break;
7963 case ISD::AND: Opcode = X86ISD::AND; break;
7964 }
7965
7966 NumOperands = 2;
7967 break;
7968 case X86ISD::ADD:
7969 case X86ISD::SUB:
7970 case X86ISD::INC:
7971 case X86ISD::DEC:
7972 case X86ISD::OR:
7973 case X86ISD::XOR:
7974 case X86ISD::AND:
7975 return SDValue(Op.getNode(), 1);
7976 default:
7977 default_case:
7978 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007979 }
7980
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007981 if (Opcode == 0)
7982 // Emit a CMP with 0, which is the TEST pattern.
7983 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7984 DAG.getConstant(0, Op.getValueType()));
7985
7986 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7987 SmallVector<SDValue, 4> Ops;
7988 for (unsigned i = 0; i != NumOperands; ++i)
7989 Ops.push_back(Op.getOperand(i));
7990
7991 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7992 DAG.ReplaceAllUsesWith(Op, New);
7993 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007994}
7995
7996/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7997/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007998SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007999 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008000 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8001 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00008002 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00008003
8004 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008005 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00008006}
8007
Evan Chengd40d03e2010-01-06 19:38:29 +00008008/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8009/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00008010SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8011 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008012 SDValue Op0 = And.getOperand(0);
8013 SDValue Op1 = And.getOperand(1);
8014 if (Op0.getOpcode() == ISD::TRUNCATE)
8015 Op0 = Op0.getOperand(0);
8016 if (Op1.getOpcode() == ISD::TRUNCATE)
8017 Op1 = Op1.getOperand(0);
8018
Evan Chengd40d03e2010-01-06 19:38:29 +00008019 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008020 if (Op1.getOpcode() == ISD::SHL)
8021 std::swap(Op0, Op1);
8022 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008023 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8024 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008025 // If we looked past a truncate, check that it's only truncating away
8026 // known zeros.
8027 unsigned BitWidth = Op0.getValueSizeInBits();
8028 unsigned AndBitWidth = And.getValueSizeInBits();
8029 if (BitWidth > AndBitWidth) {
8030 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8031 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8032 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8033 return SDValue();
8034 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008035 LHS = Op1;
8036 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00008037 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008038 } else if (Op1.getOpcode() == ISD::Constant) {
8039 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8040 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00008041 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
8042 LHS = AndLHS.getOperand(0);
8043 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008044 }
Evan Chengd40d03e2010-01-06 19:38:29 +00008045 }
Evan Cheng0488db92007-09-25 01:57:46 +00008046
Evan Chengd40d03e2010-01-06 19:38:29 +00008047 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00008048 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00008049 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00008050 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00008051 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00008052 // Also promote i16 to i32 for performance / code size reason.
8053 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00008054 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00008055 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00008056
Evan Chengd40d03e2010-01-06 19:38:29 +00008057 // If the operand types disagree, extend the shift amount to match. Since
8058 // BT ignores high bits (like shifts) we can use anyextend.
8059 if (LHS.getValueType() != RHS.getValueType())
8060 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008061
Evan Chengd40d03e2010-01-06 19:38:29 +00008062 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8063 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8064 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8065 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00008066 }
8067
Evan Cheng54de3ea2010-01-05 06:52:31 +00008068 return SDValue();
8069}
8070
Dan Gohmand858e902010-04-17 15:26:15 +00008071SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00008072 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8073 SDValue Op0 = Op.getOperand(0);
8074 SDValue Op1 = Op.getOperand(1);
8075 DebugLoc dl = Op.getDebugLoc();
8076 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8077
8078 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00008079 // Lower (X & (1 << N)) == 0 to BT(X, N).
8080 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8081 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00008082 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008083 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00008084 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008085 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8086 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8087 if (NewSetCC.getNode())
8088 return NewSetCC;
8089 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00008090
Chris Lattner481eebc2010-12-19 21:23:48 +00008091 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
8092 // these.
8093 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00008094 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00008095 cast<ConstantSDNode>(Op1)->isNullValue()) &&
8096 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008097
Chris Lattner481eebc2010-12-19 21:23:48 +00008098 // If the input is a setcc, then reuse the input setcc or use a new one with
8099 // the inverted condition.
8100 if (Op0.getOpcode() == X86ISD::SETCC) {
8101 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8102 bool Invert = (CC == ISD::SETNE) ^
8103 cast<ConstantSDNode>(Op1)->isNullValue();
8104 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008105
Evan Cheng2c755ba2010-02-27 07:36:59 +00008106 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00008107 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8108 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8109 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008110 }
8111
Evan Chenge5b51ac2010-04-17 06:13:15 +00008112 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00008113 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008114 if (X86CC == X86::COND_INVALID)
8115 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008116
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008117 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00008118 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008119 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00008120}
8121
Dan Gohmand858e902010-04-17 15:26:15 +00008122SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008123 SDValue Cond;
8124 SDValue Op0 = Op.getOperand(0);
8125 SDValue Op1 = Op.getOperand(1);
8126 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00008127 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00008128 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8129 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008130 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00008131
8132 if (isFP) {
8133 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008134 EVT EltVT = Op0.getValueType().getVectorElementType();
8135 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8136
8137 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00008138 bool Swap = false;
8139
8140 switch (SetCCOpcode) {
8141 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008142 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00008143 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008144 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00008145 case ISD::SETGT: Swap = true; // Fallthrough
8146 case ISD::SETLT:
8147 case ISD::SETOLT: SSECC = 1; break;
8148 case ISD::SETOGE:
8149 case ISD::SETGE: Swap = true; // Fallthrough
8150 case ISD::SETLE:
8151 case ISD::SETOLE: SSECC = 2; break;
8152 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008153 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00008154 case ISD::SETNE: SSECC = 4; break;
8155 case ISD::SETULE: Swap = true;
8156 case ISD::SETUGE: SSECC = 5; break;
8157 case ISD::SETULT: Swap = true;
8158 case ISD::SETUGT: SSECC = 6; break;
8159 case ISD::SETO: SSECC = 7; break;
8160 }
8161 if (Swap)
8162 std::swap(Op0, Op1);
8163
Nate Begemanfb8ead02008-07-25 19:05:58 +00008164 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00008165 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00008166 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00008167 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008168 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8169 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008170 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008171 }
8172 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00008173 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008174 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8175 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008176 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008177 }
Torok Edwinc23197a2009-07-14 16:55:14 +00008178 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00008179 }
8180 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00008181 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00008182 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008183
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008184 if (!isFP && VT.getSizeInBits() == 256)
8185 return SDValue();
8186
Nate Begeman30a0de92008-07-17 16:51:19 +00008187 // We are handling one of the integer comparisons here. Since SSE only has
8188 // GT and EQ comparisons for integer, swapping operands and multiple
8189 // operations may be required for some comparisons.
8190 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8191 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008192
Owen Anderson825b72b2009-08-11 20:47:22 +00008193 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00008194 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008195 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008196 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008197 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8198 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008199 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008200
Nate Begeman30a0de92008-07-17 16:51:19 +00008201 switch (SetCCOpcode) {
8202 default: break;
8203 case ISD::SETNE: Invert = true;
8204 case ISD::SETEQ: Opc = EQOpc; break;
8205 case ISD::SETLT: Swap = true;
8206 case ISD::SETGT: Opc = GTOpc; break;
8207 case ISD::SETGE: Swap = true;
8208 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8209 case ISD::SETULT: Swap = true;
8210 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8211 case ISD::SETUGE: Swap = true;
8212 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8213 }
8214 if (Swap)
8215 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008216
Nate Begeman30a0de92008-07-17 16:51:19 +00008217 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8218 // bits of the inputs before performing those operations.
8219 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008220 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008221 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8222 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008223 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008224 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8225 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008226 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8227 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008228 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008229
Dale Johannesenace16102009-02-03 19:33:06 +00008230 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008231
8232 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008233 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008234 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008235
Nate Begeman30a0de92008-07-17 16:51:19 +00008236 return Result;
8237}
Evan Cheng0488db92007-09-25 01:57:46 +00008238
Evan Cheng370e5342008-12-03 08:38:43 +00008239// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008240static bool isX86LogicalCmp(SDValue Op) {
8241 unsigned Opc = Op.getNode()->getOpcode();
8242 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8243 return true;
8244 if (Op.getResNo() == 1 &&
8245 (Opc == X86ISD::ADD ||
8246 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008247 Opc == X86ISD::ADC ||
8248 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008249 Opc == X86ISD::SMUL ||
8250 Opc == X86ISD::UMUL ||
8251 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008252 Opc == X86ISD::DEC ||
8253 Opc == X86ISD::OR ||
8254 Opc == X86ISD::XOR ||
8255 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008256 return true;
8257
Chris Lattner9637d5b2010-12-05 07:49:54 +00008258 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8259 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008260
Dan Gohman076aee32009-03-04 19:44:21 +00008261 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008262}
8263
Chris Lattnera2b56002010-12-05 01:23:24 +00008264static bool isZero(SDValue V) {
8265 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8266 return C && C->isNullValue();
8267}
8268
Chris Lattner96908b12010-12-05 02:00:51 +00008269static bool isAllOnes(SDValue V) {
8270 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8271 return C && C->isAllOnesValue();
8272}
8273
Dan Gohmand858e902010-04-17 15:26:15 +00008274SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008275 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008276 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008277 SDValue Op1 = Op.getOperand(1);
8278 SDValue Op2 = Op.getOperand(2);
8279 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008280 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008281
Dan Gohman1a492952009-10-20 16:22:37 +00008282 if (Cond.getOpcode() == ISD::SETCC) {
8283 SDValue NewCond = LowerSETCC(Cond, DAG);
8284 if (NewCond.getNode())
8285 Cond = NewCond;
8286 }
Evan Cheng734503b2006-09-11 02:19:56 +00008287
Chris Lattnera2b56002010-12-05 01:23:24 +00008288 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008289 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008290 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008291 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008292 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008293 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8294 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008295 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008296
Chris Lattnera2b56002010-12-05 01:23:24 +00008297 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008298
8299 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008300 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8301 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008302
8303 SDValue CmpOp0 = Cmp.getOperand(0);
8304 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8305 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008306
Chris Lattner96908b12010-12-05 02:00:51 +00008307 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008308 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8309 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008310
Chris Lattner96908b12010-12-05 02:00:51 +00008311 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8312 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008313
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008314 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008315 if (N2C == 0 || !N2C->isNullValue())
8316 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8317 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008318 }
8319 }
8320
Chris Lattnera2b56002010-12-05 01:23:24 +00008321 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008322 if (Cond.getOpcode() == ISD::AND &&
8323 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8324 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008325 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008326 Cond = Cond.getOperand(0);
8327 }
8328
Evan Cheng3f41d662007-10-08 22:16:29 +00008329 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8330 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008331 if (Cond.getOpcode() == X86ISD::SETCC ||
8332 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008333 CC = Cond.getOperand(0);
8334
Dan Gohman475871a2008-07-27 21:46:04 +00008335 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008336 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008337 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008338
Evan Cheng3f41d662007-10-08 22:16:29 +00008339 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008340 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008341 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008342 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008343
Chris Lattnerd1980a52009-03-12 06:52:53 +00008344 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8345 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008346 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008347 addTest = false;
8348 }
8349 }
8350
8351 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008352 // Look pass the truncate.
8353 if (Cond.getOpcode() == ISD::TRUNCATE)
8354 Cond = Cond.getOperand(0);
8355
8356 // We know the result of AND is compared against zero. Try to match
8357 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008358 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008359 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008360 if (NewSetCC.getNode()) {
8361 CC = NewSetCC.getOperand(0);
8362 Cond = NewSetCC.getOperand(1);
8363 addTest = false;
8364 }
8365 }
8366 }
8367
8368 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008369 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008370 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008371 }
8372
Benjamin Kramere915ff32010-12-22 23:09:28 +00008373 // a < b ? -1 : 0 -> RES = ~setcc_carry
8374 // a < b ? 0 : -1 -> RES = setcc_carry
8375 // a >= b ? -1 : 0 -> RES = setcc_carry
8376 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8377 if (Cond.getOpcode() == X86ISD::CMP) {
8378 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8379
8380 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8381 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8382 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8383 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8384 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8385 return DAG.getNOT(DL, Res, Res.getValueType());
8386 return Res;
8387 }
8388 }
8389
Evan Cheng0488db92007-09-25 01:57:46 +00008390 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8391 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008392 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008393 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008394 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008395}
8396
Evan Cheng370e5342008-12-03 08:38:43 +00008397// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8398// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8399// from the AND / OR.
8400static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8401 Opc = Op.getOpcode();
8402 if (Opc != ISD::OR && Opc != ISD::AND)
8403 return false;
8404 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8405 Op.getOperand(0).hasOneUse() &&
8406 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8407 Op.getOperand(1).hasOneUse());
8408}
8409
Evan Cheng961d6d42009-02-02 08:19:07 +00008410// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8411// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008412static bool isXor1OfSetCC(SDValue Op) {
8413 if (Op.getOpcode() != ISD::XOR)
8414 return false;
8415 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8416 if (N1C && N1C->getAPIntValue() == 1) {
8417 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8418 Op.getOperand(0).hasOneUse();
8419 }
8420 return false;
8421}
8422
Dan Gohmand858e902010-04-17 15:26:15 +00008423SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008424 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008425 SDValue Chain = Op.getOperand(0);
8426 SDValue Cond = Op.getOperand(1);
8427 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008428 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008429 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008430
Dan Gohman1a492952009-10-20 16:22:37 +00008431 if (Cond.getOpcode() == ISD::SETCC) {
8432 SDValue NewCond = LowerSETCC(Cond, DAG);
8433 if (NewCond.getNode())
8434 Cond = NewCond;
8435 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008436#if 0
8437 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008438 else if (Cond.getOpcode() == X86ISD::ADD ||
8439 Cond.getOpcode() == X86ISD::SUB ||
8440 Cond.getOpcode() == X86ISD::SMUL ||
8441 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008442 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008443#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008444
Evan Chengad9c0a32009-12-15 00:53:42 +00008445 // Look pass (and (setcc_carry (cmp ...)), 1).
8446 if (Cond.getOpcode() == ISD::AND &&
8447 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8448 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008449 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008450 Cond = Cond.getOperand(0);
8451 }
8452
Evan Cheng3f41d662007-10-08 22:16:29 +00008453 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8454 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008455 if (Cond.getOpcode() == X86ISD::SETCC ||
8456 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008457 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008458
Dan Gohman475871a2008-07-27 21:46:04 +00008459 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008460 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008461 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008462 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008463 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008464 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008465 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008466 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008467 default: break;
8468 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008469 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008470 // These can only come from an arithmetic instruction with overflow,
8471 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008472 Cond = Cond.getNode()->getOperand(1);
8473 addTest = false;
8474 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008475 }
Evan Cheng0488db92007-09-25 01:57:46 +00008476 }
Evan Cheng370e5342008-12-03 08:38:43 +00008477 } else {
8478 unsigned CondOpc;
8479 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8480 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008481 if (CondOpc == ISD::OR) {
8482 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8483 // two branches instead of an explicit OR instruction with a
8484 // separate test.
8485 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008486 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008487 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008488 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008489 Chain, Dest, CC, Cmp);
8490 CC = Cond.getOperand(1).getOperand(0);
8491 Cond = Cmp;
8492 addTest = false;
8493 }
8494 } else { // ISD::AND
8495 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8496 // two branches instead of an explicit AND instruction with a
8497 // separate test. However, we only do this if this block doesn't
8498 // have a fall-through edge, because this requires an explicit
8499 // jmp when the condition is false.
8500 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008501 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008502 Op.getNode()->hasOneUse()) {
8503 X86::CondCode CCode =
8504 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8505 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008506 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008507 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008508 // Look for an unconditional branch following this conditional branch.
8509 // We need this because we need to reverse the successors in order
8510 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008511 if (User->getOpcode() == ISD::BR) {
8512 SDValue FalseBB = User->getOperand(1);
8513 SDNode *NewBR =
8514 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008515 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008516 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008517 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008518
Dale Johannesene4d209d2009-02-03 20:21:25 +00008519 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008520 Chain, Dest, CC, Cmp);
8521 X86::CondCode CCode =
8522 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8523 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008524 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008525 Cond = Cmp;
8526 addTest = false;
8527 }
8528 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008529 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008530 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8531 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8532 // It should be transformed during dag combiner except when the condition
8533 // is set by a arithmetics with overflow node.
8534 X86::CondCode CCode =
8535 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8536 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008537 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008538 Cond = Cond.getOperand(0).getOperand(1);
8539 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008540 }
Evan Cheng0488db92007-09-25 01:57:46 +00008541 }
8542
8543 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008544 // Look pass the truncate.
8545 if (Cond.getOpcode() == ISD::TRUNCATE)
8546 Cond = Cond.getOperand(0);
8547
8548 // We know the result of AND is compared against zero. Try to match
8549 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008550 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008551 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8552 if (NewSetCC.getNode()) {
8553 CC = NewSetCC.getOperand(0);
8554 Cond = NewSetCC.getOperand(1);
8555 addTest = false;
8556 }
8557 }
8558 }
8559
8560 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008561 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008562 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008563 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008564 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008565 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008566}
8567
Anton Korobeynikove060b532007-04-17 19:34:00 +00008568
8569// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8570// Calls to _alloca is needed to probe the stack when allocating more than 4k
8571// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8572// that the guard pages used by the OS virtual memory manager are allocated in
8573// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008574SDValue
8575X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008576 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008577 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008578 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008579 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008580 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008581
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008582 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008583 SDValue Chain = Op.getOperand(0);
8584 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008585 // FIXME: Ensure alignment here
8586
Dan Gohman475871a2008-07-27 21:46:04 +00008587 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008588
Owen Anderson825b72b2009-08-11 20:47:22 +00008589 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008590 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008591
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008592 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008593 Flag = Chain.getValue(1);
8594
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008595 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008596
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008597 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008598 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008599
Dale Johannesendd64c412009-02-04 00:33:20 +00008600 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008601
Dan Gohman475871a2008-07-27 21:46:04 +00008602 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008603 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008604}
8605
Dan Gohmand858e902010-04-17 15:26:15 +00008606SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008607 MachineFunction &MF = DAG.getMachineFunction();
8608 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8609
Dan Gohman69de1932008-02-06 22:27:42 +00008610 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008611 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008612
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008613 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008614 // vastart just stores the address of the VarArgsFrameIndex slot into the
8615 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008616 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8617 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008618 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8619 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008620 }
8621
8622 // __va_list_tag:
8623 // gp_offset (0 - 6 * 8)
8624 // fp_offset (48 - 48 + 8 * 16)
8625 // overflow_arg_area (point to parameters coming in memory).
8626 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008627 SmallVector<SDValue, 8> MemOps;
8628 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008629 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008630 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008631 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8632 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008633 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008634 MemOps.push_back(Store);
8635
8636 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008637 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008638 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008639 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008640 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8641 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008642 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008643 MemOps.push_back(Store);
8644
8645 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008646 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008647 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008648 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8649 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008650 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8651 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008652 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008653 MemOps.push_back(Store);
8654
8655 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008656 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008657 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008658 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8659 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008660 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8661 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008662 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008663 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008664 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008665}
8666
Dan Gohmand858e902010-04-17 15:26:15 +00008667SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008668 assert(Subtarget->is64Bit() &&
8669 "LowerVAARG only handles 64-bit va_arg!");
8670 assert((Subtarget->isTargetLinux() ||
8671 Subtarget->isTargetDarwin()) &&
8672 "Unhandled target in LowerVAARG");
8673 assert(Op.getNode()->getNumOperands() == 4);
8674 SDValue Chain = Op.getOperand(0);
8675 SDValue SrcPtr = Op.getOperand(1);
8676 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8677 unsigned Align = Op.getConstantOperandVal(3);
8678 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008679
Dan Gohman320afb82010-10-12 18:00:49 +00008680 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008681 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008682 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8683 uint8_t ArgMode;
8684
8685 // Decide which area this value should be read from.
8686 // TODO: Implement the AMD64 ABI in its entirety. This simple
8687 // selection mechanism works only for the basic types.
8688 if (ArgVT == MVT::f80) {
8689 llvm_unreachable("va_arg for f80 not yet implemented");
8690 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8691 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8692 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8693 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8694 } else {
8695 llvm_unreachable("Unhandled argument type in LowerVAARG");
8696 }
8697
8698 if (ArgMode == 2) {
8699 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008700 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008701 !(DAG.getMachineFunction()
8702 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008703 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008704 }
8705
8706 // Insert VAARG_64 node into the DAG
8707 // VAARG_64 returns two values: Variable Argument Address, Chain
8708 SmallVector<SDValue, 11> InstOps;
8709 InstOps.push_back(Chain);
8710 InstOps.push_back(SrcPtr);
8711 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8712 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8713 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8714 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8715 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8716 VTs, &InstOps[0], InstOps.size(),
8717 MVT::i64,
8718 MachinePointerInfo(SV),
8719 /*Align=*/0,
8720 /*Volatile=*/false,
8721 /*ReadMem=*/true,
8722 /*WriteMem=*/true);
8723 Chain = VAARG.getValue(1);
8724
8725 // Load the next argument and return it
8726 return DAG.getLoad(ArgVT, dl,
8727 Chain,
8728 VAARG,
8729 MachinePointerInfo(),
8730 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008731}
8732
Dan Gohmand858e902010-04-17 15:26:15 +00008733SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008734 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008735 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008736 SDValue Chain = Op.getOperand(0);
8737 SDValue DstPtr = Op.getOperand(1);
8738 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008739 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8740 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008741 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008742
Chris Lattnere72f2022010-09-21 05:40:29 +00008743 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008744 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008745 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008746 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008747}
8748
Dan Gohman475871a2008-07-27 21:46:04 +00008749SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008750X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008751 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008752 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008753 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008754 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008755 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008756 case Intrinsic::x86_sse_comieq_ss:
8757 case Intrinsic::x86_sse_comilt_ss:
8758 case Intrinsic::x86_sse_comile_ss:
8759 case Intrinsic::x86_sse_comigt_ss:
8760 case Intrinsic::x86_sse_comige_ss:
8761 case Intrinsic::x86_sse_comineq_ss:
8762 case Intrinsic::x86_sse_ucomieq_ss:
8763 case Intrinsic::x86_sse_ucomilt_ss:
8764 case Intrinsic::x86_sse_ucomile_ss:
8765 case Intrinsic::x86_sse_ucomigt_ss:
8766 case Intrinsic::x86_sse_ucomige_ss:
8767 case Intrinsic::x86_sse_ucomineq_ss:
8768 case Intrinsic::x86_sse2_comieq_sd:
8769 case Intrinsic::x86_sse2_comilt_sd:
8770 case Intrinsic::x86_sse2_comile_sd:
8771 case Intrinsic::x86_sse2_comigt_sd:
8772 case Intrinsic::x86_sse2_comige_sd:
8773 case Intrinsic::x86_sse2_comineq_sd:
8774 case Intrinsic::x86_sse2_ucomieq_sd:
8775 case Intrinsic::x86_sse2_ucomilt_sd:
8776 case Intrinsic::x86_sse2_ucomile_sd:
8777 case Intrinsic::x86_sse2_ucomigt_sd:
8778 case Intrinsic::x86_sse2_ucomige_sd:
8779 case Intrinsic::x86_sse2_ucomineq_sd: {
8780 unsigned Opc = 0;
8781 ISD::CondCode CC = ISD::SETCC_INVALID;
8782 switch (IntNo) {
8783 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008784 case Intrinsic::x86_sse_comieq_ss:
8785 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008786 Opc = X86ISD::COMI;
8787 CC = ISD::SETEQ;
8788 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008789 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008790 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008791 Opc = X86ISD::COMI;
8792 CC = ISD::SETLT;
8793 break;
8794 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008795 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008796 Opc = X86ISD::COMI;
8797 CC = ISD::SETLE;
8798 break;
8799 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008800 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008801 Opc = X86ISD::COMI;
8802 CC = ISD::SETGT;
8803 break;
8804 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008805 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008806 Opc = X86ISD::COMI;
8807 CC = ISD::SETGE;
8808 break;
8809 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008810 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008811 Opc = X86ISD::COMI;
8812 CC = ISD::SETNE;
8813 break;
8814 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008815 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008816 Opc = X86ISD::UCOMI;
8817 CC = ISD::SETEQ;
8818 break;
8819 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008820 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008821 Opc = X86ISD::UCOMI;
8822 CC = ISD::SETLT;
8823 break;
8824 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008825 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008826 Opc = X86ISD::UCOMI;
8827 CC = ISD::SETLE;
8828 break;
8829 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008830 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008831 Opc = X86ISD::UCOMI;
8832 CC = ISD::SETGT;
8833 break;
8834 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008835 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008836 Opc = X86ISD::UCOMI;
8837 CC = ISD::SETGE;
8838 break;
8839 case Intrinsic::x86_sse_ucomineq_ss:
8840 case Intrinsic::x86_sse2_ucomineq_sd:
8841 Opc = X86ISD::UCOMI;
8842 CC = ISD::SETNE;
8843 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008844 }
Evan Cheng734503b2006-09-11 02:19:56 +00008845
Dan Gohman475871a2008-07-27 21:46:04 +00008846 SDValue LHS = Op.getOperand(1);
8847 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008848 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008849 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008850 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8851 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8852 DAG.getConstant(X86CC, MVT::i8), Cond);
8853 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008854 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008855 // ptest and testp intrinsics. The intrinsic these come from are designed to
8856 // return an integer value, not just an instruction so lower it to the ptest
8857 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008858 case Intrinsic::x86_sse41_ptestz:
8859 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008860 case Intrinsic::x86_sse41_ptestnzc:
8861 case Intrinsic::x86_avx_ptestz_256:
8862 case Intrinsic::x86_avx_ptestc_256:
8863 case Intrinsic::x86_avx_ptestnzc_256:
8864 case Intrinsic::x86_avx_vtestz_ps:
8865 case Intrinsic::x86_avx_vtestc_ps:
8866 case Intrinsic::x86_avx_vtestnzc_ps:
8867 case Intrinsic::x86_avx_vtestz_pd:
8868 case Intrinsic::x86_avx_vtestc_pd:
8869 case Intrinsic::x86_avx_vtestnzc_pd:
8870 case Intrinsic::x86_avx_vtestz_ps_256:
8871 case Intrinsic::x86_avx_vtestc_ps_256:
8872 case Intrinsic::x86_avx_vtestnzc_ps_256:
8873 case Intrinsic::x86_avx_vtestz_pd_256:
8874 case Intrinsic::x86_avx_vtestc_pd_256:
8875 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8876 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008877 unsigned X86CC = 0;
8878 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008879 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008880 case Intrinsic::x86_avx_vtestz_ps:
8881 case Intrinsic::x86_avx_vtestz_pd:
8882 case Intrinsic::x86_avx_vtestz_ps_256:
8883 case Intrinsic::x86_avx_vtestz_pd_256:
8884 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008885 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008886 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008887 // ZF = 1
8888 X86CC = X86::COND_E;
8889 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008890 case Intrinsic::x86_avx_vtestc_ps:
8891 case Intrinsic::x86_avx_vtestc_pd:
8892 case Intrinsic::x86_avx_vtestc_ps_256:
8893 case Intrinsic::x86_avx_vtestc_pd_256:
8894 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008895 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008896 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008897 // CF = 1
8898 X86CC = X86::COND_B;
8899 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008900 case Intrinsic::x86_avx_vtestnzc_ps:
8901 case Intrinsic::x86_avx_vtestnzc_pd:
8902 case Intrinsic::x86_avx_vtestnzc_ps_256:
8903 case Intrinsic::x86_avx_vtestnzc_pd_256:
8904 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008905 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008906 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008907 // ZF and CF = 0
8908 X86CC = X86::COND_A;
8909 break;
8910 }
Eric Christopherfd179292009-08-27 18:07:15 +00008911
Eric Christopher71c67532009-07-29 00:28:05 +00008912 SDValue LHS = Op.getOperand(1);
8913 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008914 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8915 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008916 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8917 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8918 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008919 }
Evan Cheng5759f972008-05-04 09:15:50 +00008920
8921 // Fix vector shift instructions where the last operand is a non-immediate
8922 // i32 value.
8923 case Intrinsic::x86_sse2_pslli_w:
8924 case Intrinsic::x86_sse2_pslli_d:
8925 case Intrinsic::x86_sse2_pslli_q:
8926 case Intrinsic::x86_sse2_psrli_w:
8927 case Intrinsic::x86_sse2_psrli_d:
8928 case Intrinsic::x86_sse2_psrli_q:
8929 case Intrinsic::x86_sse2_psrai_w:
8930 case Intrinsic::x86_sse2_psrai_d:
8931 case Intrinsic::x86_mmx_pslli_w:
8932 case Intrinsic::x86_mmx_pslli_d:
8933 case Intrinsic::x86_mmx_pslli_q:
8934 case Intrinsic::x86_mmx_psrli_w:
8935 case Intrinsic::x86_mmx_psrli_d:
8936 case Intrinsic::x86_mmx_psrli_q:
8937 case Intrinsic::x86_mmx_psrai_w:
8938 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008939 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008940 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008941 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008942
8943 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008944 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008945 switch (IntNo) {
8946 case Intrinsic::x86_sse2_pslli_w:
8947 NewIntNo = Intrinsic::x86_sse2_psll_w;
8948 break;
8949 case Intrinsic::x86_sse2_pslli_d:
8950 NewIntNo = Intrinsic::x86_sse2_psll_d;
8951 break;
8952 case Intrinsic::x86_sse2_pslli_q:
8953 NewIntNo = Intrinsic::x86_sse2_psll_q;
8954 break;
8955 case Intrinsic::x86_sse2_psrli_w:
8956 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8957 break;
8958 case Intrinsic::x86_sse2_psrli_d:
8959 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8960 break;
8961 case Intrinsic::x86_sse2_psrli_q:
8962 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8963 break;
8964 case Intrinsic::x86_sse2_psrai_w:
8965 NewIntNo = Intrinsic::x86_sse2_psra_w;
8966 break;
8967 case Intrinsic::x86_sse2_psrai_d:
8968 NewIntNo = Intrinsic::x86_sse2_psra_d;
8969 break;
8970 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008971 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008972 switch (IntNo) {
8973 case Intrinsic::x86_mmx_pslli_w:
8974 NewIntNo = Intrinsic::x86_mmx_psll_w;
8975 break;
8976 case Intrinsic::x86_mmx_pslli_d:
8977 NewIntNo = Intrinsic::x86_mmx_psll_d;
8978 break;
8979 case Intrinsic::x86_mmx_pslli_q:
8980 NewIntNo = Intrinsic::x86_mmx_psll_q;
8981 break;
8982 case Intrinsic::x86_mmx_psrli_w:
8983 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8984 break;
8985 case Intrinsic::x86_mmx_psrli_d:
8986 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8987 break;
8988 case Intrinsic::x86_mmx_psrli_q:
8989 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8990 break;
8991 case Intrinsic::x86_mmx_psrai_w:
8992 NewIntNo = Intrinsic::x86_mmx_psra_w;
8993 break;
8994 case Intrinsic::x86_mmx_psrai_d:
8995 NewIntNo = Intrinsic::x86_mmx_psra_d;
8996 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008997 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008998 }
8999 break;
9000 }
9001 }
Mon P Wangefa42202009-09-03 19:56:25 +00009002
9003 // The vector shift intrinsics with scalars uses 32b shift amounts but
9004 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9005 // to be zero.
9006 SDValue ShOps[4];
9007 ShOps[0] = ShAmt;
9008 ShOps[1] = DAG.getConstant(0, MVT::i32);
9009 if (ShAmtVT == MVT::v4i32) {
9010 ShOps[2] = DAG.getUNDEF(MVT::i32);
9011 ShOps[3] = DAG.getUNDEF(MVT::i32);
9012 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9013 } else {
9014 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00009015// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00009016 }
9017
Owen Andersone50ed302009-08-10 22:56:29 +00009018 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009019 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009020 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009021 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00009022 Op.getOperand(1), ShAmt);
9023 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00009024 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00009025}
Evan Cheng72261582005-12-20 06:22:03 +00009026
Dan Gohmand858e902010-04-17 15:26:15 +00009027SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9028 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00009029 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9030 MFI->setReturnAddressIsTaken(true);
9031
Bill Wendling64e87322009-01-16 19:25:27 +00009032 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009033 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00009034
9035 if (Depth > 0) {
9036 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9037 SDValue Offset =
9038 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00009039 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009040 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009041 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009042 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00009043 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00009044 }
9045
9046 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00009047 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00009048 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009049 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009050}
9051
Dan Gohmand858e902010-04-17 15:26:15 +00009052SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00009053 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9054 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00009055
Owen Andersone50ed302009-08-10 22:56:29 +00009056 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009057 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00009058 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9059 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00009060 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00009061 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00009062 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9063 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00009064 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00009065 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00009066}
9067
Dan Gohman475871a2008-07-27 21:46:04 +00009068SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009069 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009070 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009071}
9072
Dan Gohmand858e902010-04-17 15:26:15 +00009073SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009074 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00009075 SDValue Chain = Op.getOperand(0);
9076 SDValue Offset = Op.getOperand(1);
9077 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009078 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009079
Dan Gohmand8816272010-08-11 18:14:00 +00009080 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9081 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9082 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009083 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009084
Dan Gohmand8816272010-08-11 18:14:00 +00009085 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9086 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009087 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009088 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9089 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00009090 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009091 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009092
Dale Johannesene4d209d2009-02-03 20:21:25 +00009093 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009094 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009095 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009096}
9097
Dan Gohman475871a2008-07-27 21:46:04 +00009098SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009099 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00009100 SDValue Root = Op.getOperand(0);
9101 SDValue Trmp = Op.getOperand(1); // trampoline
9102 SDValue FPtr = Op.getOperand(2); // nested function
9103 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009104 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009105
Dan Gohman69de1932008-02-06 22:27:42 +00009106 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009107
9108 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009109 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00009110
9111 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00009112 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
9113 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00009114
Evan Cheng0e6a0522011-07-18 20:57:22 +00009115 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9116 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00009117
9118 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9119
9120 // Load the pointer to the nested function into R11.
9121 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00009122 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00009123 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009124 Addr, MachinePointerInfo(TrmpAddr),
9125 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009126
Owen Anderson825b72b2009-08-11 20:47:22 +00009127 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9128 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009129 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9130 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00009131 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009132
9133 // Load the 'nest' parameter value into R10.
9134 // R10 is specified in X86CallingConv.td
9135 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00009136 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9137 DAG.getConstant(10, MVT::i64));
9138 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009139 Addr, MachinePointerInfo(TrmpAddr, 10),
9140 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009141
Owen Anderson825b72b2009-08-11 20:47:22 +00009142 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9143 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009144 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9145 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00009146 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009147
9148 // Jump to the nested function.
9149 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00009150 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9151 DAG.getConstant(20, MVT::i64));
9152 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009153 Addr, MachinePointerInfo(TrmpAddr, 20),
9154 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009155
9156 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00009157 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9158 DAG.getConstant(22, MVT::i64));
9159 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009160 MachinePointerInfo(TrmpAddr, 22),
9161 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009162
Dan Gohman475871a2008-07-27 21:46:04 +00009163 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009164 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009165 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009166 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00009167 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00009168 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00009169 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00009170 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009171
9172 switch (CC) {
9173 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00009174 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009175 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009176 case CallingConv::X86_StdCall: {
9177 // Pass 'nest' parameter in ECX.
9178 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009179 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009180
9181 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009182 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00009183 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009184
Chris Lattner58d74912008-03-12 17:45:29 +00009185 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00009186 unsigned InRegCount = 0;
9187 unsigned Idx = 1;
9188
9189 for (FunctionType::param_iterator I = FTy->param_begin(),
9190 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00009191 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00009192 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009193 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009194
9195 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009196 report_fatal_error("Nest register in use - reduce number of inreg"
9197 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009198 }
9199 }
9200 break;
9201 }
9202 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009203 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009204 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009205 // Pass 'nest' parameter in EAX.
9206 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009207 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009208 break;
9209 }
9210
Dan Gohman475871a2008-07-27 21:46:04 +00009211 SDValue OutChains[4];
9212 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009213
Owen Anderson825b72b2009-08-11 20:47:22 +00009214 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9215 DAG.getConstant(10, MVT::i32));
9216 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009217
Chris Lattnera62fe662010-02-05 19:20:30 +00009218 // This is storing the opcode for MOV32ri.
9219 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009220 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009221 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009222 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009223 Trmp, MachinePointerInfo(TrmpAddr),
9224 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009225
Owen Anderson825b72b2009-08-11 20:47:22 +00009226 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9227 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009228 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9229 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009230 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009231
Chris Lattnera62fe662010-02-05 19:20:30 +00009232 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009233 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9234 DAG.getConstant(5, MVT::i32));
9235 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009236 MachinePointerInfo(TrmpAddr, 5),
9237 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009238
Owen Anderson825b72b2009-08-11 20:47:22 +00009239 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9240 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009241 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9242 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009243 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009244
Dan Gohman475871a2008-07-27 21:46:04 +00009245 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009246 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009247 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009248 }
9249}
9250
Dan Gohmand858e902010-04-17 15:26:15 +00009251SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9252 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009253 /*
9254 The rounding mode is in bits 11:10 of FPSR, and has the following
9255 settings:
9256 00 Round to nearest
9257 01 Round to -inf
9258 10 Round to +inf
9259 11 Round to 0
9260
9261 FLT_ROUNDS, on the other hand, expects the following:
9262 -1 Undefined
9263 0 Round to 0
9264 1 Round to nearest
9265 2 Round to +inf
9266 3 Round to -inf
9267
9268 To perform the conversion, we do:
9269 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9270 */
9271
9272 MachineFunction &MF = DAG.getMachineFunction();
9273 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009274 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009275 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009276 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009277 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009278
9279 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009280 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009281 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009282
Michael J. Spencerec38de22010-10-10 22:04:20 +00009283
Chris Lattner2156b792010-09-22 01:11:26 +00009284 MachineMemOperand *MMO =
9285 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9286 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009287
Chris Lattner2156b792010-09-22 01:11:26 +00009288 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9289 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9290 DAG.getVTList(MVT::Other),
9291 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009292
9293 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009294 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009295 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009296
9297 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009298 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009299 DAG.getNode(ISD::SRL, DL, MVT::i16,
9300 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009301 CWD, DAG.getConstant(0x800, MVT::i16)),
9302 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009303 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009304 DAG.getNode(ISD::SRL, DL, MVT::i16,
9305 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009306 CWD, DAG.getConstant(0x400, MVT::i16)),
9307 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009308
Dan Gohman475871a2008-07-27 21:46:04 +00009309 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009310 DAG.getNode(ISD::AND, DL, MVT::i16,
9311 DAG.getNode(ISD::ADD, DL, MVT::i16,
9312 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009313 DAG.getConstant(1, MVT::i16)),
9314 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009315
9316
Duncan Sands83ec4b62008-06-06 12:08:01 +00009317 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009318 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009319}
9320
Dan Gohmand858e902010-04-17 15:26:15 +00009321SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009322 EVT VT = Op.getValueType();
9323 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009324 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009325 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009326
9327 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009328 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009329 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009330 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009331 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009332 }
Evan Cheng18efe262007-12-14 02:13:44 +00009333
Evan Cheng152804e2007-12-14 08:30:15 +00009334 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009335 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009336 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009337
9338 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009339 SDValue Ops[] = {
9340 Op,
9341 DAG.getConstant(NumBits+NumBits-1, OpVT),
9342 DAG.getConstant(X86::COND_E, MVT::i8),
9343 Op.getValue(1)
9344 };
9345 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009346
9347 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009348 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009349
Owen Anderson825b72b2009-08-11 20:47:22 +00009350 if (VT == MVT::i8)
9351 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009352 return Op;
9353}
9354
Dan Gohmand858e902010-04-17 15:26:15 +00009355SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009356 EVT VT = Op.getValueType();
9357 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009358 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009359 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009360
9361 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009362 if (VT == MVT::i8) {
9363 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009364 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009365 }
Evan Cheng152804e2007-12-14 08:30:15 +00009366
9367 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009368 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009369 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009370
9371 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009372 SDValue Ops[] = {
9373 Op,
9374 DAG.getConstant(NumBits, OpVT),
9375 DAG.getConstant(X86::COND_E, MVT::i8),
9376 Op.getValue(1)
9377 };
9378 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009379
Owen Anderson825b72b2009-08-11 20:47:22 +00009380 if (VT == MVT::i8)
9381 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009382 return Op;
9383}
9384
Dan Gohmand858e902010-04-17 15:26:15 +00009385SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009386 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00009387 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009388 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009389
Mon P Wangaf9b9522008-12-18 21:42:19 +00009390 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9391 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9392 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9393 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9394 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9395 //
9396 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9397 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9398 // return AloBlo + AloBhi + AhiBlo;
9399
9400 SDValue A = Op.getOperand(0);
9401 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009402
Dale Johannesene4d209d2009-02-03 20:21:25 +00009403 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009404 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9405 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009406 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009407 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9408 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009409 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009410 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009411 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009412 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009413 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009414 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009415 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009416 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009417 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009418 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009419 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9420 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009421 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009422 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9423 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009424 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9425 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009426 return Res;
9427}
9428
Nadav Rotem43012222011-05-11 08:12:09 +00009429SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9430
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009431 EVT VT = Op.getValueType();
9432 DebugLoc dl = Op.getDebugLoc();
9433 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009434 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009435 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009436
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009437 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9438 return SDValue();
9439
9440 // Decompose 256-bit shifts into smaller 128-bit shifts.
9441 if (VT.getSizeInBits() == 256) {
9442 int NumElems = VT.getVectorNumElements();
9443 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9444 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9445
9446 // Extract the two vectors
9447 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9448 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9449 DAG, dl);
9450
9451 // Recreate the shift amount vectors
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009452 SDValue Amt1, Amt2;
9453 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
9454 // Constant shift amount
9455 SmallVector<SDValue, 4> Amt1Csts;
9456 SmallVector<SDValue, 4> Amt2Csts;
9457 for (int i = 0; i < NumElems/2; ++i)
9458 Amt1Csts.push_back(Amt->getOperand(i));
9459 for (int i = NumElems/2; i < NumElems; ++i)
9460 Amt2Csts.push_back(Amt->getOperand(i));
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009461
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009462 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9463 &Amt1Csts[0], NumElems/2);
9464 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9465 &Amt2Csts[0], NumElems/2);
9466 } else {
9467 // Variable shift amount
9468 Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
9469 Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
9470 DAG, dl);
9471 }
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009472
9473 // Issue new vector shifts for the smaller types
9474 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9475 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9476
9477 // Concatenate the result back
9478 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9479 }
Nate Begeman51409212010-07-28 00:21:48 +00009480
Nadav Rotem43012222011-05-11 08:12:09 +00009481 // Optimize shl/srl/sra with constant shift amount.
9482 if (isSplatVector(Amt.getNode())) {
9483 SDValue SclrAmt = Amt->getOperand(0);
9484 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9485 uint64_t ShiftAmt = C->getZExtValue();
9486
9487 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9488 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9489 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9490 R, DAG.getConstant(ShiftAmt, MVT::i32));
9491
9492 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9493 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9494 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9495 R, DAG.getConstant(ShiftAmt, MVT::i32));
9496
9497 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9498 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9499 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9500 R, DAG.getConstant(ShiftAmt, MVT::i32));
9501
9502 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9503 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9504 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9505 R, DAG.getConstant(ShiftAmt, MVT::i32));
9506
9507 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9508 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9509 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9510 R, DAG.getConstant(ShiftAmt, MVT::i32));
9511
9512 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9513 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9514 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9515 R, DAG.getConstant(ShiftAmt, MVT::i32));
9516
9517 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9518 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9519 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9520 R, DAG.getConstant(ShiftAmt, MVT::i32));
9521
9522 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9523 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9524 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9525 R, DAG.getConstant(ShiftAmt, MVT::i32));
9526 }
9527 }
9528
9529 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009530 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009531 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9532 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9533 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9534
9535 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009536
Nate Begeman51409212010-07-28 00:21:48 +00009537 std::vector<Constant*> CV(4, CI);
9538 Constant *C = ConstantVector::get(CV);
9539 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9540 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009541 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009542 false, false, 16);
9543
9544 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009545 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009546 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9547 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9548 }
Nadav Rotem43012222011-05-11 08:12:09 +00009549 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009550 // a = a << 5;
9551 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9552 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9553 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9554
9555 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9556 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9557
9558 std::vector<Constant*> CVM1(16, CM1);
9559 std::vector<Constant*> CVM2(16, CM2);
9560 Constant *C = ConstantVector::get(CVM1);
9561 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9562 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009563 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009564 false, false, 16);
9565
9566 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9567 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9568 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9569 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9570 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009571 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009572 // a += a
9573 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009574
Nate Begeman51409212010-07-28 00:21:48 +00009575 C = ConstantVector::get(CVM2);
9576 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9577 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009578 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009579 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009580
Nate Begeman51409212010-07-28 00:21:48 +00009581 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9582 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9583 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9584 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9585 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009586 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009587 // a += a
9588 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009589
Nate Begeman51409212010-07-28 00:21:48 +00009590 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009591 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009592 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9593 return R;
9594 }
9595 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009596}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009597
Dan Gohmand858e902010-04-17 15:26:15 +00009598SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009599 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9600 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009601 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9602 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009603 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009604 SDValue LHS = N->getOperand(0);
9605 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009606 unsigned BaseOp = 0;
9607 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009608 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009609 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009610 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009611 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009612 // A subtract of one will be selected as a INC. Note that INC doesn't
9613 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009614 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9615 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009616 BaseOp = X86ISD::INC;
9617 Cond = X86::COND_O;
9618 break;
9619 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009620 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009621 Cond = X86::COND_O;
9622 break;
9623 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009624 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009625 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009626 break;
9627 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009628 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9629 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009630 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9631 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009632 BaseOp = X86ISD::DEC;
9633 Cond = X86::COND_O;
9634 break;
9635 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009636 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009637 Cond = X86::COND_O;
9638 break;
9639 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009640 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009641 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009642 break;
9643 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009644 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009645 Cond = X86::COND_O;
9646 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009647 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9648 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9649 MVT::i32);
9650 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009651
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009652 SDValue SetCC =
9653 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9654 DAG.getConstant(X86::COND_O, MVT::i32),
9655 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009656
Dan Gohman6e5fda22011-07-22 18:45:15 +00009657 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009658 }
Bill Wendling74c37652008-12-09 22:08:41 +00009659 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009660
Bill Wendling61edeb52008-12-02 01:06:39 +00009661 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009662 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009663 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009664
Bill Wendling61edeb52008-12-02 01:06:39 +00009665 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009666 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9667 DAG.getConstant(Cond, MVT::i32),
9668 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009669
Dan Gohman6e5fda22011-07-22 18:45:15 +00009670 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009671}
9672
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009673SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9674 DebugLoc dl = Op.getDebugLoc();
9675 SDNode* Node = Op.getNode();
9676 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9677 EVT VT = Node->getValueType(0);
9678
9679 if (Subtarget->hasSSE2() && VT.isVector()) {
9680 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9681 ExtraVT.getScalarType().getSizeInBits();
9682 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9683
9684 unsigned SHLIntrinsicsID = 0;
9685 unsigned SRAIntrinsicsID = 0;
9686 switch (VT.getSimpleVT().SimpleTy) {
9687 default:
9688 return SDValue();
9689 case MVT::v2i64: {
9690 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9691 SRAIntrinsicsID = 0;
9692 break;
9693 }
9694 case MVT::v4i32: {
9695 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9696 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9697 break;
9698 }
9699 case MVT::v8i16: {
9700 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9701 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9702 break;
9703 }
9704 }
9705
9706 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9707 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9708 Node->getOperand(0), ShAmt);
9709
9710 // In case of 1 bit sext, no need to shr
9711 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9712
9713 if (SRAIntrinsicsID) {
9714 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9715 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9716 Tmp1, ShAmt);
9717 }
9718 return Tmp1;
9719 }
9720
9721 return SDValue();
9722}
9723
9724
Eric Christopher9a9d2752010-07-22 02:48:34 +00009725SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9726 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009727
Eric Christopher77ed1352011-07-08 00:04:56 +00009728 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9729 // There isn't any reason to disable it if the target processor supports it.
9730 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009731 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009732 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009733 SDValue Ops[] = {
9734 DAG.getRegister(X86::ESP, MVT::i32), // Base
9735 DAG.getTargetConstant(1, MVT::i8), // Scale
9736 DAG.getRegister(0, MVT::i32), // Index
9737 DAG.getTargetConstant(0, MVT::i32), // Disp
9738 DAG.getRegister(0, MVT::i32), // Segment.
9739 Zero,
9740 Chain
9741 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009742 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009743 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9744 array_lengthof(Ops));
9745 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009746 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009747
Eric Christopher9a9d2752010-07-22 02:48:34 +00009748 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009749 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009750 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009751
Chris Lattner132929a2010-08-14 17:26:09 +00009752 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9753 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9754 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9755 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009756
Chris Lattner132929a2010-08-14 17:26:09 +00009757 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9758 if (!Op1 && !Op2 && !Op3 && Op4)
9759 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009760
Chris Lattner132929a2010-08-14 17:26:09 +00009761 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9762 if (Op1 && !Op2 && !Op3 && !Op4)
9763 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009764
9765 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009766 // (MFENCE)>;
9767 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009768}
9769
Eli Friedman14648462011-07-27 22:21:52 +00009770SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9771 SelectionDAG &DAG) const {
9772 DebugLoc dl = Op.getDebugLoc();
9773 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9774 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9775 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9776 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9777
9778 // The only fence that needs an instruction is a sequentially-consistent
9779 // cross-thread fence.
9780 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9781 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9782 // no-sse2). There isn't any reason to disable it if the target processor
9783 // supports it.
9784 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9785 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9786
9787 SDValue Chain = Op.getOperand(0);
9788 SDValue Zero = DAG.getConstant(0, MVT::i32);
9789 SDValue Ops[] = {
9790 DAG.getRegister(X86::ESP, MVT::i32), // Base
9791 DAG.getTargetConstant(1, MVT::i8), // Scale
9792 DAG.getRegister(0, MVT::i32), // Index
9793 DAG.getTargetConstant(0, MVT::i32), // Disp
9794 DAG.getRegister(0, MVT::i32), // Segment.
9795 Zero,
9796 Chain
9797 };
9798 SDNode *Res =
9799 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9800 array_lengthof(Ops));
9801 return SDValue(Res, 0);
9802 }
9803
9804 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9805 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9806}
9807
9808
Dan Gohmand858e902010-04-17 15:26:15 +00009809SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009810 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009811 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009812 unsigned Reg = 0;
9813 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009814 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009815 default:
9816 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009817 case MVT::i8: Reg = X86::AL; size = 1; break;
9818 case MVT::i16: Reg = X86::AX; size = 2; break;
9819 case MVT::i32: Reg = X86::EAX; size = 4; break;
9820 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009821 assert(Subtarget->is64Bit() && "Node not type legal!");
9822 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009823 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009824 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009825 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009826 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009827 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009828 Op.getOperand(1),
9829 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009830 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009831 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009832 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009833 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9834 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9835 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009836 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009837 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009838 return cpOut;
9839}
9840
Duncan Sands1607f052008-12-01 11:39:25 +00009841SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009842 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009843 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009844 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009845 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009846 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009847 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009848 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9849 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009850 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009851 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9852 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009853 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009854 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009855 rdx.getValue(1)
9856 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009857 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009858}
9859
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009860SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009861 SelectionDAG &DAG) const {
9862 EVT SrcVT = Op.getOperand(0).getValueType();
9863 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009864 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9865 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009866 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009867 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009868 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009869 // i64 <=> MMX conversions are Legal.
9870 if (SrcVT==MVT::i64 && DstVT.isVector())
9871 return Op;
9872 if (DstVT==MVT::i64 && SrcVT.isVector())
9873 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009874 // MMX <=> MMX conversions are Legal.
9875 if (SrcVT.isVector() && DstVT.isVector())
9876 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009877 // All other conversions need to be expanded.
9878 return SDValue();
9879}
Chris Lattner5b856542010-12-20 00:59:46 +00009880
Dan Gohmand858e902010-04-17 15:26:15 +00009881SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009882 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009883 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009884 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009885 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009886 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009887 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009888 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009889 Node->getOperand(0),
9890 Node->getOperand(1), negOp,
9891 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +00009892 cast<AtomicSDNode>(Node)->getAlignment(),
9893 cast<AtomicSDNode>(Node)->getOrdering(),
9894 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +00009895}
9896
Chris Lattner5b856542010-12-20 00:59:46 +00009897static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9898 EVT VT = Op.getNode()->getValueType(0);
9899
9900 // Let legalize expand this if it isn't a legal type yet.
9901 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9902 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009903
Chris Lattner5b856542010-12-20 00:59:46 +00009904 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009905
Chris Lattner5b856542010-12-20 00:59:46 +00009906 unsigned Opc;
9907 bool ExtraOp = false;
9908 switch (Op.getOpcode()) {
9909 default: assert(0 && "Invalid code");
9910 case ISD::ADDC: Opc = X86ISD::ADD; break;
9911 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9912 case ISD::SUBC: Opc = X86ISD::SUB; break;
9913 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9914 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009915
Chris Lattner5b856542010-12-20 00:59:46 +00009916 if (!ExtraOp)
9917 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9918 Op.getOperand(1));
9919 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9920 Op.getOperand(1), Op.getOperand(2));
9921}
9922
Evan Cheng0db9fe62006-04-25 20:13:52 +00009923/// LowerOperation - Provide custom lowering hooks for some operations.
9924///
Dan Gohmand858e902010-04-17 15:26:15 +00009925SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009926 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009927 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009928 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009929 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +00009930 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009931 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9932 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009933 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009934 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009935 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9936 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9937 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009938 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009939 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009940 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9941 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9942 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009943 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009944 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009945 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009946 case ISD::SHL_PARTS:
9947 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009948 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009949 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009950 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009951 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009952 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009953 case ISD::FABS: return LowerFABS(Op, DAG);
9954 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009955 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009956 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009957 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009958 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009959 case ISD::SELECT: return LowerSELECT(Op, DAG);
9960 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009961 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009962 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009963 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009964 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009965 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009966 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9967 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009968 case ISD::FRAME_TO_ARGS_OFFSET:
9969 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009970 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009971 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009972 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009973 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009974 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9975 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009976 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009977 case ISD::SRA:
9978 case ISD::SRL:
9979 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009980 case ISD::SADDO:
9981 case ISD::UADDO:
9982 case ISD::SSUBO:
9983 case ISD::USUBO:
9984 case ISD::SMULO:
9985 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009986 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009987 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009988 case ISD::ADDC:
9989 case ISD::ADDE:
9990 case ISD::SUBC:
9991 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009992 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009993}
9994
Duncan Sands1607f052008-12-01 11:39:25 +00009995void X86TargetLowering::
9996ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009997 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009998 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009999 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +000010000 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000010001
10002 SDValue Chain = Node->getOperand(0);
10003 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010004 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010005 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000010006 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010007 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000010008 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000010009 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000010010 SDValue Result =
10011 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
10012 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000010013 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010014 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010015 Results.push_back(Result.getValue(2));
10016}
10017
Duncan Sands126d9072008-07-04 11:47:58 +000010018/// ReplaceNodeResults - Replace a node with an illegal result type
10019/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000010020void X86TargetLowering::ReplaceNodeResults(SDNode *N,
10021 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010022 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010023 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +000010024 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000010025 default:
Duncan Sands1607f052008-12-01 11:39:25 +000010026 assert(false && "Do not know how to custom type legalize this operation!");
10027 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010028 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000010029 case ISD::ADDC:
10030 case ISD::ADDE:
10031 case ISD::SUBC:
10032 case ISD::SUBE:
10033 // We don't want to expand or promote these.
10034 return;
Duncan Sands1607f052008-12-01 11:39:25 +000010035 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +000010036 std::pair<SDValue,SDValue> Vals =
10037 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +000010038 SDValue FIST = Vals.first, StackSlot = Vals.second;
10039 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000010040 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000010041 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +000010042 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
10043 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +000010044 }
10045 return;
10046 }
10047 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010048 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010049 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010050 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010051 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000010052 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000010053 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010054 eax.getValue(2));
10055 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
10056 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000010057 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010058 Results.push_back(edx.getValue(1));
10059 return;
10060 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010061 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000010062 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010063 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +000010064 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +000010065 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
10066 DAG.getConstant(0, MVT::i32));
10067 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
10068 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +000010069 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
10070 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +000010071 cpInL.getValue(1));
10072 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +000010073 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
10074 DAG.getConstant(0, MVT::i32));
10075 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
10076 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +000010077 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +000010078 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +000010079 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +000010080 swapInL.getValue(1));
10081 SDValue Ops[] = { swapInH.getValue(0),
10082 N->getOperand(1),
10083 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010084 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010085 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
10086 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
10087 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +000010088 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +000010089 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +000010090 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +000010091 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000010092 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010093 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010094 Results.push_back(cpOutH.getValue(1));
10095 return;
10096 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010097 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +000010098 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
10099 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010100 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +000010101 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
10102 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010103 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +000010104 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
10105 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010106 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +000010107 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
10108 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010109 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +000010110 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
10111 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010112 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +000010113 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
10114 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010115 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +000010116 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
10117 return;
Chris Lattner27a6c732007-11-24 07:07:01 +000010118 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000010119}
10120
Evan Cheng72261582005-12-20 06:22:03 +000010121const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
10122 switch (Opcode) {
10123 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000010124 case X86ISD::BSF: return "X86ISD::BSF";
10125 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000010126 case X86ISD::SHLD: return "X86ISD::SHLD";
10127 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000010128 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010129 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000010130 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010131 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000010132 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000010133 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000010134 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
10135 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
10136 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000010137 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000010138 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000010139 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000010140 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000010141 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000010142 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000010143 case X86ISD::COMI: return "X86ISD::COMI";
10144 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000010145 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000010146 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000010147 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
10148 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000010149 case X86ISD::CMOV: return "X86ISD::CMOV";
10150 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000010151 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000010152 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
10153 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000010154 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000010155 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000010156 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010157 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000010158 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010159 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
10160 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000010161 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000010162 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000010163 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +000010164 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
10165 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
10166 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +000010167 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +000010168 case X86ISD::FMAX: return "X86ISD::FMAX";
10169 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +000010170 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
10171 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010172 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000010173 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010174 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000010175 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000010176 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +000010177 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
10178 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010179 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
10180 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
10181 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
10182 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
10183 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
10184 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000010185 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
10186 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +000010187 case X86ISD::VSHL: return "X86ISD::VSHL";
10188 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +000010189 case X86ISD::CMPPD: return "X86ISD::CMPPD";
10190 case X86ISD::CMPPS: return "X86ISD::CMPPS";
10191 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
10192 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
10193 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
10194 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
10195 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
10196 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
10197 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
10198 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010199 case X86ISD::ADD: return "X86ISD::ADD";
10200 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000010201 case X86ISD::ADC: return "X86ISD::ADC";
10202 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000010203 case X86ISD::SMUL: return "X86ISD::SMUL";
10204 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010205 case X86ISD::INC: return "X86ISD::INC";
10206 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010207 case X86ISD::OR: return "X86ISD::OR";
10208 case X86ISD::XOR: return "X86ISD::XOR";
10209 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +000010210 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010211 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010212 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010213 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10214 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10215 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10216 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10217 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10218 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10219 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10220 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10221 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010222 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010223 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010224 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010225 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10226 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010227 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10228 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10229 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10230 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10231 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10232 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10233 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10234 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10235 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010236 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010237 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10238 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10239 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10240 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10241 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10242 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10243 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10244 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10245 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10246 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000010247 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010248 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10249 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10250 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10251 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000010252 case X86ISD::VPERM2F128: return "X86ISD::VPERM2F128";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010253 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010254 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010255 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010256 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +000010257 }
10258}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010259
Chris Lattnerc9addb72007-03-30 23:15:24 +000010260// isLegalAddressingMode - Return true if the addressing mode represented
10261// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010262bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010263 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010264 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010265 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010266 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010267
Chris Lattnerc9addb72007-03-30 23:15:24 +000010268 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010269 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010270 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010271
Chris Lattnerc9addb72007-03-30 23:15:24 +000010272 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010273 unsigned GVFlags =
10274 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010275
Chris Lattnerdfed4132009-07-10 07:38:24 +000010276 // If a reference to this global requires an extra load, we can't fold it.
10277 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010278 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010279
Chris Lattnerdfed4132009-07-10 07:38:24 +000010280 // If BaseGV requires a register for the PIC base, we cannot also have a
10281 // BaseReg specified.
10282 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010283 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010284
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010285 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010286 if ((M != CodeModel::Small || R != Reloc::Static) &&
10287 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010288 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010289 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010290
Chris Lattnerc9addb72007-03-30 23:15:24 +000010291 switch (AM.Scale) {
10292 case 0:
10293 case 1:
10294 case 2:
10295 case 4:
10296 case 8:
10297 // These scales always work.
10298 break;
10299 case 3:
10300 case 5:
10301 case 9:
10302 // These scales are formed with basereg+scalereg. Only accept if there is
10303 // no basereg yet.
10304 if (AM.HasBaseReg)
10305 return false;
10306 break;
10307 default: // Other stuff never works.
10308 return false;
10309 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010310
Chris Lattnerc9addb72007-03-30 23:15:24 +000010311 return true;
10312}
10313
10314
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010315bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010316 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010317 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010318 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10319 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010320 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010321 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010322 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010323}
10324
Owen Andersone50ed302009-08-10 22:56:29 +000010325bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010326 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010327 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010328 unsigned NumBits1 = VT1.getSizeInBits();
10329 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010330 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010331 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010332 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010333}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010334
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010335bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010336 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010337 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010338}
10339
Owen Andersone50ed302009-08-10 22:56:29 +000010340bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010341 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010342 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010343}
10344
Owen Andersone50ed302009-08-10 22:56:29 +000010345bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010346 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010347 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010348}
10349
Evan Cheng60c07e12006-07-05 22:17:51 +000010350/// isShuffleMaskLegal - Targets can use this to indicate that they only
10351/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10352/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10353/// are assumed to be legal.
10354bool
Eric Christopherfd179292009-08-27 18:07:15 +000010355X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010356 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010357 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010358 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010359 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010360
Nate Begemana09008b2009-10-19 02:17:23 +000010361 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010362 return (VT.getVectorNumElements() == 2 ||
10363 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10364 isMOVLMask(M, VT) ||
10365 isSHUFPMask(M, VT) ||
10366 isPSHUFDMask(M, VT) ||
10367 isPSHUFHWMask(M, VT) ||
10368 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010369 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010370 isUNPCKLMask(M, VT) ||
10371 isUNPCKHMask(M, VT) ||
10372 isUNPCKL_v_undef_Mask(M, VT) ||
10373 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010374}
10375
Dan Gohman7d8143f2008-04-09 20:09:42 +000010376bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010377X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010378 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010379 unsigned NumElts = VT.getVectorNumElements();
10380 // FIXME: This collection of masks seems suspect.
10381 if (NumElts == 2)
10382 return true;
10383 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10384 return (isMOVLMask(Mask, VT) ||
10385 isCommutedMOVLMask(Mask, VT, true) ||
10386 isSHUFPMask(Mask, VT) ||
10387 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010388 }
10389 return false;
10390}
10391
10392//===----------------------------------------------------------------------===//
10393// X86 Scheduler Hooks
10394//===----------------------------------------------------------------------===//
10395
Mon P Wang63307c32008-05-05 19:05:59 +000010396// private utility function
10397MachineBasicBlock *
10398X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10399 MachineBasicBlock *MBB,
10400 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010401 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010402 unsigned LoadOpc,
10403 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010404 unsigned notOpc,
10405 unsigned EAXreg,
10406 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010407 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010408 // For the atomic bitwise operator, we generate
10409 // thisMBB:
10410 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010411 // ld t1 = [bitinstr.addr]
10412 // op t2 = t1, [bitinstr.val]
10413 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010414 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10415 // bz newMBB
10416 // fallthrough -->nextMBB
10417 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10418 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010419 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010420 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010421
Mon P Wang63307c32008-05-05 19:05:59 +000010422 /// First build the CFG
10423 MachineFunction *F = MBB->getParent();
10424 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010425 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10426 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10427 F->insert(MBBIter, newMBB);
10428 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010429
Dan Gohman14152b42010-07-06 20:24:04 +000010430 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10431 nextMBB->splice(nextMBB->begin(), thisMBB,
10432 llvm::next(MachineBasicBlock::iterator(bInstr)),
10433 thisMBB->end());
10434 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010435
Mon P Wang63307c32008-05-05 19:05:59 +000010436 // Update thisMBB to fall through to newMBB
10437 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010438
Mon P Wang63307c32008-05-05 19:05:59 +000010439 // newMBB jumps to itself and fall through to nextMBB
10440 newMBB->addSuccessor(nextMBB);
10441 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010442
Mon P Wang63307c32008-05-05 19:05:59 +000010443 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010444 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010445 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010446 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010447 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010448 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010449 int numArgs = bInstr->getNumOperands() - 1;
10450 for (int i=0; i < numArgs; ++i)
10451 argOpers[i] = &bInstr->getOperand(i+1);
10452
10453 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010454 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010455 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010456
Dale Johannesen140be2d2008-08-19 18:47:28 +000010457 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010458 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010459 for (int i=0; i <= lastAddrIndx; ++i)
10460 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010461
Dale Johannesen140be2d2008-08-19 18:47:28 +000010462 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010463 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010464 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010465 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010466 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010467 tt = t1;
10468
Dale Johannesen140be2d2008-08-19 18:47:28 +000010469 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010470 assert((argOpers[valArgIndx]->isReg() ||
10471 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010472 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010473 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010474 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010475 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010476 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010477 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010478 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010479
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010480 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010481 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010482
Dale Johannesene4d209d2009-02-03 20:21:25 +000010483 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010484 for (int i=0; i <= lastAddrIndx; ++i)
10485 (*MIB).addOperand(*argOpers[i]);
10486 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010487 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010488 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10489 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010490
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010491 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010492 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010493
Mon P Wang63307c32008-05-05 19:05:59 +000010494 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010495 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010496
Dan Gohman14152b42010-07-06 20:24:04 +000010497 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010498 return nextMBB;
10499}
10500
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010501// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010502MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010503X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10504 MachineBasicBlock *MBB,
10505 unsigned regOpcL,
10506 unsigned regOpcH,
10507 unsigned immOpcL,
10508 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010509 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010510 // For the atomic bitwise operator, we generate
10511 // thisMBB (instructions are in pairs, except cmpxchg8b)
10512 // ld t1,t2 = [bitinstr.addr]
10513 // newMBB:
10514 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10515 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010516 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010517 // mov ECX, EBX <- t5, t6
10518 // mov EAX, EDX <- t1, t2
10519 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10520 // mov t3, t4 <- EAX, EDX
10521 // bz newMBB
10522 // result in out1, out2
10523 // fallthrough -->nextMBB
10524
10525 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10526 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010527 const unsigned NotOpc = X86::NOT32r;
10528 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10529 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10530 MachineFunction::iterator MBBIter = MBB;
10531 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010532
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010533 /// First build the CFG
10534 MachineFunction *F = MBB->getParent();
10535 MachineBasicBlock *thisMBB = MBB;
10536 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10537 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10538 F->insert(MBBIter, newMBB);
10539 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010540
Dan Gohman14152b42010-07-06 20:24:04 +000010541 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10542 nextMBB->splice(nextMBB->begin(), thisMBB,
10543 llvm::next(MachineBasicBlock::iterator(bInstr)),
10544 thisMBB->end());
10545 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010546
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010547 // Update thisMBB to fall through to newMBB
10548 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010549
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010550 // newMBB jumps to itself and fall through to nextMBB
10551 newMBB->addSuccessor(nextMBB);
10552 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010553
Dale Johannesene4d209d2009-02-03 20:21:25 +000010554 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010555 // Insert instructions into newMBB based on incoming instruction
10556 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010557 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010558 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010559 MachineOperand& dest1Oper = bInstr->getOperand(0);
10560 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010561 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10562 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010563 argOpers[i] = &bInstr->getOperand(i+2);
10564
Dan Gohman71ea4e52010-05-14 21:01:44 +000010565 // We use some of the operands multiple times, so conservatively just
10566 // clear any kill flags that might be present.
10567 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10568 argOpers[i]->setIsKill(false);
10569 }
10570
Evan Chengad5b52f2010-01-08 19:14:57 +000010571 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010572 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010573
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010574 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010575 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010576 for (int i=0; i <= lastAddrIndx; ++i)
10577 (*MIB).addOperand(*argOpers[i]);
10578 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010579 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010580 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010581 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010582 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010583 MachineOperand newOp3 = *(argOpers[3]);
10584 if (newOp3.isImm())
10585 newOp3.setImm(newOp3.getImm()+4);
10586 else
10587 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010588 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010589 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010590
10591 // t3/4 are defined later, at the bottom of the loop
10592 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10593 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010594 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010595 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010596 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010597 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10598
Evan Cheng306b4ca2010-01-08 23:41:50 +000010599 // The subsequent operations should be using the destination registers of
10600 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010601 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010602 t1 = F->getRegInfo().createVirtualRegister(RC);
10603 t2 = F->getRegInfo().createVirtualRegister(RC);
10604 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10605 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010606 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010607 t1 = dest1Oper.getReg();
10608 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010609 }
10610
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010611 int valArgIndx = lastAddrIndx + 1;
10612 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010613 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010614 "invalid operand");
10615 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10616 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010617 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010618 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010619 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010620 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010621 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010622 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010623 (*MIB).addOperand(*argOpers[valArgIndx]);
10624 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010625 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010626 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010627 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010628 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010629 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010630 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010631 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010632 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010633 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010634 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010635
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010636 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010637 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010638 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010639 MIB.addReg(t2);
10640
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010641 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010642 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010643 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010644 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010645
Dale Johannesene4d209d2009-02-03 20:21:25 +000010646 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010647 for (int i=0; i <= lastAddrIndx; ++i)
10648 (*MIB).addOperand(*argOpers[i]);
10649
10650 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010651 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10652 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010653
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010654 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010655 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010656 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010657 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010658
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010659 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010660 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010661
Dan Gohman14152b42010-07-06 20:24:04 +000010662 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010663 return nextMBB;
10664}
10665
10666// private utility function
10667MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010668X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10669 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010670 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010671 // For the atomic min/max operator, we generate
10672 // thisMBB:
10673 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010674 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010675 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010676 // cmp t1, t2
10677 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010678 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010679 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10680 // bz newMBB
10681 // fallthrough -->nextMBB
10682 //
10683 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10684 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010685 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010686 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010687
Mon P Wang63307c32008-05-05 19:05:59 +000010688 /// First build the CFG
10689 MachineFunction *F = MBB->getParent();
10690 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010691 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10692 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10693 F->insert(MBBIter, newMBB);
10694 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010695
Dan Gohman14152b42010-07-06 20:24:04 +000010696 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10697 nextMBB->splice(nextMBB->begin(), thisMBB,
10698 llvm::next(MachineBasicBlock::iterator(mInstr)),
10699 thisMBB->end());
10700 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010701
Mon P Wang63307c32008-05-05 19:05:59 +000010702 // Update thisMBB to fall through to newMBB
10703 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010704
Mon P Wang63307c32008-05-05 19:05:59 +000010705 // newMBB jumps to newMBB and fall through to nextMBB
10706 newMBB->addSuccessor(nextMBB);
10707 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010708
Dale Johannesene4d209d2009-02-03 20:21:25 +000010709 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010710 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010711 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010712 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010713 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010714 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010715 int numArgs = mInstr->getNumOperands() - 1;
10716 for (int i=0; i < numArgs; ++i)
10717 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010718
Mon P Wang63307c32008-05-05 19:05:59 +000010719 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010720 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010721 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010722
Mon P Wangab3e7472008-05-05 22:56:23 +000010723 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010724 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010725 for (int i=0; i <= lastAddrIndx; ++i)
10726 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010727
Mon P Wang63307c32008-05-05 19:05:59 +000010728 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010729 assert((argOpers[valArgIndx]->isReg() ||
10730 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010731 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010732
10733 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010734 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010735 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010736 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010737 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010738 (*MIB).addOperand(*argOpers[valArgIndx]);
10739
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010740 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010741 MIB.addReg(t1);
10742
Dale Johannesene4d209d2009-02-03 20:21:25 +000010743 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010744 MIB.addReg(t1);
10745 MIB.addReg(t2);
10746
10747 // Generate movc
10748 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010749 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010750 MIB.addReg(t2);
10751 MIB.addReg(t1);
10752
10753 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010754 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010755 for (int i=0; i <= lastAddrIndx; ++i)
10756 (*MIB).addOperand(*argOpers[i]);
10757 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010758 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010759 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10760 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010761
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010762 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010763 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010764
Mon P Wang63307c32008-05-05 19:05:59 +000010765 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010766 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010767
Dan Gohman14152b42010-07-06 20:24:04 +000010768 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010769 return nextMBB;
10770}
10771
Eric Christopherf83a5de2009-08-27 18:08:16 +000010772// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010773// or XMM0_V32I8 in AVX all of this code can be replaced with that
10774// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010775MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010776X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010777 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010778 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10779 "Target must have SSE4.2 or AVX features enabled");
10780
Eric Christopherb120ab42009-08-18 22:50:32 +000010781 DebugLoc dl = MI->getDebugLoc();
10782 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010783 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010784 if (!Subtarget->hasAVX()) {
10785 if (memArg)
10786 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10787 else
10788 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10789 } else {
10790 if (memArg)
10791 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10792 else
10793 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10794 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010795
Eric Christopher41c902f2010-11-30 08:20:21 +000010796 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010797 for (unsigned i = 0; i < numArgs; ++i) {
10798 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010799 if (!(Op.isReg() && Op.isImplicit()))
10800 MIB.addOperand(Op);
10801 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010802 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010803 .addReg(X86::XMM0);
10804
Dan Gohman14152b42010-07-06 20:24:04 +000010805 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010806 return BB;
10807}
10808
10809MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010810X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010811 DebugLoc dl = MI->getDebugLoc();
10812 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010813
Eric Christopher228232b2010-11-30 07:20:12 +000010814 // Address into RAX/EAX, other two args into ECX, EDX.
10815 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10816 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10817 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10818 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010819 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010820
Eric Christopher228232b2010-11-30 07:20:12 +000010821 unsigned ValOps = X86::AddrNumOperands;
10822 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10823 .addReg(MI->getOperand(ValOps).getReg());
10824 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10825 .addReg(MI->getOperand(ValOps+1).getReg());
10826
10827 // The instruction doesn't actually take any operands though.
10828 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010829
Eric Christopher228232b2010-11-30 07:20:12 +000010830 MI->eraseFromParent(); // The pseudo is gone now.
10831 return BB;
10832}
10833
10834MachineBasicBlock *
10835X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010836 DebugLoc dl = MI->getDebugLoc();
10837 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010838
Eric Christopher228232b2010-11-30 07:20:12 +000010839 // First arg in ECX, the second in EAX.
10840 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10841 .addReg(MI->getOperand(0).getReg());
10842 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10843 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010844
Eric Christopher228232b2010-11-30 07:20:12 +000010845 // The instruction doesn't actually take any operands though.
10846 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010847
Eric Christopher228232b2010-11-30 07:20:12 +000010848 MI->eraseFromParent(); // The pseudo is gone now.
10849 return BB;
10850}
10851
10852MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010853X86TargetLowering::EmitVAARG64WithCustomInserter(
10854 MachineInstr *MI,
10855 MachineBasicBlock *MBB) const {
10856 // Emit va_arg instruction on X86-64.
10857
10858 // Operands to this pseudo-instruction:
10859 // 0 ) Output : destination address (reg)
10860 // 1-5) Input : va_list address (addr, i64mem)
10861 // 6 ) ArgSize : Size (in bytes) of vararg type
10862 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10863 // 8 ) Align : Alignment of type
10864 // 9 ) EFLAGS (implicit-def)
10865
10866 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10867 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10868
10869 unsigned DestReg = MI->getOperand(0).getReg();
10870 MachineOperand &Base = MI->getOperand(1);
10871 MachineOperand &Scale = MI->getOperand(2);
10872 MachineOperand &Index = MI->getOperand(3);
10873 MachineOperand &Disp = MI->getOperand(4);
10874 MachineOperand &Segment = MI->getOperand(5);
10875 unsigned ArgSize = MI->getOperand(6).getImm();
10876 unsigned ArgMode = MI->getOperand(7).getImm();
10877 unsigned Align = MI->getOperand(8).getImm();
10878
10879 // Memory Reference
10880 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10881 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10882 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10883
10884 // Machine Information
10885 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10886 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10887 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10888 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10889 DebugLoc DL = MI->getDebugLoc();
10890
10891 // struct va_list {
10892 // i32 gp_offset
10893 // i32 fp_offset
10894 // i64 overflow_area (address)
10895 // i64 reg_save_area (address)
10896 // }
10897 // sizeof(va_list) = 24
10898 // alignment(va_list) = 8
10899
10900 unsigned TotalNumIntRegs = 6;
10901 unsigned TotalNumXMMRegs = 8;
10902 bool UseGPOffset = (ArgMode == 1);
10903 bool UseFPOffset = (ArgMode == 2);
10904 unsigned MaxOffset = TotalNumIntRegs * 8 +
10905 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10906
10907 /* Align ArgSize to a multiple of 8 */
10908 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10909 bool NeedsAlign = (Align > 8);
10910
10911 MachineBasicBlock *thisMBB = MBB;
10912 MachineBasicBlock *overflowMBB;
10913 MachineBasicBlock *offsetMBB;
10914 MachineBasicBlock *endMBB;
10915
10916 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10917 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10918 unsigned OffsetReg = 0;
10919
10920 if (!UseGPOffset && !UseFPOffset) {
10921 // If we only pull from the overflow region, we don't create a branch.
10922 // We don't need to alter control flow.
10923 OffsetDestReg = 0; // unused
10924 OverflowDestReg = DestReg;
10925
10926 offsetMBB = NULL;
10927 overflowMBB = thisMBB;
10928 endMBB = thisMBB;
10929 } else {
10930 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10931 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10932 // If not, pull from overflow_area. (branch to overflowMBB)
10933 //
10934 // thisMBB
10935 // | .
10936 // | .
10937 // offsetMBB overflowMBB
10938 // | .
10939 // | .
10940 // endMBB
10941
10942 // Registers for the PHI in endMBB
10943 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10944 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10945
10946 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10947 MachineFunction *MF = MBB->getParent();
10948 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10949 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10950 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10951
10952 MachineFunction::iterator MBBIter = MBB;
10953 ++MBBIter;
10954
10955 // Insert the new basic blocks
10956 MF->insert(MBBIter, offsetMBB);
10957 MF->insert(MBBIter, overflowMBB);
10958 MF->insert(MBBIter, endMBB);
10959
10960 // Transfer the remainder of MBB and its successor edges to endMBB.
10961 endMBB->splice(endMBB->begin(), thisMBB,
10962 llvm::next(MachineBasicBlock::iterator(MI)),
10963 thisMBB->end());
10964 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10965
10966 // Make offsetMBB and overflowMBB successors of thisMBB
10967 thisMBB->addSuccessor(offsetMBB);
10968 thisMBB->addSuccessor(overflowMBB);
10969
10970 // endMBB is a successor of both offsetMBB and overflowMBB
10971 offsetMBB->addSuccessor(endMBB);
10972 overflowMBB->addSuccessor(endMBB);
10973
10974 // Load the offset value into a register
10975 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10976 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10977 .addOperand(Base)
10978 .addOperand(Scale)
10979 .addOperand(Index)
10980 .addDisp(Disp, UseFPOffset ? 4 : 0)
10981 .addOperand(Segment)
10982 .setMemRefs(MMOBegin, MMOEnd);
10983
10984 // Check if there is enough room left to pull this argument.
10985 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10986 .addReg(OffsetReg)
10987 .addImm(MaxOffset + 8 - ArgSizeA8);
10988
10989 // Branch to "overflowMBB" if offset >= max
10990 // Fall through to "offsetMBB" otherwise
10991 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10992 .addMBB(overflowMBB);
10993 }
10994
10995 // In offsetMBB, emit code to use the reg_save_area.
10996 if (offsetMBB) {
10997 assert(OffsetReg != 0);
10998
10999 // Read the reg_save_area address.
11000 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
11001 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
11002 .addOperand(Base)
11003 .addOperand(Scale)
11004 .addOperand(Index)
11005 .addDisp(Disp, 16)
11006 .addOperand(Segment)
11007 .setMemRefs(MMOBegin, MMOEnd);
11008
11009 // Zero-extend the offset
11010 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
11011 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
11012 .addImm(0)
11013 .addReg(OffsetReg)
11014 .addImm(X86::sub_32bit);
11015
11016 // Add the offset to the reg_save_area to get the final address.
11017 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
11018 .addReg(OffsetReg64)
11019 .addReg(RegSaveReg);
11020
11021 // Compute the offset for the next argument
11022 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11023 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
11024 .addReg(OffsetReg)
11025 .addImm(UseFPOffset ? 16 : 8);
11026
11027 // Store it back into the va_list.
11028 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
11029 .addOperand(Base)
11030 .addOperand(Scale)
11031 .addOperand(Index)
11032 .addDisp(Disp, UseFPOffset ? 4 : 0)
11033 .addOperand(Segment)
11034 .addReg(NextOffsetReg)
11035 .setMemRefs(MMOBegin, MMOEnd);
11036
11037 // Jump to endMBB
11038 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
11039 .addMBB(endMBB);
11040 }
11041
11042 //
11043 // Emit code to use overflow area
11044 //
11045
11046 // Load the overflow_area address into a register.
11047 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
11048 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
11049 .addOperand(Base)
11050 .addOperand(Scale)
11051 .addOperand(Index)
11052 .addDisp(Disp, 8)
11053 .addOperand(Segment)
11054 .setMemRefs(MMOBegin, MMOEnd);
11055
11056 // If we need to align it, do so. Otherwise, just copy the address
11057 // to OverflowDestReg.
11058 if (NeedsAlign) {
11059 // Align the overflow address
11060 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
11061 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
11062
11063 // aligned_addr = (addr + (align-1)) & ~(align-1)
11064 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
11065 .addReg(OverflowAddrReg)
11066 .addImm(Align-1);
11067
11068 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
11069 .addReg(TmpReg)
11070 .addImm(~(uint64_t)(Align-1));
11071 } else {
11072 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
11073 .addReg(OverflowAddrReg);
11074 }
11075
11076 // Compute the next overflow address after this argument.
11077 // (the overflow address should be kept 8-byte aligned)
11078 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
11079 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
11080 .addReg(OverflowDestReg)
11081 .addImm(ArgSizeA8);
11082
11083 // Store the new overflow address.
11084 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
11085 .addOperand(Base)
11086 .addOperand(Scale)
11087 .addOperand(Index)
11088 .addDisp(Disp, 8)
11089 .addOperand(Segment)
11090 .addReg(NextAddrReg)
11091 .setMemRefs(MMOBegin, MMOEnd);
11092
11093 // If we branched, emit the PHI to the front of endMBB.
11094 if (offsetMBB) {
11095 BuildMI(*endMBB, endMBB->begin(), DL,
11096 TII->get(X86::PHI), DestReg)
11097 .addReg(OffsetDestReg).addMBB(offsetMBB)
11098 .addReg(OverflowDestReg).addMBB(overflowMBB);
11099 }
11100
11101 // Erase the pseudo instruction
11102 MI->eraseFromParent();
11103
11104 return endMBB;
11105}
11106
11107MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000011108X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
11109 MachineInstr *MI,
11110 MachineBasicBlock *MBB) const {
11111 // Emit code to save XMM registers to the stack. The ABI says that the
11112 // number of registers to save is given in %al, so it's theoretically
11113 // possible to do an indirect jump trick to avoid saving all of them,
11114 // however this code takes a simpler approach and just executes all
11115 // of the stores if %al is non-zero. It's less code, and it's probably
11116 // easier on the hardware branch predictor, and stores aren't all that
11117 // expensive anyway.
11118
11119 // Create the new basic blocks. One block contains all the XMM stores,
11120 // and one block is the final destination regardless of whether any
11121 // stores were performed.
11122 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11123 MachineFunction *F = MBB->getParent();
11124 MachineFunction::iterator MBBIter = MBB;
11125 ++MBBIter;
11126 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
11127 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
11128 F->insert(MBBIter, XMMSaveMBB);
11129 F->insert(MBBIter, EndMBB);
11130
Dan Gohman14152b42010-07-06 20:24:04 +000011131 // Transfer the remainder of MBB and its successor edges to EndMBB.
11132 EndMBB->splice(EndMBB->begin(), MBB,
11133 llvm::next(MachineBasicBlock::iterator(MI)),
11134 MBB->end());
11135 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
11136
Dan Gohmand6708ea2009-08-15 01:38:56 +000011137 // The original block will now fall through to the XMM save block.
11138 MBB->addSuccessor(XMMSaveMBB);
11139 // The XMMSaveMBB will fall through to the end block.
11140 XMMSaveMBB->addSuccessor(EndMBB);
11141
11142 // Now add the instructions.
11143 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11144 DebugLoc DL = MI->getDebugLoc();
11145
11146 unsigned CountReg = MI->getOperand(0).getReg();
11147 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
11148 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
11149
11150 if (!Subtarget->isTargetWin64()) {
11151 // If %al is 0, branch around the XMM save block.
11152 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011153 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011154 MBB->addSuccessor(EndMBB);
11155 }
11156
11157 // In the XMM save block, save all the XMM argument registers.
11158 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
11159 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000011160 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000011161 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000011162 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000011163 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000011164 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011165 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
11166 .addFrameIndex(RegSaveFrameIndex)
11167 .addImm(/*Scale=*/1)
11168 .addReg(/*IndexReg=*/0)
11169 .addImm(/*Disp=*/Offset)
11170 .addReg(/*Segment=*/0)
11171 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000011172 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011173 }
11174
Dan Gohman14152b42010-07-06 20:24:04 +000011175 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011176
11177 return EndMBB;
11178}
Mon P Wang63307c32008-05-05 19:05:59 +000011179
Evan Cheng60c07e12006-07-05 22:17:51 +000011180MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000011181X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011182 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000011183 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11184 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000011185
Chris Lattner52600972009-09-02 05:57:00 +000011186 // To "insert" a SELECT_CC instruction, we actually have to insert the
11187 // diamond control-flow pattern. The incoming instruction knows the
11188 // destination vreg to set, the condition code register to branch on, the
11189 // true/false values to select between, and a branch opcode to use.
11190 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11191 MachineFunction::iterator It = BB;
11192 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000011193
Chris Lattner52600972009-09-02 05:57:00 +000011194 // thisMBB:
11195 // ...
11196 // TrueVal = ...
11197 // cmpTY ccX, r1, r2
11198 // bCC copy1MBB
11199 // fallthrough --> copy0MBB
11200 MachineBasicBlock *thisMBB = BB;
11201 MachineFunction *F = BB->getParent();
11202 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
11203 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000011204 F->insert(It, copy0MBB);
11205 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000011206
Bill Wendling730c07e2010-06-25 20:48:10 +000011207 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11208 // live into the sink and copy blocks.
11209 const MachineFunction *MF = BB->getParent();
11210 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
11211 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000011212
Dan Gohman14152b42010-07-06 20:24:04 +000011213 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
11214 const MachineOperand &MO = MI->getOperand(I);
11215 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000011216 unsigned Reg = MO.getReg();
11217 if (Reg != X86::EFLAGS) continue;
11218 copy0MBB->addLiveIn(Reg);
11219 sinkMBB->addLiveIn(Reg);
11220 }
11221
Dan Gohman14152b42010-07-06 20:24:04 +000011222 // Transfer the remainder of BB and its successor edges to sinkMBB.
11223 sinkMBB->splice(sinkMBB->begin(), BB,
11224 llvm::next(MachineBasicBlock::iterator(MI)),
11225 BB->end());
11226 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11227
11228 // Add the true and fallthrough blocks as its successors.
11229 BB->addSuccessor(copy0MBB);
11230 BB->addSuccessor(sinkMBB);
11231
11232 // Create the conditional branch instruction.
11233 unsigned Opc =
11234 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11235 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11236
Chris Lattner52600972009-09-02 05:57:00 +000011237 // copy0MBB:
11238 // %FalseValue = ...
11239 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011240 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011241
Chris Lattner52600972009-09-02 05:57:00 +000011242 // sinkMBB:
11243 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11244 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011245 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11246 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011247 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11248 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11249
Dan Gohman14152b42010-07-06 20:24:04 +000011250 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011251 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011252}
11253
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011254MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011255X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011256 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011257 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11258 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011259
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011260 assert(!Subtarget->isTargetEnvMacho());
11261
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011262 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11263 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011264
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011265 if (Subtarget->isTargetWin64()) {
11266 if (Subtarget->isTargetCygMing()) {
11267 // ___chkstk(Mingw64):
11268 // Clobbers R10, R11, RAX and EFLAGS.
11269 // Updates RSP.
11270 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11271 .addExternalSymbol("___chkstk")
11272 .addReg(X86::RAX, RegState::Implicit)
11273 .addReg(X86::RSP, RegState::Implicit)
11274 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11275 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11276 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11277 } else {
11278 // __chkstk(MSVCRT): does not update stack pointer.
11279 // Clobbers R10, R11 and EFLAGS.
11280 // FIXME: RAX(allocated size) might be reused and not killed.
11281 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11282 .addExternalSymbol("__chkstk")
11283 .addReg(X86::RAX, RegState::Implicit)
11284 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11285 // RAX has the offset to subtracted from RSP.
11286 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11287 .addReg(X86::RSP)
11288 .addReg(X86::RAX);
11289 }
11290 } else {
11291 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011292 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11293
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011294 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11295 .addExternalSymbol(StackProbeSymbol)
11296 .addReg(X86::EAX, RegState::Implicit)
11297 .addReg(X86::ESP, RegState::Implicit)
11298 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11299 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11300 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11301 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011302
Dan Gohman14152b42010-07-06 20:24:04 +000011303 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011304 return BB;
11305}
Chris Lattner52600972009-09-02 05:57:00 +000011306
11307MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011308X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11309 MachineBasicBlock *BB) const {
11310 // This is pretty easy. We're taking the value that we received from
11311 // our load from the relocation, sticking it in either RDI (x86-64)
11312 // or EAX and doing an indirect call. The return value will then
11313 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011314 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011315 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011316 DebugLoc DL = MI->getDebugLoc();
11317 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011318
11319 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011320 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011321
Eric Christopher30ef0e52010-06-03 04:07:48 +000011322 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011323 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11324 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011325 .addReg(X86::RIP)
11326 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011327 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011328 MI->getOperand(3).getTargetFlags())
11329 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011330 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011331 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011332 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011333 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11334 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011335 .addReg(0)
11336 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011337 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011338 MI->getOperand(3).getTargetFlags())
11339 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011340 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011341 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011342 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011343 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11344 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011345 .addReg(TII->getGlobalBaseReg(F))
11346 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011347 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011348 MI->getOperand(3).getTargetFlags())
11349 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011350 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011351 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011352 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011353
Dan Gohman14152b42010-07-06 20:24:04 +000011354 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011355 return BB;
11356}
11357
11358MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011359X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011360 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011361 switch (MI->getOpcode()) {
11362 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011363 case X86::TAILJMPd64:
11364 case X86::TAILJMPr64:
11365 case X86::TAILJMPm64:
11366 assert(!"TAILJMP64 would not be touched here.");
11367 case X86::TCRETURNdi64:
11368 case X86::TCRETURNri64:
11369 case X86::TCRETURNmi64:
11370 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11371 // On AMD64, additional defs should be added before register allocation.
11372 if (!Subtarget->isTargetWin64()) {
11373 MI->addRegisterDefined(X86::RSI);
11374 MI->addRegisterDefined(X86::RDI);
11375 MI->addRegisterDefined(X86::XMM6);
11376 MI->addRegisterDefined(X86::XMM7);
11377 MI->addRegisterDefined(X86::XMM8);
11378 MI->addRegisterDefined(X86::XMM9);
11379 MI->addRegisterDefined(X86::XMM10);
11380 MI->addRegisterDefined(X86::XMM11);
11381 MI->addRegisterDefined(X86::XMM12);
11382 MI->addRegisterDefined(X86::XMM13);
11383 MI->addRegisterDefined(X86::XMM14);
11384 MI->addRegisterDefined(X86::XMM15);
11385 }
11386 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011387 case X86::WIN_ALLOCA:
11388 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011389 case X86::TLSCall_32:
11390 case X86::TLSCall_64:
11391 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011392 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011393 case X86::CMOV_FR32:
11394 case X86::CMOV_FR64:
11395 case X86::CMOV_V4F32:
11396 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011397 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000011398 case X86::CMOV_V8F32:
11399 case X86::CMOV_V4F64:
11400 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011401 case X86::CMOV_GR16:
11402 case X86::CMOV_GR32:
11403 case X86::CMOV_RFP32:
11404 case X86::CMOV_RFP64:
11405 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011406 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011407
Dale Johannesen849f2142007-07-03 00:53:03 +000011408 case X86::FP32_TO_INT16_IN_MEM:
11409 case X86::FP32_TO_INT32_IN_MEM:
11410 case X86::FP32_TO_INT64_IN_MEM:
11411 case X86::FP64_TO_INT16_IN_MEM:
11412 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011413 case X86::FP64_TO_INT64_IN_MEM:
11414 case X86::FP80_TO_INT16_IN_MEM:
11415 case X86::FP80_TO_INT32_IN_MEM:
11416 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011417 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11418 DebugLoc DL = MI->getDebugLoc();
11419
Evan Cheng60c07e12006-07-05 22:17:51 +000011420 // Change the floating point control register to use "round towards zero"
11421 // mode when truncating to an integer value.
11422 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011423 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011424 addFrameReference(BuildMI(*BB, MI, DL,
11425 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011426
11427 // Load the old value of the high byte of the control word...
11428 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011429 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011430 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011431 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011432
11433 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011434 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011435 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011436
11437 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011438 addFrameReference(BuildMI(*BB, MI, DL,
11439 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011440
11441 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011442 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011443 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011444
11445 // Get the X86 opcode to use.
11446 unsigned Opc;
11447 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011448 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011449 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11450 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11451 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11452 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11453 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11454 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011455 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11456 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11457 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011458 }
11459
11460 X86AddressMode AM;
11461 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011462 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011463 AM.BaseType = X86AddressMode::RegBase;
11464 AM.Base.Reg = Op.getReg();
11465 } else {
11466 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011467 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011468 }
11469 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011470 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011471 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011472 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011473 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011474 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011475 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011476 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011477 AM.GV = Op.getGlobal();
11478 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011479 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011480 }
Dan Gohman14152b42010-07-06 20:24:04 +000011481 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011482 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011483
11484 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011485 addFrameReference(BuildMI(*BB, MI, DL,
11486 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011487
Dan Gohman14152b42010-07-06 20:24:04 +000011488 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011489 return BB;
11490 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011491 // String/text processing lowering.
11492 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011493 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011494 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11495 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011496 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011497 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11498 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011499 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011500 return EmitPCMP(MI, BB, 5, false /* in mem */);
11501 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011502 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011503 return EmitPCMP(MI, BB, 5, true /* in mem */);
11504
Eric Christopher228232b2010-11-30 07:20:12 +000011505 // Thread synchronization.
11506 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011507 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011508 case X86::MWAIT:
11509 return EmitMwait(MI, BB);
11510
Eric Christopherb120ab42009-08-18 22:50:32 +000011511 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011512 case X86::ATOMAND32:
11513 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011514 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011515 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011516 X86::NOT32r, X86::EAX,
11517 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011518 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011519 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11520 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011521 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011522 X86::NOT32r, X86::EAX,
11523 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011524 case X86::ATOMXOR32:
11525 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011526 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011527 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011528 X86::NOT32r, X86::EAX,
11529 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011530 case X86::ATOMNAND32:
11531 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011532 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011533 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011534 X86::NOT32r, X86::EAX,
11535 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011536 case X86::ATOMMIN32:
11537 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11538 case X86::ATOMMAX32:
11539 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11540 case X86::ATOMUMIN32:
11541 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11542 case X86::ATOMUMAX32:
11543 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011544
11545 case X86::ATOMAND16:
11546 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11547 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011548 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011549 X86::NOT16r, X86::AX,
11550 X86::GR16RegisterClass);
11551 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011552 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011553 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011554 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011555 X86::NOT16r, X86::AX,
11556 X86::GR16RegisterClass);
11557 case X86::ATOMXOR16:
11558 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11559 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011560 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011561 X86::NOT16r, X86::AX,
11562 X86::GR16RegisterClass);
11563 case X86::ATOMNAND16:
11564 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11565 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011566 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011567 X86::NOT16r, X86::AX,
11568 X86::GR16RegisterClass, true);
11569 case X86::ATOMMIN16:
11570 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11571 case X86::ATOMMAX16:
11572 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11573 case X86::ATOMUMIN16:
11574 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11575 case X86::ATOMUMAX16:
11576 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11577
11578 case X86::ATOMAND8:
11579 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11580 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011581 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011582 X86::NOT8r, X86::AL,
11583 X86::GR8RegisterClass);
11584 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011585 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011586 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011587 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011588 X86::NOT8r, X86::AL,
11589 X86::GR8RegisterClass);
11590 case X86::ATOMXOR8:
11591 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11592 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011593 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011594 X86::NOT8r, X86::AL,
11595 X86::GR8RegisterClass);
11596 case X86::ATOMNAND8:
11597 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11598 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011599 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011600 X86::NOT8r, X86::AL,
11601 X86::GR8RegisterClass, true);
11602 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011603 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011604 case X86::ATOMAND64:
11605 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011606 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011607 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011608 X86::NOT64r, X86::RAX,
11609 X86::GR64RegisterClass);
11610 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011611 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11612 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011613 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011614 X86::NOT64r, X86::RAX,
11615 X86::GR64RegisterClass);
11616 case X86::ATOMXOR64:
11617 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011618 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011619 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011620 X86::NOT64r, X86::RAX,
11621 X86::GR64RegisterClass);
11622 case X86::ATOMNAND64:
11623 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11624 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011625 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011626 X86::NOT64r, X86::RAX,
11627 X86::GR64RegisterClass, true);
11628 case X86::ATOMMIN64:
11629 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11630 case X86::ATOMMAX64:
11631 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11632 case X86::ATOMUMIN64:
11633 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11634 case X86::ATOMUMAX64:
11635 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011636
11637 // This group does 64-bit operations on a 32-bit host.
11638 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011639 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011640 X86::AND32rr, X86::AND32rr,
11641 X86::AND32ri, X86::AND32ri,
11642 false);
11643 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011644 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011645 X86::OR32rr, X86::OR32rr,
11646 X86::OR32ri, X86::OR32ri,
11647 false);
11648 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011649 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011650 X86::XOR32rr, X86::XOR32rr,
11651 X86::XOR32ri, X86::XOR32ri,
11652 false);
11653 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011654 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011655 X86::AND32rr, X86::AND32rr,
11656 X86::AND32ri, X86::AND32ri,
11657 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011658 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011659 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011660 X86::ADD32rr, X86::ADC32rr,
11661 X86::ADD32ri, X86::ADC32ri,
11662 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011663 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011664 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011665 X86::SUB32rr, X86::SBB32rr,
11666 X86::SUB32ri, X86::SBB32ri,
11667 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011668 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011669 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011670 X86::MOV32rr, X86::MOV32rr,
11671 X86::MOV32ri, X86::MOV32ri,
11672 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011673 case X86::VASTART_SAVE_XMM_REGS:
11674 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011675
11676 case X86::VAARG_64:
11677 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011678 }
11679}
11680
11681//===----------------------------------------------------------------------===//
11682// X86 Optimization Hooks
11683//===----------------------------------------------------------------------===//
11684
Dan Gohman475871a2008-07-27 21:46:04 +000011685void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011686 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011687 APInt &KnownZero,
11688 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011689 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011690 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011691 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011692 assert((Opc >= ISD::BUILTIN_OP_END ||
11693 Opc == ISD::INTRINSIC_WO_CHAIN ||
11694 Opc == ISD::INTRINSIC_W_CHAIN ||
11695 Opc == ISD::INTRINSIC_VOID) &&
11696 "Should use MaskedValueIsZero if you don't know whether Op"
11697 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011698
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011699 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011700 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011701 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011702 case X86ISD::ADD:
11703 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011704 case X86ISD::ADC:
11705 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011706 case X86ISD::SMUL:
11707 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011708 case X86ISD::INC:
11709 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011710 case X86ISD::OR:
11711 case X86ISD::XOR:
11712 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011713 // These nodes' second result is a boolean.
11714 if (Op.getResNo() == 0)
11715 break;
11716 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011717 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011718 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11719 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011720 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011721 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011722}
Chris Lattner259e97c2006-01-31 19:43:35 +000011723
Owen Andersonbc146b02010-09-21 20:42:50 +000011724unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11725 unsigned Depth) const {
11726 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11727 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11728 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011729
Owen Andersonbc146b02010-09-21 20:42:50 +000011730 // Fallback case.
11731 return 1;
11732}
11733
Evan Cheng206ee9d2006-07-07 08:33:52 +000011734/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011735/// node is a GlobalAddress + offset.
11736bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011737 const GlobalValue* &GA,
11738 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011739 if (N->getOpcode() == X86ISD::Wrapper) {
11740 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011741 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011742 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011743 return true;
11744 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011745 }
Evan Chengad4196b2008-05-12 19:56:52 +000011746 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011747}
11748
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011749/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
11750/// same as extracting the high 128-bit part of 256-bit vector and then
11751/// inserting the result into the low part of a new 256-bit vector
11752static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
11753 EVT VT = SVOp->getValueType(0);
11754 int NumElems = VT.getVectorNumElements();
11755
11756 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
11757 for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
11758 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
11759 SVOp->getMaskElt(j) >= 0)
11760 return false;
11761
11762 return true;
11763}
11764
11765/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
11766/// same as extracting the low 128-bit part of 256-bit vector and then
11767/// inserting the result into the high part of a new 256-bit vector
11768static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
11769 EVT VT = SVOp->getValueType(0);
11770 int NumElems = VT.getVectorNumElements();
11771
11772 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
11773 for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
11774 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
11775 SVOp->getMaskElt(j) >= 0)
11776 return false;
11777
11778 return true;
11779}
11780
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011781/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11782static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11783 TargetLowering::DAGCombinerInfo &DCI) {
11784 DebugLoc dl = N->getDebugLoc();
11785 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11786 SDValue V1 = SVOp->getOperand(0);
11787 SDValue V2 = SVOp->getOperand(1);
11788 EVT VT = SVOp->getValueType(0);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011789 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011790
11791 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11792 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11793 //
11794 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011795 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011796 // V UNDEF BUILD_VECTOR UNDEF
11797 // \ / \ /
11798 // CONCAT_VECTOR CONCAT_VECTOR
11799 // \ /
11800 // \ /
11801 // RESULT: V + zero extended
11802 //
11803 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11804 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11805 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11806 return SDValue();
11807
11808 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11809 return SDValue();
11810
11811 // To match the shuffle mask, the first half of the mask should
11812 // be exactly the first vector, and all the rest a splat with the
11813 // first element of the second one.
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011814 for (int i = 0; i < NumElems/2; ++i)
11815 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11816 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11817 return SDValue();
11818
11819 // Emit a zeroed vector and insert the desired subvector on its
11820 // first half.
11821 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11822 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11823 DAG.getConstant(0, MVT::i32), DAG, dl);
11824 return DCI.CombineTo(N, InsV);
11825 }
11826
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011827 //===--------------------------------------------------------------------===//
11828 // Combine some shuffles into subvector extracts and inserts:
11829 //
11830
11831 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
11832 if (isShuffleHigh128VectorInsertLow(SVOp)) {
11833 SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
11834 DAG, dl);
11835 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
11836 V, DAG.getConstant(0, MVT::i32), DAG, dl);
11837 return DCI.CombineTo(N, InsV);
11838 }
11839
11840 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
11841 if (isShuffleLow128VectorInsertHigh(SVOp)) {
11842 SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
11843 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
11844 V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
11845 return DCI.CombineTo(N, InsV);
11846 }
11847
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011848 return SDValue();
11849}
11850
11851/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011852static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000011853 TargetLowering::DAGCombinerInfo &DCI,
11854 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011855 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011856 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011857
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011858 // Don't create instructions with illegal types after legalize types has run.
11859 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11860 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11861 return SDValue();
11862
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000011863 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
11864 if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
11865 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011866 return PerformShuffleCombine256(N, DAG, DCI);
11867
11868 // Only handle 128 wide vector from here on.
11869 if (VT.getSizeInBits() != 128)
11870 return SDValue();
11871
11872 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11873 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11874 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011875 SmallVector<SDValue, 16> Elts;
11876 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011877 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011878
Nate Begemanfdea31a2010-03-24 20:49:50 +000011879 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011880}
Evan Chengd880b972008-05-09 21:53:03 +000011881
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011882/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11883/// generation and convert it from being a bunch of shuffles and extracts
11884/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011885static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11886 const TargetLowering &TLI) {
11887 SDValue InputVector = N->getOperand(0);
11888
11889 // Only operate on vectors of 4 elements, where the alternative shuffling
11890 // gets to be more expensive.
11891 if (InputVector.getValueType() != MVT::v4i32)
11892 return SDValue();
11893
11894 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11895 // single use which is a sign-extend or zero-extend, and all elements are
11896 // used.
11897 SmallVector<SDNode *, 4> Uses;
11898 unsigned ExtractedElements = 0;
11899 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11900 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11901 if (UI.getUse().getResNo() != InputVector.getResNo())
11902 return SDValue();
11903
11904 SDNode *Extract = *UI;
11905 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11906 return SDValue();
11907
11908 if (Extract->getValueType(0) != MVT::i32)
11909 return SDValue();
11910 if (!Extract->hasOneUse())
11911 return SDValue();
11912 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11913 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11914 return SDValue();
11915 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11916 return SDValue();
11917
11918 // Record which element was extracted.
11919 ExtractedElements |=
11920 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11921
11922 Uses.push_back(Extract);
11923 }
11924
11925 // If not all the elements were used, this may not be worthwhile.
11926 if (ExtractedElements != 15)
11927 return SDValue();
11928
11929 // Ok, we've now decided to do the transformation.
11930 DebugLoc dl = InputVector.getDebugLoc();
11931
11932 // Store the value to a temporary stack slot.
11933 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011934 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11935 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011936
11937 // Replace each use (extract) with a load of the appropriate element.
11938 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11939 UE = Uses.end(); UI != UE; ++UI) {
11940 SDNode *Extract = *UI;
11941
Nadav Rotem86694292011-05-17 08:31:57 +000011942 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011943 SDValue Idx = Extract->getOperand(1);
11944 unsigned EltSize =
11945 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11946 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11947 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11948
Nadav Rotem86694292011-05-17 08:31:57 +000011949 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011950 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011951
11952 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011953 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011954 ScalarAddr, MachinePointerInfo(),
11955 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011956
11957 // Replace the exact with the load.
11958 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11959 }
11960
11961 // The replacement was made in place; don't return anything.
11962 return SDValue();
11963}
11964
Chris Lattner83e6c992006-10-04 06:57:07 +000011965/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011966static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011967 const X86Subtarget *Subtarget) {
11968 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011969 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011970 // Get the LHS/RHS of the select.
11971 SDValue LHS = N->getOperand(1);
11972 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011973
Dan Gohman670e5392009-09-21 18:03:22 +000011974 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011975 // instructions match the semantics of the common C idiom x<y?x:y but not
11976 // x<=y?x:y, because of how they handle negative zero (which can be
11977 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011978 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011979 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011980 Cond.getOpcode() == ISD::SETCC) {
11981 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011982
Chris Lattner47b4ce82009-03-11 05:48:52 +000011983 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011984 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011985 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11986 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011987 switch (CC) {
11988 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011989 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011990 // Converting this to a min would handle NaNs incorrectly, and swapping
11991 // the operands would cause it to handle comparisons between positive
11992 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011993 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011994 if (!UnsafeFPMath &&
11995 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11996 break;
11997 std::swap(LHS, RHS);
11998 }
Dan Gohman670e5392009-09-21 18:03:22 +000011999 Opcode = X86ISD::FMIN;
12000 break;
12001 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012002 // Converting this to a min would handle comparisons between positive
12003 // and negative zero incorrectly.
12004 if (!UnsafeFPMath &&
12005 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
12006 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012007 Opcode = X86ISD::FMIN;
12008 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012009 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012010 // Converting this to a min would handle both negative zeros and NaNs
12011 // incorrectly, but we can swap the operands to fix both.
12012 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012013 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012014 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012015 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012016 Opcode = X86ISD::FMIN;
12017 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012018
Dan Gohman670e5392009-09-21 18:03:22 +000012019 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012020 // Converting this to a max would handle comparisons between positive
12021 // and negative zero incorrectly.
12022 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000012023 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012024 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012025 Opcode = X86ISD::FMAX;
12026 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012027 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012028 // Converting this to a max would handle NaNs incorrectly, and swapping
12029 // the operands would cause it to handle comparisons between positive
12030 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012031 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012032 if (!UnsafeFPMath &&
12033 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12034 break;
12035 std::swap(LHS, RHS);
12036 }
Dan Gohman670e5392009-09-21 18:03:22 +000012037 Opcode = X86ISD::FMAX;
12038 break;
12039 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012040 // Converting this to a max would handle both negative zeros and NaNs
12041 // incorrectly, but we can swap the operands to fix both.
12042 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012043 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012044 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012045 case ISD::SETGE:
12046 Opcode = X86ISD::FMAX;
12047 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000012048 }
Dan Gohman670e5392009-09-21 18:03:22 +000012049 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000012050 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
12051 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012052 switch (CC) {
12053 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012054 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012055 // Converting this to a min would handle comparisons between positive
12056 // and negative zero incorrectly, and swapping the operands would
12057 // cause it to handle NaNs incorrectly.
12058 if (!UnsafeFPMath &&
12059 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000012060 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012061 break;
12062 std::swap(LHS, RHS);
12063 }
Dan Gohman670e5392009-09-21 18:03:22 +000012064 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000012065 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012066 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012067 // Converting this to a min would handle NaNs incorrectly.
12068 if (!UnsafeFPMath &&
12069 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
12070 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012071 Opcode = X86ISD::FMIN;
12072 break;
12073 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012074 // Converting this to a min would handle both negative zeros and NaNs
12075 // incorrectly, but we can swap the operands to fix both.
12076 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012077 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012078 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012079 case ISD::SETGE:
12080 Opcode = X86ISD::FMIN;
12081 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012082
Dan Gohman670e5392009-09-21 18:03:22 +000012083 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012084 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012085 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012086 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012087 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000012088 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012089 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012090 // Converting this to a max would handle comparisons between positive
12091 // and negative zero incorrectly, and swapping the operands would
12092 // cause it to handle NaNs incorrectly.
12093 if (!UnsafeFPMath &&
12094 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000012095 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012096 break;
12097 std::swap(LHS, RHS);
12098 }
Dan Gohman670e5392009-09-21 18:03:22 +000012099 Opcode = X86ISD::FMAX;
12100 break;
12101 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012102 // Converting this to a max would handle both negative zeros and NaNs
12103 // incorrectly, but we can swap the operands to fix both.
12104 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012105 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012106 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012107 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012108 Opcode = X86ISD::FMAX;
12109 break;
12110 }
Chris Lattner83e6c992006-10-04 06:57:07 +000012111 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012112
Chris Lattner47b4ce82009-03-11 05:48:52 +000012113 if (Opcode)
12114 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000012115 }
Eric Christopherfd179292009-08-27 18:07:15 +000012116
Chris Lattnerd1980a52009-03-12 06:52:53 +000012117 // If this is a select between two integer constants, try to do some
12118 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000012119 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
12120 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000012121 // Don't do this for crazy integer types.
12122 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
12123 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000012124 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012125 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000012126
Chris Lattnercee56e72009-03-13 05:53:31 +000012127 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000012128 // Efficiently invertible.
12129 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
12130 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
12131 isa<ConstantSDNode>(Cond.getOperand(1))))) {
12132 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000012133 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012134 }
Eric Christopherfd179292009-08-27 18:07:15 +000012135
Chris Lattnerd1980a52009-03-12 06:52:53 +000012136 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012137 if (FalseC->getAPIntValue() == 0 &&
12138 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012139 if (NeedsCondInvert) // Invert the condition if needed.
12140 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12141 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012142
Chris Lattnerd1980a52009-03-12 06:52:53 +000012143 // Zero extend the condition if needed.
12144 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012145
Chris Lattnercee56e72009-03-13 05:53:31 +000012146 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000012147 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012148 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012149 }
Eric Christopherfd179292009-08-27 18:07:15 +000012150
Chris Lattner97a29a52009-03-13 05:22:11 +000012151 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000012152 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000012153 if (NeedsCondInvert) // Invert the condition if needed.
12154 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12155 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012156
Chris Lattner97a29a52009-03-13 05:22:11 +000012157 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012158 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12159 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012160 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000012161 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000012162 }
Eric Christopherfd179292009-08-27 18:07:15 +000012163
Chris Lattnercee56e72009-03-13 05:53:31 +000012164 // Optimize cases that will turn into an LEA instruction. This requires
12165 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012166 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012167 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012168 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012169
Chris Lattnercee56e72009-03-13 05:53:31 +000012170 bool isFastMultiplier = false;
12171 if (Diff < 10) {
12172 switch ((unsigned char)Diff) {
12173 default: break;
12174 case 1: // result = add base, cond
12175 case 2: // result = lea base( , cond*2)
12176 case 3: // result = lea base(cond, cond*2)
12177 case 4: // result = lea base( , cond*4)
12178 case 5: // result = lea base(cond, cond*4)
12179 case 8: // result = lea base( , cond*8)
12180 case 9: // result = lea base(cond, cond*8)
12181 isFastMultiplier = true;
12182 break;
12183 }
12184 }
Eric Christopherfd179292009-08-27 18:07:15 +000012185
Chris Lattnercee56e72009-03-13 05:53:31 +000012186 if (isFastMultiplier) {
12187 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
12188 if (NeedsCondInvert) // Invert the condition if needed.
12189 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12190 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012191
Chris Lattnercee56e72009-03-13 05:53:31 +000012192 // Zero extend the condition if needed.
12193 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12194 Cond);
12195 // Scale the condition by the difference.
12196 if (Diff != 1)
12197 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12198 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012199
Chris Lattnercee56e72009-03-13 05:53:31 +000012200 // Add the base if non-zero.
12201 if (FalseC->getAPIntValue() != 0)
12202 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12203 SDValue(FalseC, 0));
12204 return Cond;
12205 }
Eric Christopherfd179292009-08-27 18:07:15 +000012206 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012207 }
12208 }
Eric Christopherfd179292009-08-27 18:07:15 +000012209
Dan Gohman475871a2008-07-27 21:46:04 +000012210 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000012211}
12212
Chris Lattnerd1980a52009-03-12 06:52:53 +000012213/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
12214static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
12215 TargetLowering::DAGCombinerInfo &DCI) {
12216 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000012217
Chris Lattnerd1980a52009-03-12 06:52:53 +000012218 // If the flag operand isn't dead, don't touch this CMOV.
12219 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
12220 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000012221
Evan Chengb5a55d92011-05-24 01:48:22 +000012222 SDValue FalseOp = N->getOperand(0);
12223 SDValue TrueOp = N->getOperand(1);
12224 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
12225 SDValue Cond = N->getOperand(3);
12226 if (CC == X86::COND_E || CC == X86::COND_NE) {
12227 switch (Cond.getOpcode()) {
12228 default: break;
12229 case X86ISD::BSR:
12230 case X86ISD::BSF:
12231 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
12232 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
12233 return (CC == X86::COND_E) ? FalseOp : TrueOp;
12234 }
12235 }
12236
Chris Lattnerd1980a52009-03-12 06:52:53 +000012237 // If this is a select between two integer constants, try to do some
12238 // optimizations. Note that the operands are ordered the opposite of SELECT
12239 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000012240 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
12241 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012242 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
12243 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000012244 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
12245 CC = X86::GetOppositeBranchCondition(CC);
12246 std::swap(TrueC, FalseC);
12247 }
Eric Christopherfd179292009-08-27 18:07:15 +000012248
Chris Lattnerd1980a52009-03-12 06:52:53 +000012249 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012250 // This is efficient for any integer data type (including i8/i16) and
12251 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012252 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012253 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12254 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012255
Chris Lattnerd1980a52009-03-12 06:52:53 +000012256 // Zero extend the condition if needed.
12257 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012258
Chris Lattnerd1980a52009-03-12 06:52:53 +000012259 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
12260 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012261 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012262 if (N->getNumValues() == 2) // Dead flag value?
12263 return DCI.CombineTo(N, Cond, SDValue());
12264 return Cond;
12265 }
Eric Christopherfd179292009-08-27 18:07:15 +000012266
Chris Lattnercee56e72009-03-13 05:53:31 +000012267 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
12268 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000012269 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012270 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12271 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012272
Chris Lattner97a29a52009-03-13 05:22:11 +000012273 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012274 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12275 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012276 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12277 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012278
Chris Lattner97a29a52009-03-13 05:22:11 +000012279 if (N->getNumValues() == 2) // Dead flag value?
12280 return DCI.CombineTo(N, Cond, SDValue());
12281 return Cond;
12282 }
Eric Christopherfd179292009-08-27 18:07:15 +000012283
Chris Lattnercee56e72009-03-13 05:53:31 +000012284 // Optimize cases that will turn into an LEA instruction. This requires
12285 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012286 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012287 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012288 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012289
Chris Lattnercee56e72009-03-13 05:53:31 +000012290 bool isFastMultiplier = false;
12291 if (Diff < 10) {
12292 switch ((unsigned char)Diff) {
12293 default: break;
12294 case 1: // result = add base, cond
12295 case 2: // result = lea base( , cond*2)
12296 case 3: // result = lea base(cond, cond*2)
12297 case 4: // result = lea base( , cond*4)
12298 case 5: // result = lea base(cond, cond*4)
12299 case 8: // result = lea base( , cond*8)
12300 case 9: // result = lea base(cond, cond*8)
12301 isFastMultiplier = true;
12302 break;
12303 }
12304 }
Eric Christopherfd179292009-08-27 18:07:15 +000012305
Chris Lattnercee56e72009-03-13 05:53:31 +000012306 if (isFastMultiplier) {
12307 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012308 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12309 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012310 // Zero extend the condition if needed.
12311 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12312 Cond);
12313 // Scale the condition by the difference.
12314 if (Diff != 1)
12315 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12316 DAG.getConstant(Diff, Cond.getValueType()));
12317
12318 // Add the base if non-zero.
12319 if (FalseC->getAPIntValue() != 0)
12320 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12321 SDValue(FalseC, 0));
12322 if (N->getNumValues() == 2) // Dead flag value?
12323 return DCI.CombineTo(N, Cond, SDValue());
12324 return Cond;
12325 }
Eric Christopherfd179292009-08-27 18:07:15 +000012326 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012327 }
12328 }
12329 return SDValue();
12330}
12331
12332
Evan Cheng0b0cd912009-03-28 05:57:29 +000012333/// PerformMulCombine - Optimize a single multiply with constant into two
12334/// in order to implement it with two cheaper instructions, e.g.
12335/// LEA + SHL, LEA + LEA.
12336static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12337 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012338 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12339 return SDValue();
12340
Owen Andersone50ed302009-08-10 22:56:29 +000012341 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012342 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012343 return SDValue();
12344
12345 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12346 if (!C)
12347 return SDValue();
12348 uint64_t MulAmt = C->getZExtValue();
12349 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12350 return SDValue();
12351
12352 uint64_t MulAmt1 = 0;
12353 uint64_t MulAmt2 = 0;
12354 if ((MulAmt % 9) == 0) {
12355 MulAmt1 = 9;
12356 MulAmt2 = MulAmt / 9;
12357 } else if ((MulAmt % 5) == 0) {
12358 MulAmt1 = 5;
12359 MulAmt2 = MulAmt / 5;
12360 } else if ((MulAmt % 3) == 0) {
12361 MulAmt1 = 3;
12362 MulAmt2 = MulAmt / 3;
12363 }
12364 if (MulAmt2 &&
12365 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12366 DebugLoc DL = N->getDebugLoc();
12367
12368 if (isPowerOf2_64(MulAmt2) &&
12369 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12370 // If second multiplifer is pow2, issue it first. We want the multiply by
12371 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12372 // is an add.
12373 std::swap(MulAmt1, MulAmt2);
12374
12375 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012376 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012377 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012378 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012379 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012380 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012381 DAG.getConstant(MulAmt1, VT));
12382
Eric Christopherfd179292009-08-27 18:07:15 +000012383 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012384 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012385 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012386 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012387 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012388 DAG.getConstant(MulAmt2, VT));
12389
12390 // Do not add new nodes to DAG combiner worklist.
12391 DCI.CombineTo(N, NewMul, false);
12392 }
12393 return SDValue();
12394}
12395
Evan Chengad9c0a32009-12-15 00:53:42 +000012396static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12397 SDValue N0 = N->getOperand(0);
12398 SDValue N1 = N->getOperand(1);
12399 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12400 EVT VT = N0.getValueType();
12401
12402 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12403 // since the result of setcc_c is all zero's or all ones.
12404 if (N1C && N0.getOpcode() == ISD::AND &&
12405 N0.getOperand(1).getOpcode() == ISD::Constant) {
12406 SDValue N00 = N0.getOperand(0);
12407 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12408 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12409 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12410 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12411 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12412 APInt ShAmt = N1C->getAPIntValue();
12413 Mask = Mask.shl(ShAmt);
12414 if (Mask != 0)
12415 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12416 N00, DAG.getConstant(Mask, VT));
12417 }
12418 }
12419
12420 return SDValue();
12421}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012422
Nate Begeman740ab032009-01-26 00:52:55 +000012423/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12424/// when possible.
12425static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12426 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012427 EVT VT = N->getValueType(0);
12428 if (!VT.isVector() && VT.isInteger() &&
12429 N->getOpcode() == ISD::SHL)
12430 return PerformSHLCombine(N, DAG);
12431
Nate Begeman740ab032009-01-26 00:52:55 +000012432 // On X86 with SSE2 support, we can transform this to a vector shift if
12433 // all elements are shifted by the same amount. We can't do this in legalize
12434 // because the a constant vector is typically transformed to a constant pool
12435 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000012436 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012437 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012438
Owen Anderson825b72b2009-08-11 20:47:22 +000012439 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012440 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012441
Mon P Wang3becd092009-01-28 08:12:05 +000012442 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012443 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012444 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012445 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012446 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12447 unsigned NumElts = VT.getVectorNumElements();
12448 unsigned i = 0;
12449 for (; i != NumElts; ++i) {
12450 SDValue Arg = ShAmtOp.getOperand(i);
12451 if (Arg.getOpcode() == ISD::UNDEF) continue;
12452 BaseShAmt = Arg;
12453 break;
12454 }
12455 for (; i != NumElts; ++i) {
12456 SDValue Arg = ShAmtOp.getOperand(i);
12457 if (Arg.getOpcode() == ISD::UNDEF) continue;
12458 if (Arg != BaseShAmt) {
12459 return SDValue();
12460 }
12461 }
12462 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012463 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012464 SDValue InVec = ShAmtOp.getOperand(0);
12465 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12466 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12467 unsigned i = 0;
12468 for (; i != NumElts; ++i) {
12469 SDValue Arg = InVec.getOperand(i);
12470 if (Arg.getOpcode() == ISD::UNDEF) continue;
12471 BaseShAmt = Arg;
12472 break;
12473 }
12474 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12475 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012476 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012477 if (C->getZExtValue() == SplatIdx)
12478 BaseShAmt = InVec.getOperand(1);
12479 }
12480 }
12481 if (BaseShAmt.getNode() == 0)
12482 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12483 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012484 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012485 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012486
Mon P Wangefa42202009-09-03 19:56:25 +000012487 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012488 if (EltVT.bitsGT(MVT::i32))
12489 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12490 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012491 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012492
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012493 // The shift amount is identical so we can do a vector shift.
12494 SDValue ValOp = N->getOperand(0);
12495 switch (N->getOpcode()) {
12496 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012497 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012498 break;
12499 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012500 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012501 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012502 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012503 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012504 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012505 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012506 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012507 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012508 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012509 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012510 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012511 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012512 break;
12513 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012514 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012515 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012516 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012517 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012518 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012519 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012520 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012521 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012522 break;
12523 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012524 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012525 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012526 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012527 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012528 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012529 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012530 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012531 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012532 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012533 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012534 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012535 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012536 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012537 }
12538 return SDValue();
12539}
12540
Nate Begemanb65c1752010-12-17 22:55:37 +000012541
Stuart Hastings865f0932011-06-03 23:53:54 +000012542// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12543// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12544// and friends. Likewise for OR -> CMPNEQSS.
12545static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12546 TargetLowering::DAGCombinerInfo &DCI,
12547 const X86Subtarget *Subtarget) {
12548 unsigned opcode;
12549
12550 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12551 // we're requiring SSE2 for both.
12552 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12553 SDValue N0 = N->getOperand(0);
12554 SDValue N1 = N->getOperand(1);
12555 SDValue CMP0 = N0->getOperand(1);
12556 SDValue CMP1 = N1->getOperand(1);
12557 DebugLoc DL = N->getDebugLoc();
12558
12559 // The SETCCs should both refer to the same CMP.
12560 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12561 return SDValue();
12562
12563 SDValue CMP00 = CMP0->getOperand(0);
12564 SDValue CMP01 = CMP0->getOperand(1);
12565 EVT VT = CMP00.getValueType();
12566
12567 if (VT == MVT::f32 || VT == MVT::f64) {
12568 bool ExpectingFlags = false;
12569 // Check for any users that want flags:
12570 for (SDNode::use_iterator UI = N->use_begin(),
12571 UE = N->use_end();
12572 !ExpectingFlags && UI != UE; ++UI)
12573 switch (UI->getOpcode()) {
12574 default:
12575 case ISD::BR_CC:
12576 case ISD::BRCOND:
12577 case ISD::SELECT:
12578 ExpectingFlags = true;
12579 break;
12580 case ISD::CopyToReg:
12581 case ISD::SIGN_EXTEND:
12582 case ISD::ZERO_EXTEND:
12583 case ISD::ANY_EXTEND:
12584 break;
12585 }
12586
12587 if (!ExpectingFlags) {
12588 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12589 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12590
12591 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12592 X86::CondCode tmp = cc0;
12593 cc0 = cc1;
12594 cc1 = tmp;
12595 }
12596
12597 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12598 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12599 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12600 X86ISD::NodeType NTOperator = is64BitFP ?
12601 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12602 // FIXME: need symbolic constants for these magic numbers.
12603 // See X86ATTInstPrinter.cpp:printSSECC().
12604 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12605 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12606 DAG.getConstant(x86cc, MVT::i8));
12607 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12608 OnesOrZeroesF);
12609 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12610 DAG.getConstant(1, MVT::i32));
12611 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12612 return OneBitOfTruth;
12613 }
12614 }
12615 }
12616 }
12617 return SDValue();
12618}
12619
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012620/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12621/// so it can be folded inside ANDNP.
12622static bool CanFoldXORWithAllOnes(const SDNode *N) {
12623 EVT VT = N->getValueType(0);
12624
12625 // Match direct AllOnes for 128 and 256-bit vectors
12626 if (ISD::isBuildVectorAllOnes(N))
12627 return true;
12628
12629 // Look through a bit convert.
12630 if (N->getOpcode() == ISD::BITCAST)
12631 N = N->getOperand(0).getNode();
12632
12633 // Sometimes the operand may come from a insert_subvector building a 256-bit
12634 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012635 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000012636 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
12637 SDValue V1 = N->getOperand(0);
12638 SDValue V2 = N->getOperand(1);
12639
12640 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12641 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12642 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12643 ISD::isBuildVectorAllOnes(V2.getNode()))
12644 return true;
12645 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012646
12647 return false;
12648}
12649
Nate Begemanb65c1752010-12-17 22:55:37 +000012650static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12651 TargetLowering::DAGCombinerInfo &DCI,
12652 const X86Subtarget *Subtarget) {
12653 if (DCI.isBeforeLegalizeOps())
12654 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012655
Stuart Hastings865f0932011-06-03 23:53:54 +000012656 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12657 if (R.getNode())
12658 return R;
12659
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012660 // Want to form ANDNP nodes:
12661 // 1) In the hopes of then easily combining them with OR and AND nodes
12662 // to form PBLEND/PSIGN.
12663 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012664 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012665 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012666 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012667
Nate Begemanb65c1752010-12-17 22:55:37 +000012668 SDValue N0 = N->getOperand(0);
12669 SDValue N1 = N->getOperand(1);
12670 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012671
Nate Begemanb65c1752010-12-17 22:55:37 +000012672 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012673 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012674 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12675 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012676 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012677
12678 // Check RHS for vnot
12679 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012680 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12681 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012682 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012683
Nate Begemanb65c1752010-12-17 22:55:37 +000012684 return SDValue();
12685}
12686
Evan Cheng760d1942010-01-04 21:22:48 +000012687static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012688 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012689 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012690 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012691 return SDValue();
12692
Stuart Hastings865f0932011-06-03 23:53:54 +000012693 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12694 if (R.getNode())
12695 return R;
12696
Evan Cheng760d1942010-01-04 21:22:48 +000012697 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012698 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012699 return SDValue();
12700
Evan Cheng760d1942010-01-04 21:22:48 +000012701 SDValue N0 = N->getOperand(0);
12702 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012703
Nate Begemanb65c1752010-12-17 22:55:37 +000012704 // look for psign/blend
12705 if (Subtarget->hasSSSE3()) {
12706 if (VT == MVT::v2i64) {
12707 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012708 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012709 std::swap(N0, N1);
12710 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012711 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012712 SDValue Mask = N1.getOperand(0);
12713 SDValue X = N1.getOperand(1);
12714 SDValue Y;
12715 if (N0.getOperand(0) == Mask)
12716 Y = N0.getOperand(1);
12717 if (N0.getOperand(1) == Mask)
12718 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012719
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012720 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012721 if (!Y.getNode())
12722 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012723
Nate Begemanb65c1752010-12-17 22:55:37 +000012724 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12725 if (Mask.getOpcode() != ISD::BITCAST ||
12726 X.getOpcode() != ISD::BITCAST ||
12727 Y.getOpcode() != ISD::BITCAST)
12728 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012729
Nate Begemanb65c1752010-12-17 22:55:37 +000012730 // Look through mask bitcast.
12731 Mask = Mask.getOperand(0);
12732 EVT MaskVT = Mask.getValueType();
12733
12734 // Validate that the Mask operand is a vector sra node. The sra node
12735 // will be an intrinsic.
12736 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12737 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012738
Nate Begemanb65c1752010-12-17 22:55:37 +000012739 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12740 // there is no psrai.b
12741 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12742 case Intrinsic::x86_sse2_psrai_w:
12743 case Intrinsic::x86_sse2_psrai_d:
12744 break;
12745 default: return SDValue();
12746 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012747
Nate Begemanb65c1752010-12-17 22:55:37 +000012748 // Check that the SRA is all signbits.
12749 SDValue SraC = Mask.getOperand(2);
12750 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12751 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12752 if ((SraAmt + 1) != EltBits)
12753 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012754
Nate Begemanb65c1752010-12-17 22:55:37 +000012755 DebugLoc DL = N->getDebugLoc();
12756
12757 // Now we know we at least have a plendvb with the mask val. See if
12758 // we can form a psignb/w/d.
12759 // psign = x.type == y.type == mask.type && y = sub(0, x);
12760 X = X.getOperand(0);
12761 Y = Y.getOperand(0);
12762 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12763 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12764 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12765 unsigned Opc = 0;
12766 switch (EltBits) {
12767 case 8: Opc = X86ISD::PSIGNB; break;
12768 case 16: Opc = X86ISD::PSIGNW; break;
12769 case 32: Opc = X86ISD::PSIGND; break;
12770 default: break;
12771 }
12772 if (Opc) {
12773 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12774 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12775 }
12776 }
12777 // PBLENDVB only available on SSE 4.1
12778 if (!Subtarget->hasSSE41())
12779 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012780
Nate Begemanb65c1752010-12-17 22:55:37 +000012781 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12782 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12783 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012784 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012785 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12786 }
12787 }
12788 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012789
Nate Begemanb65c1752010-12-17 22:55:37 +000012790 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012791 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12792 std::swap(N0, N1);
12793 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12794 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012795 if (!N0.hasOneUse() || !N1.hasOneUse())
12796 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012797
12798 SDValue ShAmt0 = N0.getOperand(1);
12799 if (ShAmt0.getValueType() != MVT::i8)
12800 return SDValue();
12801 SDValue ShAmt1 = N1.getOperand(1);
12802 if (ShAmt1.getValueType() != MVT::i8)
12803 return SDValue();
12804 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12805 ShAmt0 = ShAmt0.getOperand(0);
12806 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12807 ShAmt1 = ShAmt1.getOperand(0);
12808
12809 DebugLoc DL = N->getDebugLoc();
12810 unsigned Opc = X86ISD::SHLD;
12811 SDValue Op0 = N0.getOperand(0);
12812 SDValue Op1 = N1.getOperand(0);
12813 if (ShAmt0.getOpcode() == ISD::SUB) {
12814 Opc = X86ISD::SHRD;
12815 std::swap(Op0, Op1);
12816 std::swap(ShAmt0, ShAmt1);
12817 }
12818
Evan Cheng8b1190a2010-04-28 01:18:01 +000012819 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012820 if (ShAmt1.getOpcode() == ISD::SUB) {
12821 SDValue Sum = ShAmt1.getOperand(0);
12822 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012823 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12824 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12825 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12826 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012827 return DAG.getNode(Opc, DL, VT,
12828 Op0, Op1,
12829 DAG.getNode(ISD::TRUNCATE, DL,
12830 MVT::i8, ShAmt0));
12831 }
12832 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12833 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12834 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012835 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012836 return DAG.getNode(Opc, DL, VT,
12837 N0.getOperand(0), N1.getOperand(0),
12838 DAG.getNode(ISD::TRUNCATE, DL,
12839 MVT::i8, ShAmt0));
12840 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012841
Evan Cheng760d1942010-01-04 21:22:48 +000012842 return SDValue();
12843}
12844
Chris Lattner149a4e52008-02-22 02:09:43 +000012845/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012846static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012847 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000012848 StoreSDNode *St = cast<StoreSDNode>(N);
12849 EVT VT = St->getValue().getValueType();
12850 EVT StVT = St->getMemoryVT();
12851 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000012852 SDValue StoredVal = St->getOperand(1);
12853 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12854
12855 // If we are saving a concatination of two XMM registers, perform two stores.
Nadav Rotem6236f7f2011-08-11 17:05:47 +000012856 // This is better in Sandy Bridge cause one 256-bit mem op is done via two
12857 // 128-bit ones. If in the future the cost becomes only one memory access the
12858 // first version would be better.
Nadav Rotem5e742a32011-08-11 16:41:21 +000012859 if (VT.getSizeInBits() == 256 &&
12860 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
12861 StoredVal.getNumOperands() == 2) {
12862
12863 SDValue Value0 = StoredVal.getOperand(0);
12864 SDValue Value1 = StoredVal.getOperand(1);
12865
12866 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
12867 SDValue Ptr0 = St->getBasePtr();
12868 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
12869
12870 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
12871 St->getPointerInfo(), St->isVolatile(),
12872 St->isNonTemporal(), St->getAlignment());
12873 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
12874 St->getPointerInfo(), St->isVolatile(),
12875 St->isNonTemporal(), St->getAlignment());
12876 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
12877 }
Nadav Rotem614061b2011-08-10 19:30:14 +000012878
12879 // Optimize trunc store (of multiple scalars) to shuffle and store.
12880 // First, pack all of the elements in one place. Next, store to memory
12881 // in fewer chunks.
12882 if (St->isTruncatingStore() && VT.isVector()) {
12883 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12884 unsigned NumElems = VT.getVectorNumElements();
12885 assert(StVT != VT && "Cannot truncate to the same type");
12886 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
12887 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
12888
12889 // From, To sizes and ElemCount must be pow of two
12890 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
12891 // We are going to use the original vector elt for storing.
12892 // accumulated smaller vector elements must be a multiple of bigger size.
12893 if (0 != (NumElems * ToSz) % FromSz) return SDValue();
12894 unsigned SizeRatio = FromSz / ToSz;
12895
12896 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
12897
12898 // Create a type on which we perform the shuffle
12899 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
12900 StVT.getScalarType(), NumElems*SizeRatio);
12901
12902 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
12903
12904 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
12905 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
12906 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
12907
12908 // Can't shuffle using an illegal type
12909 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
12910
12911 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
12912 DAG.getUNDEF(WideVec.getValueType()),
12913 ShuffleVec.data());
12914 // At this point all of the data is stored at the bottom of the
12915 // register. We now need to save it to mem.
12916
12917 // Find the largest store unit
12918 MVT StoreType = MVT::i8;
12919 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
12920 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
12921 MVT Tp = (MVT::SimpleValueType)tp;
12922 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
12923 StoreType = Tp;
12924 }
12925
12926 // Bitcast the original vector into a vector of store-size units
12927 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
12928 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
12929 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
12930 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
12931 SmallVector<SDValue, 8> Chains;
12932 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
12933 TLI.getPointerTy());
12934 SDValue Ptr = St->getBasePtr();
12935
12936 // Perform one or more big stores into memory.
12937 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
12938 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
12939 StoreType, ShuffWide,
12940 DAG.getIntPtrConstant(i));
12941 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
12942 St->getPointerInfo(), St->isVolatile(),
12943 St->isNonTemporal(), St->getAlignment());
12944 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
12945 Chains.push_back(Ch);
12946 }
12947
12948 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
12949 Chains.size());
12950 }
12951
12952
Chris Lattner149a4e52008-02-22 02:09:43 +000012953 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12954 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012955 // A preferable solution to the general problem is to figure out the right
12956 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012957
12958 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000012959 if (VT.getSizeInBits() != 64)
12960 return SDValue();
12961
Devang Patel578efa92009-06-05 21:57:13 +000012962 const Function *F = DAG.getMachineFunction().getFunction();
12963 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000012964 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000012965 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000012966 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000012967 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000012968 isa<LoadSDNode>(St->getValue()) &&
12969 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12970 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012971 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012972 LoadSDNode *Ld = 0;
12973 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000012974 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000012975 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012976 // Must be a store of a load. We currently handle two cases: the load
12977 // is a direct child, and it's under an intervening TokenFactor. It is
12978 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000012979 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000012980 Ld = cast<LoadSDNode>(St->getChain());
12981 else if (St->getValue().hasOneUse() &&
12982 ChainVal->getOpcode() == ISD::TokenFactor) {
12983 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012984 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000012985 TokenFactorIndex = i;
12986 Ld = cast<LoadSDNode>(St->getValue());
12987 } else
12988 Ops.push_back(ChainVal->getOperand(i));
12989 }
12990 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000012991
Evan Cheng536e6672009-03-12 05:59:15 +000012992 if (!Ld || !ISD::isNormalLoad(Ld))
12993 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012994
Evan Cheng536e6672009-03-12 05:59:15 +000012995 // If this is not the MMX case, i.e. we are just turning i64 load/store
12996 // into f64 load/store, avoid the transformation if there are multiple
12997 // uses of the loaded value.
12998 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12999 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013000
Evan Cheng536e6672009-03-12 05:59:15 +000013001 DebugLoc LdDL = Ld->getDebugLoc();
13002 DebugLoc StDL = N->getDebugLoc();
13003 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
13004 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
13005 // pair instead.
13006 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013007 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000013008 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
13009 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013010 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013011 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000013012 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000013013 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000013014 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000013015 Ops.size());
13016 }
Evan Cheng536e6672009-03-12 05:59:15 +000013017 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000013018 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013019 St->isVolatile(), St->isNonTemporal(),
13020 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000013021 }
Evan Cheng536e6672009-03-12 05:59:15 +000013022
13023 // Otherwise, lower to two pairs of 32-bit loads / stores.
13024 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013025 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
13026 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013027
Owen Anderson825b72b2009-08-11 20:47:22 +000013028 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013029 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013030 Ld->isVolatile(), Ld->isNonTemporal(),
13031 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000013032 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013033 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000013034 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013035 MinAlign(Ld->getAlignment(), 4));
13036
13037 SDValue NewChain = LoLd.getValue(1);
13038 if (TokenFactorIndex != -1) {
13039 Ops.push_back(LoLd);
13040 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000013041 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000013042 Ops.size());
13043 }
13044
13045 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013046 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
13047 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013048
13049 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013050 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013051 St->isVolatile(), St->isNonTemporal(),
13052 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013053 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013054 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000013055 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013056 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013057 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000013058 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000013059 }
Dan Gohman475871a2008-07-27 21:46:04 +000013060 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000013061}
13062
Chris Lattner6cf73262008-01-25 06:14:17 +000013063/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
13064/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013065static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000013066 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
13067 // F[X]OR(0.0, x) -> x
13068 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000013069 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13070 if (C->getValueAPF().isPosZero())
13071 return N->getOperand(1);
13072 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13073 if (C->getValueAPF().isPosZero())
13074 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000013075 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013076}
13077
13078/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013079static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000013080 // FAND(0.0, x) -> 0.0
13081 // FAND(x, 0.0) -> 0.0
13082 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13083 if (C->getValueAPF().isPosZero())
13084 return N->getOperand(0);
13085 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13086 if (C->getValueAPF().isPosZero())
13087 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000013088 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013089}
13090
Dan Gohmane5af2d32009-01-29 01:59:02 +000013091static SDValue PerformBTCombine(SDNode *N,
13092 SelectionDAG &DAG,
13093 TargetLowering::DAGCombinerInfo &DCI) {
13094 // BT ignores high bits in the bit index operand.
13095 SDValue Op1 = N->getOperand(1);
13096 if (Op1.hasOneUse()) {
13097 unsigned BitWidth = Op1.getValueSizeInBits();
13098 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
13099 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013100 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
13101 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000013102 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000013103 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
13104 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
13105 DCI.CommitTargetLoweringOpt(TLO);
13106 }
13107 return SDValue();
13108}
Chris Lattner83e6c992006-10-04 06:57:07 +000013109
Eli Friedman7a5e5552009-06-07 06:52:44 +000013110static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
13111 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013112 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000013113 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000013114 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000013115 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000013116 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000013117 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013118 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013119 }
13120 return SDValue();
13121}
13122
Evan Cheng2e489c42009-12-16 00:53:11 +000013123static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
13124 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
13125 // (and (i32 x86isd::setcc_carry), 1)
13126 // This eliminates the zext. This transformation is necessary because
13127 // ISD::SETCC is always legalized to i8.
13128 DebugLoc dl = N->getDebugLoc();
13129 SDValue N0 = N->getOperand(0);
13130 EVT VT = N->getValueType(0);
13131 if (N0.getOpcode() == ISD::AND &&
13132 N0.hasOneUse() &&
13133 N0.getOperand(0).hasOneUse()) {
13134 SDValue N00 = N0.getOperand(0);
13135 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
13136 return SDValue();
13137 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
13138 if (!C || C->getZExtValue() != 1)
13139 return SDValue();
13140 return DAG.getNode(ISD::AND, dl, VT,
13141 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
13142 N00.getOperand(0), N00.getOperand(1)),
13143 DAG.getConstant(1, VT));
13144 }
13145
13146 return SDValue();
13147}
13148
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013149// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
13150static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
13151 unsigned X86CC = N->getConstantOperandVal(0);
13152 SDValue EFLAG = N->getOperand(1);
13153 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013154
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013155 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
13156 // a zext and produces an all-ones bit which is more useful than 0/1 in some
13157 // cases.
13158 if (X86CC == X86::COND_B)
13159 return DAG.getNode(ISD::AND, DL, MVT::i8,
13160 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
13161 DAG.getConstant(X86CC, MVT::i8), EFLAG),
13162 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013163
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013164 return SDValue();
13165}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013166
Benjamin Kramer1396c402011-06-18 11:09:41 +000013167static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
13168 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013169 SDValue Op0 = N->getOperand(0);
13170 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
13171 // a 32-bit target where SSE doesn't support i64->FP operations.
13172 if (Op0.getOpcode() == ISD::LOAD) {
13173 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
13174 EVT VT = Ld->getValueType(0);
13175 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
13176 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
13177 !XTLI->getSubtarget()->is64Bit() &&
13178 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000013179 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
13180 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013181 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
13182 return FILDChain;
13183 }
13184 }
13185 return SDValue();
13186}
13187
Chris Lattner23a01992010-12-20 01:37:09 +000013188// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
13189static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
13190 X86TargetLowering::DAGCombinerInfo &DCI) {
13191 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
13192 // the result is either zero or one (depending on the input carry bit).
13193 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
13194 if (X86::isZeroNode(N->getOperand(0)) &&
13195 X86::isZeroNode(N->getOperand(1)) &&
13196 // We don't have a good way to replace an EFLAGS use, so only do this when
13197 // dead right now.
13198 SDValue(N, 1).use_empty()) {
13199 DebugLoc DL = N->getDebugLoc();
13200 EVT VT = N->getValueType(0);
13201 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
13202 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
13203 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
13204 DAG.getConstant(X86::COND_B,MVT::i8),
13205 N->getOperand(2)),
13206 DAG.getConstant(1, VT));
13207 return DCI.CombineTo(N, Res1, CarryOut);
13208 }
13209
13210 return SDValue();
13211}
13212
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013213// fold (add Y, (sete X, 0)) -> adc 0, Y
13214// (add Y, (setne X, 0)) -> sbb -1, Y
13215// (sub (sete X, 0), Y) -> sbb 0, Y
13216// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013217static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013218 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013219
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013220 // Look through ZExts.
13221 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
13222 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
13223 return SDValue();
13224
13225 SDValue SetCC = Ext.getOperand(0);
13226 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
13227 return SDValue();
13228
13229 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
13230 if (CC != X86::COND_E && CC != X86::COND_NE)
13231 return SDValue();
13232
13233 SDValue Cmp = SetCC.getOperand(1);
13234 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000013235 !X86::isZeroNode(Cmp.getOperand(1)) ||
13236 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013237 return SDValue();
13238
13239 SDValue CmpOp0 = Cmp.getOperand(0);
13240 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
13241 DAG.getConstant(1, CmpOp0.getValueType()));
13242
13243 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
13244 if (CC == X86::COND_NE)
13245 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
13246 DL, OtherVal.getValueType(), OtherVal,
13247 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
13248 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
13249 DL, OtherVal.getValueType(), OtherVal,
13250 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
13251}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013252
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013253static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
13254 SDValue Op0 = N->getOperand(0);
13255 SDValue Op1 = N->getOperand(1);
13256
13257 // X86 can't encode an immediate LHS of a sub. See if we can push the
13258 // negation into a preceding instruction.
13259 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
13260 uint64_t Op0C = C->getSExtValue();
13261
13262 // If the RHS of the sub is a XOR with one use and a constant, invert the
13263 // immediate. Then add one to the LHS of the sub so we can turn
13264 // X-Y -> X+~Y+1, saving one register.
13265 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
13266 isa<ConstantSDNode>(Op1.getOperand(1))) {
13267 uint64_t XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getSExtValue();
13268 EVT VT = Op0.getValueType();
13269 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
13270 Op1.getOperand(0),
13271 DAG.getConstant(~XorC, VT));
13272 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
13273 DAG.getConstant(Op0C+1, VT));
13274 }
13275 }
13276
13277 return OptimizeConditionalInDecrement(N, DAG);
13278}
13279
Dan Gohman475871a2008-07-27 21:46:04 +000013280SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000013281 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000013282 SelectionDAG &DAG = DCI.DAG;
13283 switch (N->getOpcode()) {
13284 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000013285 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013286 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000013287 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000013288 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013289 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
13290 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000013291 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000013292 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000013293 case ISD::SHL:
13294 case ISD::SRA:
13295 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000013296 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000013297 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000013298 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013299 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000013300 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000013301 case X86ISD::FOR: return PerformFORCombine(N, DAG);
13302 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000013303 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013304 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000013305 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013306 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013307 case X86ISD::SHUFPS: // Handle all target specific shuffles
13308 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000013309 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013310 case X86ISD::PUNPCKHBW:
13311 case X86ISD::PUNPCKHWD:
13312 case X86ISD::PUNPCKHDQ:
13313 case X86ISD::PUNPCKHQDQ:
13314 case X86ISD::UNPCKHPS:
13315 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000013316 case X86ISD::VUNPCKHPSY:
13317 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013318 case X86ISD::PUNPCKLBW:
13319 case X86ISD::PUNPCKLWD:
13320 case X86ISD::PUNPCKLDQ:
13321 case X86ISD::PUNPCKLQDQ:
13322 case X86ISD::UNPCKLPS:
13323 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000013324 case X86ISD::VUNPCKLPSY:
13325 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013326 case X86ISD::MOVHLPS:
13327 case X86ISD::MOVLHPS:
13328 case X86ISD::PSHUFD:
13329 case X86ISD::PSHUFHW:
13330 case X86ISD::PSHUFLW:
13331 case X86ISD::MOVSS:
13332 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000013333 case X86ISD::VPERMILPS:
13334 case X86ISD::VPERMILPSY:
13335 case X86ISD::VPERMILPD:
13336 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000013337 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000013338 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000013339 }
13340
Dan Gohman475871a2008-07-27 21:46:04 +000013341 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000013342}
13343
Evan Chenge5b51ac2010-04-17 06:13:15 +000013344/// isTypeDesirableForOp - Return true if the target has native support for
13345/// the specified value type and it is 'desirable' to use the type for the
13346/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
13347/// instruction encodings are longer and some i16 instructions are slow.
13348bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
13349 if (!isTypeLegal(VT))
13350 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013351 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000013352 return true;
13353
13354 switch (Opc) {
13355 default:
13356 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000013357 case ISD::LOAD:
13358 case ISD::SIGN_EXTEND:
13359 case ISD::ZERO_EXTEND:
13360 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013361 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013362 case ISD::SRL:
13363 case ISD::SUB:
13364 case ISD::ADD:
13365 case ISD::MUL:
13366 case ISD::AND:
13367 case ISD::OR:
13368 case ISD::XOR:
13369 return false;
13370 }
13371}
13372
13373/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013374/// beneficial for dag combiner to promote the specified node. If true, it
13375/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013376bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013377 EVT VT = Op.getValueType();
13378 if (VT != MVT::i16)
13379 return false;
13380
Evan Cheng4c26e932010-04-19 19:29:22 +000013381 bool Promote = false;
13382 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013383 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013384 default: break;
13385 case ISD::LOAD: {
13386 LoadSDNode *LD = cast<LoadSDNode>(Op);
13387 // If the non-extending load has a single use and it's not live out, then it
13388 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013389 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13390 Op.hasOneUse()*/) {
13391 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13392 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13393 // The only case where we'd want to promote LOAD (rather then it being
13394 // promoted as an operand is when it's only use is liveout.
13395 if (UI->getOpcode() != ISD::CopyToReg)
13396 return false;
13397 }
13398 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013399 Promote = true;
13400 break;
13401 }
13402 case ISD::SIGN_EXTEND:
13403 case ISD::ZERO_EXTEND:
13404 case ISD::ANY_EXTEND:
13405 Promote = true;
13406 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013407 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013408 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013409 SDValue N0 = Op.getOperand(0);
13410 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013411 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013412 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013413 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013414 break;
13415 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013416 case ISD::ADD:
13417 case ISD::MUL:
13418 case ISD::AND:
13419 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013420 case ISD::XOR:
13421 Commute = true;
13422 // fallthrough
13423 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013424 SDValue N0 = Op.getOperand(0);
13425 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000013426 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013427 return false;
13428 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000013429 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013430 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000013431 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013432 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013433 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013434 }
13435 }
13436
13437 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013438 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013439}
13440
Evan Cheng60c07e12006-07-05 22:17:51 +000013441//===----------------------------------------------------------------------===//
13442// X86 Inline Assembly Support
13443//===----------------------------------------------------------------------===//
13444
Chris Lattnerb8105652009-07-20 17:51:36 +000013445bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13446 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013447
13448 std::string AsmStr = IA->getAsmString();
13449
13450 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013451 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013452 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013453
13454 switch (AsmPieces.size()) {
13455 default: return false;
13456 case 1:
13457 AsmStr = AsmPieces[0];
13458 AsmPieces.clear();
13459 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13460
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013461 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013462 // we will turn this bswap into something that will be lowered to logical ops
13463 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13464 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013465 // bswap $0
13466 if (AsmPieces.size() == 2 &&
13467 (AsmPieces[0] == "bswap" ||
13468 AsmPieces[0] == "bswapq" ||
13469 AsmPieces[0] == "bswapl") &&
13470 (AsmPieces[1] == "$0" ||
13471 AsmPieces[1] == "${0:q}")) {
13472 // No need to check constraints, nothing other than the equivalent of
13473 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013474 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013475 if (!Ty || Ty->getBitWidth() % 16 != 0)
13476 return false;
13477 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013478 }
13479 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013480 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013481 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013482 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013483 AsmPieces[1] == "$$8," &&
13484 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013485 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13486 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013487 const std::string &ConstraintsStr = IA->getConstraintString();
13488 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013489 std::sort(AsmPieces.begin(), AsmPieces.end());
13490 if (AsmPieces.size() == 4 &&
13491 AsmPieces[0] == "~{cc}" &&
13492 AsmPieces[1] == "~{dirflag}" &&
13493 AsmPieces[2] == "~{flags}" &&
13494 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013495 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013496 if (!Ty || Ty->getBitWidth() % 16 != 0)
13497 return false;
13498 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013499 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013500 }
13501 break;
13502 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013503 if (CI->getType()->isIntegerTy(32) &&
13504 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13505 SmallVector<StringRef, 4> Words;
13506 SplitString(AsmPieces[0], Words, " \t,");
13507 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13508 Words[2] == "${0:w}") {
13509 Words.clear();
13510 SplitString(AsmPieces[1], Words, " \t,");
13511 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13512 Words[2] == "$0") {
13513 Words.clear();
13514 SplitString(AsmPieces[2], Words, " \t,");
13515 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13516 Words[2] == "${0:w}") {
13517 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013518 const std::string &ConstraintsStr = IA->getConstraintString();
13519 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013520 std::sort(AsmPieces.begin(), AsmPieces.end());
13521 if (AsmPieces.size() == 4 &&
13522 AsmPieces[0] == "~{cc}" &&
13523 AsmPieces[1] == "~{dirflag}" &&
13524 AsmPieces[2] == "~{flags}" &&
13525 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013526 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013527 if (!Ty || Ty->getBitWidth() % 16 != 0)
13528 return false;
13529 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013530 }
13531 }
13532 }
13533 }
13534 }
Evan Cheng55d42002011-01-08 01:24:27 +000013535
13536 if (CI->getType()->isIntegerTy(64)) {
13537 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13538 if (Constraints.size() >= 2 &&
13539 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13540 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13541 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13542 SmallVector<StringRef, 4> Words;
13543 SplitString(AsmPieces[0], Words, " \t");
13544 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013545 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013546 SplitString(AsmPieces[1], Words, " \t");
13547 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13548 Words.clear();
13549 SplitString(AsmPieces[2], Words, " \t,");
13550 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13551 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013552 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013553 if (!Ty || Ty->getBitWidth() % 16 != 0)
13554 return false;
13555 return IntrinsicLowering::LowerToByteSwap(CI);
13556 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013557 }
13558 }
13559 }
13560 }
13561 break;
13562 }
13563 return false;
13564}
13565
13566
13567
Chris Lattnerf4dff842006-07-11 02:54:03 +000013568/// getConstraintType - Given a constraint letter, return the type of
13569/// constraint it is for this target.
13570X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013571X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13572 if (Constraint.size() == 1) {
13573 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013574 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013575 case 'q':
13576 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013577 case 'f':
13578 case 't':
13579 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013580 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013581 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013582 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013583 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013584 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013585 case 'a':
13586 case 'b':
13587 case 'c':
13588 case 'd':
13589 case 'S':
13590 case 'D':
13591 case 'A':
13592 return C_Register;
13593 case 'I':
13594 case 'J':
13595 case 'K':
13596 case 'L':
13597 case 'M':
13598 case 'N':
13599 case 'G':
13600 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013601 case 'e':
13602 case 'Z':
13603 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013604 default:
13605 break;
13606 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013607 }
Chris Lattner4234f572007-03-25 02:14:49 +000013608 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013609}
13610
John Thompson44ab89e2010-10-29 17:29:13 +000013611/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013612/// This object must already have been set up with the operand type
13613/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013614TargetLowering::ConstraintWeight
13615 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013616 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013617 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013618 Value *CallOperandVal = info.CallOperandVal;
13619 // If we don't have a value, we can't do a match,
13620 // but allow it at the lowest weight.
13621 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013622 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013623 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013624 // Look at the constraint type.
13625 switch (*constraint) {
13626 default:
John Thompson44ab89e2010-10-29 17:29:13 +000013627 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13628 case 'R':
13629 case 'q':
13630 case 'Q':
13631 case 'a':
13632 case 'b':
13633 case 'c':
13634 case 'd':
13635 case 'S':
13636 case 'D':
13637 case 'A':
13638 if (CallOperandVal->getType()->isIntegerTy())
13639 weight = CW_SpecificReg;
13640 break;
13641 case 'f':
13642 case 't':
13643 case 'u':
13644 if (type->isFloatingPointTy())
13645 weight = CW_SpecificReg;
13646 break;
13647 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000013648 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000013649 weight = CW_SpecificReg;
13650 break;
13651 case 'x':
13652 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013653 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000013654 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013655 break;
13656 case 'I':
13657 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13658 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000013659 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013660 }
13661 break;
John Thompson44ab89e2010-10-29 17:29:13 +000013662 case 'J':
13663 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13664 if (C->getZExtValue() <= 63)
13665 weight = CW_Constant;
13666 }
13667 break;
13668 case 'K':
13669 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13670 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13671 weight = CW_Constant;
13672 }
13673 break;
13674 case 'L':
13675 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13676 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13677 weight = CW_Constant;
13678 }
13679 break;
13680 case 'M':
13681 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13682 if (C->getZExtValue() <= 3)
13683 weight = CW_Constant;
13684 }
13685 break;
13686 case 'N':
13687 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13688 if (C->getZExtValue() <= 0xff)
13689 weight = CW_Constant;
13690 }
13691 break;
13692 case 'G':
13693 case 'C':
13694 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13695 weight = CW_Constant;
13696 }
13697 break;
13698 case 'e':
13699 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13700 if ((C->getSExtValue() >= -0x80000000LL) &&
13701 (C->getSExtValue() <= 0x7fffffffLL))
13702 weight = CW_Constant;
13703 }
13704 break;
13705 case 'Z':
13706 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13707 if (C->getZExtValue() <= 0xffffffff)
13708 weight = CW_Constant;
13709 }
13710 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013711 }
13712 return weight;
13713}
13714
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013715/// LowerXConstraint - try to replace an X constraint, which matches anything,
13716/// with another that has more specific requirements based on the type of the
13717/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013718const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013719LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013720 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13721 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013722 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013723 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013724 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013725 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013726 return "x";
13727 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013728
Chris Lattner5e764232008-04-26 23:02:14 +000013729 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013730}
13731
Chris Lattner48884cd2007-08-25 00:47:38 +000013732/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13733/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013734void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013735 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013736 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013737 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013738 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013739
Eric Christopher100c8332011-06-02 23:16:42 +000013740 // Only support length 1 constraints for now.
13741 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013742
Eric Christopher100c8332011-06-02 23:16:42 +000013743 char ConstraintLetter = Constraint[0];
13744 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013745 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013746 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013747 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013748 if (C->getZExtValue() <= 31) {
13749 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013750 break;
13751 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013752 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013753 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013754 case 'J':
13755 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013756 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013757 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13758 break;
13759 }
13760 }
13761 return;
13762 case 'K':
13763 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013764 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013765 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13766 break;
13767 }
13768 }
13769 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013770 case 'N':
13771 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013772 if (C->getZExtValue() <= 255) {
13773 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013774 break;
13775 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013776 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013777 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013778 case 'e': {
13779 // 32-bit signed value
13780 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013781 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13782 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013783 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013784 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013785 break;
13786 }
13787 // FIXME gcc accepts some relocatable values here too, but only in certain
13788 // memory models; it's complicated.
13789 }
13790 return;
13791 }
13792 case 'Z': {
13793 // 32-bit unsigned value
13794 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013795 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13796 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013797 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13798 break;
13799 }
13800 }
13801 // FIXME gcc accepts some relocatable values here too, but only in certain
13802 // memory models; it's complicated.
13803 return;
13804 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013805 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013806 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013807 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013808 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013809 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013810 break;
13811 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013812
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013813 // In any sort of PIC mode addresses need to be computed at runtime by
13814 // adding in a register or some sort of table lookup. These can't
13815 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013816 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013817 return;
13818
Chris Lattnerdc43a882007-05-03 16:52:29 +000013819 // If we are in non-pic codegen mode, we allow the address of a global (with
13820 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013821 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013822 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013823
Chris Lattner49921962009-05-08 18:23:14 +000013824 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13825 while (1) {
13826 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13827 Offset += GA->getOffset();
13828 break;
13829 } else if (Op.getOpcode() == ISD::ADD) {
13830 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13831 Offset += C->getZExtValue();
13832 Op = Op.getOperand(0);
13833 continue;
13834 }
13835 } else if (Op.getOpcode() == ISD::SUB) {
13836 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13837 Offset += -C->getZExtValue();
13838 Op = Op.getOperand(0);
13839 continue;
13840 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013841 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013842
Chris Lattner49921962009-05-08 18:23:14 +000013843 // Otherwise, this isn't something we can handle, reject it.
13844 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013845 }
Eric Christopherfd179292009-08-27 18:07:15 +000013846
Dan Gohman46510a72010-04-15 01:51:59 +000013847 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013848 // If we require an extra load to get this address, as in PIC mode, we
13849 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013850 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13851 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013852 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013853
Devang Patel0d881da2010-07-06 22:08:15 +000013854 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13855 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013856 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013857 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013858 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013859
Gabor Greifba36cb52008-08-28 21:40:38 +000013860 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013861 Ops.push_back(Result);
13862 return;
13863 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013864 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013865}
13866
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013867std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013868X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013869 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013870 // First, see if this is a constraint that directly corresponds to an LLVM
13871 // register class.
13872 if (Constraint.size() == 1) {
13873 // GCC Constraint Letters
13874 switch (Constraint[0]) {
13875 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013876 // TODO: Slight differences here in allocation order and leaving
13877 // RIP in the class. Do they matter any more here than they do
13878 // in the normal allocation?
13879 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13880 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013881 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013882 return std::make_pair(0U, X86::GR32RegisterClass);
13883 else if (VT == MVT::i16)
13884 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013885 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013886 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013887 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013888 return std::make_pair(0U, X86::GR64RegisterClass);
13889 break;
13890 }
13891 // 32-bit fallthrough
13892 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013893 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013894 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13895 else if (VT == MVT::i16)
13896 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013897 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013898 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13899 else if (VT == MVT::i64)
13900 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13901 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013902 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013903 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013904 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013905 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013906 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013907 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013908 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013909 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013910 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013911 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013912 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013913 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13914 if (VT == MVT::i16)
13915 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13916 if (VT == MVT::i32 || !Subtarget->is64Bit())
13917 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13918 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013919 case 'f': // FP Stack registers.
13920 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13921 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013922 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013923 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013924 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013925 return std::make_pair(0U, X86::RFP64RegisterClass);
13926 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013927 case 'y': // MMX_REGS if MMX allowed.
13928 if (!Subtarget->hasMMX()) break;
13929 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013930 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013931 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013932 // FALL THROUGH.
13933 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013934 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013935
Owen Anderson825b72b2009-08-11 20:47:22 +000013936 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013937 default: break;
13938 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013939 case MVT::f32:
13940 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013941 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013942 case MVT::f64:
13943 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013944 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013945 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013946 case MVT::v16i8:
13947 case MVT::v8i16:
13948 case MVT::v4i32:
13949 case MVT::v2i64:
13950 case MVT::v4f32:
13951 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013952 return std::make_pair(0U, X86::VR128RegisterClass);
13953 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013954 break;
13955 }
13956 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013957
Chris Lattnerf76d1802006-07-31 23:26:50 +000013958 // Use the default implementation in TargetLowering to convert the register
13959 // constraint into a member of a register class.
13960 std::pair<unsigned, const TargetRegisterClass*> Res;
13961 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013962
13963 // Not found as a standard register?
13964 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013965 // Map st(0) -> st(7) -> ST0
13966 if (Constraint.size() == 7 && Constraint[0] == '{' &&
13967 tolower(Constraint[1]) == 's' &&
13968 tolower(Constraint[2]) == 't' &&
13969 Constraint[3] == '(' &&
13970 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13971 Constraint[5] == ')' &&
13972 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000013973
Chris Lattner56d77c72009-09-13 22:41:48 +000013974 Res.first = X86::ST0+Constraint[4]-'0';
13975 Res.second = X86::RFP80RegisterClass;
13976 return Res;
13977 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013978
Chris Lattner56d77c72009-09-13 22:41:48 +000013979 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013980 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000013981 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000013982 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013983 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000013984 }
Chris Lattner56d77c72009-09-13 22:41:48 +000013985
13986 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013987 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013988 Res.first = X86::EFLAGS;
13989 Res.second = X86::CCRRegisterClass;
13990 return Res;
13991 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013992
Dale Johannesen330169f2008-11-13 21:52:36 +000013993 // 'A' means EAX + EDX.
13994 if (Constraint == "A") {
13995 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000013996 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013997 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000013998 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000013999 return Res;
14000 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014001
Chris Lattnerf76d1802006-07-31 23:26:50 +000014002 // Otherwise, check to see if this is a register class of the wrong value
14003 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
14004 // turn into {ax},{dx}.
14005 if (Res.second->hasType(VT))
14006 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014007
Chris Lattnerf76d1802006-07-31 23:26:50 +000014008 // All of the single-register GCC register classes map their values onto
14009 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
14010 // really want an 8-bit or 32-bit register, map to the appropriate register
14011 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000014012 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000014013 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014014 unsigned DestReg = 0;
14015 switch (Res.first) {
14016 default: break;
14017 case X86::AX: DestReg = X86::AL; break;
14018 case X86::DX: DestReg = X86::DL; break;
14019 case X86::CX: DestReg = X86::CL; break;
14020 case X86::BX: DestReg = X86::BL; break;
14021 }
14022 if (DestReg) {
14023 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014024 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014025 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014026 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014027 unsigned DestReg = 0;
14028 switch (Res.first) {
14029 default: break;
14030 case X86::AX: DestReg = X86::EAX; break;
14031 case X86::DX: DestReg = X86::EDX; break;
14032 case X86::CX: DestReg = X86::ECX; break;
14033 case X86::BX: DestReg = X86::EBX; break;
14034 case X86::SI: DestReg = X86::ESI; break;
14035 case X86::DI: DestReg = X86::EDI; break;
14036 case X86::BP: DestReg = X86::EBP; break;
14037 case X86::SP: DestReg = X86::ESP; break;
14038 }
14039 if (DestReg) {
14040 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014041 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014042 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014043 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014044 unsigned DestReg = 0;
14045 switch (Res.first) {
14046 default: break;
14047 case X86::AX: DestReg = X86::RAX; break;
14048 case X86::DX: DestReg = X86::RDX; break;
14049 case X86::CX: DestReg = X86::RCX; break;
14050 case X86::BX: DestReg = X86::RBX; break;
14051 case X86::SI: DestReg = X86::RSI; break;
14052 case X86::DI: DestReg = X86::RDI; break;
14053 case X86::BP: DestReg = X86::RBP; break;
14054 case X86::SP: DestReg = X86::RSP; break;
14055 }
14056 if (DestReg) {
14057 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014058 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014059 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000014060 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000014061 } else if (Res.second == X86::FR32RegisterClass ||
14062 Res.second == X86::FR64RegisterClass ||
14063 Res.second == X86::VR128RegisterClass) {
14064 // Handle references to XMM physical registers that got mapped into the
14065 // wrong class. This can happen with constraints like {xmm0} where the
14066 // target independent register mapper will just pick the first match it can
14067 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000014068 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014069 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000014070 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014071 Res.second = X86::FR64RegisterClass;
14072 else if (X86::VR128RegisterClass->hasType(VT))
14073 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000014074 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014075
Chris Lattnerf76d1802006-07-31 23:26:50 +000014076 return Res;
14077}