blob: b2329470abacacd06134238c30f4deea13eb2d72 [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 Lopes5bc37dd2011-07-15 22:24:33 +0000992 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +0000993 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000994 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
995 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
996 EVT VT = SVT;
997
998 // Extract subvector is special because the value type
999 // (result) is 128-bit but the source is 256-bit wide.
1000 if (VT.is128BitVector())
1001 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1002
1003 // Do not attempt to custom lower other non-256-bit vectors
1004 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001005 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001006
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001007 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1008 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1009 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1010 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001011 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001012 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001013 }
1014
David Greene54d8eba2011-01-27 22:38:56 +00001015 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001016 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1017 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1018 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001019
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001020 // Do not attempt to promote non-256-bit vectors
1021 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001022 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001023
1024 setOperationAction(ISD::AND, SVT, Promote);
1025 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1026 setOperationAction(ISD::OR, SVT, Promote);
1027 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1028 setOperationAction(ISD::XOR, SVT, Promote);
1029 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1030 setOperationAction(ISD::LOAD, SVT, Promote);
1031 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1032 setOperationAction(ISD::SELECT, SVT, Promote);
1033 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001034 }
David Greene9b9838d2009-06-29 16:47:10 +00001035 }
1036
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001037 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1038 // of this type with custom code.
1039 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1040 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1041 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1042 }
1043
Evan Cheng6be2c582006-04-05 23:38:46 +00001044 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001045 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001046
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001047
Eli Friedman962f5492010-06-02 19:35:46 +00001048 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1049 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001050 //
Eli Friedman962f5492010-06-02 19:35:46 +00001051 // FIXME: We really should do custom legalization for addition and
1052 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1053 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001054 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1055 // Add/Sub/Mul with overflow operations are custom lowered.
1056 MVT VT = IntVTs[i];
1057 setOperationAction(ISD::SADDO, VT, Custom);
1058 setOperationAction(ISD::UADDO, VT, Custom);
1059 setOperationAction(ISD::SSUBO, VT, Custom);
1060 setOperationAction(ISD::USUBO, VT, Custom);
1061 setOperationAction(ISD::SMULO, VT, Custom);
1062 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001063 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001064
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001065 // There are no 8-bit 3-address imul/mul instructions
1066 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1067 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001068
Evan Chengd54f2d52009-03-31 19:38:51 +00001069 if (!Subtarget->is64Bit()) {
1070 // These libcalls are not available in 32-bit.
1071 setLibcallName(RTLIB::SHL_I128, 0);
1072 setLibcallName(RTLIB::SRL_I128, 0);
1073 setLibcallName(RTLIB::SRA_I128, 0);
1074 }
1075
Evan Cheng206ee9d2006-07-07 08:33:52 +00001076 // We have target-specific dag combine patterns for the following nodes:
1077 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001078 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001079 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001080 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001081 setTargetDAGCombine(ISD::SHL);
1082 setTargetDAGCombine(ISD::SRA);
1083 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001084 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001085 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001086 setTargetDAGCombine(ISD::ADD);
1087 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001088 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001089 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001090 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001091 if (Subtarget->is64Bit())
1092 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001093
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001094 computeRegisterProperties();
1095
Evan Cheng05219282011-01-06 06:52:41 +00001096 // On Darwin, -Os means optimize for size without hurting performance,
1097 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001098 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001099 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001100 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001101 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1102 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1103 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001104 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001105 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001106
1107 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001108}
1109
Scott Michel5b8f82e2008-03-10 15:42:14 +00001110
Owen Anderson825b72b2009-08-11 20:47:22 +00001111MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1112 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001113}
1114
1115
Evan Cheng29286502008-01-23 23:17:41 +00001116/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1117/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001118static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001119 if (MaxAlign == 16)
1120 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001121 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001122 if (VTy->getBitWidth() == 128)
1123 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001124 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001125 unsigned EltAlign = 0;
1126 getMaxByValAlign(ATy->getElementType(), EltAlign);
1127 if (EltAlign > MaxAlign)
1128 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001129 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001130 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1131 unsigned EltAlign = 0;
1132 getMaxByValAlign(STy->getElementType(i), EltAlign);
1133 if (EltAlign > MaxAlign)
1134 MaxAlign = EltAlign;
1135 if (MaxAlign == 16)
1136 break;
1137 }
1138 }
1139 return;
1140}
1141
1142/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1143/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001144/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1145/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001146unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001147 if (Subtarget->is64Bit()) {
1148 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001149 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001150 if (TyAlign > 8)
1151 return TyAlign;
1152 return 8;
1153 }
1154
Evan Cheng29286502008-01-23 23:17:41 +00001155 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001156 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001157 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001158 return Align;
1159}
Chris Lattner2b02a442007-02-25 08:29:00 +00001160
Evan Chengf0df0312008-05-15 08:39:06 +00001161/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001162/// and store operations as a result of memset, memcpy, and memmove
1163/// lowering. If DstAlign is zero that means it's safe to destination
1164/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1165/// means there isn't a need to check it against alignment requirement,
1166/// probably because the source does not need to be loaded. If
1167/// 'NonScalarIntSafe' is true, that means it's safe to return a
1168/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1169/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1170/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001171/// It returns EVT::Other if the type should be determined using generic
1172/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001173EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001174X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1175 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001176 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001177 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001178 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001179 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1180 // linux. This is because the stack realignment code can't handle certain
1181 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001182 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001183 if (NonScalarIntSafe &&
1184 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001185 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001186 (Subtarget->isUnalignedMemAccessFast() ||
1187 ((DstAlign == 0 || DstAlign >= 16) &&
1188 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001189 Subtarget->getStackAlignment() >= 16) {
1190 if (Subtarget->hasSSE2())
1191 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001192 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001193 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001194 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001195 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001196 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001197 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001198 // Do not use f64 to lower memcpy if source is string constant. It's
1199 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001200 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001201 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001202 }
Evan Chengf0df0312008-05-15 08:39:06 +00001203 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001204 return MVT::i64;
1205 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001206}
1207
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001208/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1209/// current function. The returned value is a member of the
1210/// MachineJumpTableInfo::JTEntryKind enum.
1211unsigned X86TargetLowering::getJumpTableEncoding() const {
1212 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1213 // symbol.
1214 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1215 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001216 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001217
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001218 // Otherwise, use the normal jump table encoding heuristics.
1219 return TargetLowering::getJumpTableEncoding();
1220}
1221
Chris Lattnerc64daab2010-01-26 05:02:42 +00001222const MCExpr *
1223X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1224 const MachineBasicBlock *MBB,
1225 unsigned uid,MCContext &Ctx) const{
1226 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1227 Subtarget->isPICStyleGOT());
1228 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1229 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001230 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1231 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001232}
1233
Evan Chengcc415862007-11-09 01:32:10 +00001234/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1235/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001236SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001237 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001238 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001239 // This doesn't have DebugLoc associated with it, but is not really the
1240 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001241 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001242 return Table;
1243}
1244
Chris Lattner589c6f62010-01-26 06:28:43 +00001245/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1246/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1247/// MCExpr.
1248const MCExpr *X86TargetLowering::
1249getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1250 MCContext &Ctx) const {
1251 // X86-64 uses RIP relative addressing based on the jump table label.
1252 if (Subtarget->isPICStyleRIPRel())
1253 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1254
1255 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001256 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001257}
1258
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001259// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001260std::pair<const TargetRegisterClass*, uint8_t>
1261X86TargetLowering::findRepresentativeClass(EVT VT) const{
1262 const TargetRegisterClass *RRC = 0;
1263 uint8_t Cost = 1;
1264 switch (VT.getSimpleVT().SimpleTy) {
1265 default:
1266 return TargetLowering::findRepresentativeClass(VT);
1267 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1268 RRC = (Subtarget->is64Bit()
1269 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1270 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001271 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001272 RRC = X86::VR64RegisterClass;
1273 break;
1274 case MVT::f32: case MVT::f64:
1275 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1276 case MVT::v4f32: case MVT::v2f64:
1277 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1278 case MVT::v4f64:
1279 RRC = X86::VR128RegisterClass;
1280 break;
1281 }
1282 return std::make_pair(RRC, Cost);
1283}
1284
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001285bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1286 unsigned &Offset) const {
1287 if (!Subtarget->isTargetLinux())
1288 return false;
1289
1290 if (Subtarget->is64Bit()) {
1291 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1292 Offset = 0x28;
1293 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1294 AddressSpace = 256;
1295 else
1296 AddressSpace = 257;
1297 } else {
1298 // %gs:0x14 on i386
1299 Offset = 0x14;
1300 AddressSpace = 256;
1301 }
1302 return true;
1303}
1304
1305
Chris Lattner2b02a442007-02-25 08:29:00 +00001306//===----------------------------------------------------------------------===//
1307// Return Value Calling Convention Implementation
1308//===----------------------------------------------------------------------===//
1309
Chris Lattner59ed56b2007-02-28 04:55:35 +00001310#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001311
Michael J. Spencerec38de22010-10-10 22:04:20 +00001312bool
Eric Christopher471e4222011-06-08 23:55:35 +00001313X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1314 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001315 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001316 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001317 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001318 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001319 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001320 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001321}
1322
Dan Gohman98ca4f22009-08-05 01:29:28 +00001323SDValue
1324X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001325 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001326 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001327 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001328 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001329 MachineFunction &MF = DAG.getMachineFunction();
1330 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001331
Chris Lattner9774c912007-02-27 05:28:59 +00001332 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001333 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001334 RVLocs, *DAG.getContext());
1335 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001336
Evan Chengdcea1632010-02-04 02:40:39 +00001337 // Add the regs to the liveout set for the function.
1338 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1339 for (unsigned i = 0; i != RVLocs.size(); ++i)
1340 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1341 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001342
Dan Gohman475871a2008-07-27 21:46:04 +00001343 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001344
Dan Gohman475871a2008-07-27 21:46:04 +00001345 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001346 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1347 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001348 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1349 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001350
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001351 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001352 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1353 CCValAssign &VA = RVLocs[i];
1354 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001355 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001356 EVT ValVT = ValToCopy.getValueType();
1357
Dale Johannesenc4510512010-09-24 19:05:48 +00001358 // If this is x86-64, and we disabled SSE, we can't return FP values,
1359 // or SSE or MMX vectors.
1360 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1361 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001362 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001363 report_fatal_error("SSE register return with SSE disabled");
1364 }
1365 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1366 // llvm-gcc has never done it right and no one has noticed, so this
1367 // should be OK for now.
1368 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001369 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001370 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001371
Chris Lattner447ff682008-03-11 03:23:40 +00001372 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1373 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001374 if (VA.getLocReg() == X86::ST0 ||
1375 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001376 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1377 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001378 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001379 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001380 RetOps.push_back(ValToCopy);
1381 // Don't emit a copytoreg.
1382 continue;
1383 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001384
Evan Cheng242b38b2009-02-23 09:03:22 +00001385 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1386 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001387 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001388 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001389 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001390 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001391 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1392 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001393 // If we don't have SSE2 available, convert to v4f32 so the generated
1394 // register is legal.
1395 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001396 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001397 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001398 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001399 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001400
Dale Johannesendd64c412009-02-04 00:33:20 +00001401 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001402 Flag = Chain.getValue(1);
1403 }
Dan Gohman61a92132008-04-21 23:59:07 +00001404
1405 // The x86-64 ABI for returning structs by value requires that we copy
1406 // the sret argument into %rax for the return. We saved the argument into
1407 // a virtual register in the entry block, so now we copy the value out
1408 // and into %rax.
1409 if (Subtarget->is64Bit() &&
1410 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1411 MachineFunction &MF = DAG.getMachineFunction();
1412 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1413 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001414 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001415 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001416 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001417
Dale Johannesendd64c412009-02-04 00:33:20 +00001418 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001419 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001420
1421 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001422 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001423 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001424
Chris Lattner447ff682008-03-11 03:23:40 +00001425 RetOps[0] = Chain; // Update chain.
1426
1427 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001428 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001429 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001430
1431 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001432 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001433}
1434
Evan Cheng3d2125c2010-11-30 23:55:39 +00001435bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1436 if (N->getNumValues() != 1)
1437 return false;
1438 if (!N->hasNUsesOfValue(1, 0))
1439 return false;
1440
1441 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001442 if (Copy->getOpcode() != ISD::CopyToReg &&
1443 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001444 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001445
1446 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001447 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001448 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001449 if (UI->getOpcode() != X86ISD::RET_FLAG)
1450 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001451 HasRet = true;
1452 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001453
Evan Cheng1bf891a2010-12-01 22:59:46 +00001454 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001455}
1456
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001457EVT
1458X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001459 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001460 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001461 // TODO: Is this also valid on 32-bit?
1462 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001463 ReturnMVT = MVT::i8;
1464 else
1465 ReturnMVT = MVT::i32;
1466
1467 EVT MinVT = getRegisterType(Context, ReturnMVT);
1468 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001469}
1470
Dan Gohman98ca4f22009-08-05 01:29:28 +00001471/// LowerCallResult - Lower the result values of a call into the
1472/// appropriate copies out of appropriate physical registers.
1473///
1474SDValue
1475X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001476 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001477 const SmallVectorImpl<ISD::InputArg> &Ins,
1478 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001479 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001480
Chris Lattnere32bbf62007-02-28 07:09:55 +00001481 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001482 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001483 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001484 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1485 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001486 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001487
Chris Lattner3085e152007-02-25 08:59:22 +00001488 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001489 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001490 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001491 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001492
Torok Edwin3f142c32009-02-01 18:15:56 +00001493 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001494 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001495 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001496 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001497 }
1498
Evan Cheng79fb3b42009-02-20 20:43:02 +00001499 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001500
1501 // If this is a call to a function that returns an fp value on the floating
1502 // point stack, we must guarantee the the value is popped from the stack, so
1503 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001504 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001505 // instead.
1506 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1507 // If we prefer to use the value in xmm registers, copy it out as f80 and
1508 // use a truncate to move it from fp stack reg to xmm reg.
1509 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001510 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001511 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1512 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001513 Val = Chain.getValue(0);
1514
1515 // Round the f80 to the right size, which also moves it to the appropriate
1516 // xmm register.
1517 if (CopyVT != VA.getValVT())
1518 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1519 // This truncation won't change the value.
1520 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001521 } else {
1522 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1523 CopyVT, InFlag).getValue(1);
1524 Val = Chain.getValue(0);
1525 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001526 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001527 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001528 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001529
Dan Gohman98ca4f22009-08-05 01:29:28 +00001530 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001531}
1532
1533
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001534//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001535// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001536//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001537// StdCall calling convention seems to be standard for many Windows' API
1538// routines and around. It differs from C calling convention just a little:
1539// callee should clean up the stack, not caller. Symbols should be also
1540// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001541// For info on fast calling convention see Fast Calling Convention (tail call)
1542// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001543
Dan Gohman98ca4f22009-08-05 01:29:28 +00001544/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001545/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001546static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1547 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001548 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001549
Dan Gohman98ca4f22009-08-05 01:29:28 +00001550 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001551}
1552
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001553/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001554/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001555static bool
1556ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1557 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001558 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001559
Dan Gohman98ca4f22009-08-05 01:29:28 +00001560 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001561}
1562
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001563/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1564/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001565/// the specific parameter attribute. The copy will be passed as a byval
1566/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001567static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001568CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001569 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1570 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001571 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001572
Dale Johannesendd64c412009-02-04 00:33:20 +00001573 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001574 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001575 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001576}
1577
Chris Lattner29689432010-03-11 00:22:57 +00001578/// IsTailCallConvention - Return true if the calling convention is one that
1579/// supports tail call optimization.
1580static bool IsTailCallConvention(CallingConv::ID CC) {
1581 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1582}
1583
Evan Cheng485fafc2011-03-21 01:19:09 +00001584bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1585 if (!CI->isTailCall())
1586 return false;
1587
1588 CallSite CS(CI);
1589 CallingConv::ID CalleeCC = CS.getCallingConv();
1590 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1591 return false;
1592
1593 return true;
1594}
1595
Evan Cheng0c439eb2010-01-27 00:07:07 +00001596/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1597/// a tailcall target by changing its ABI.
1598static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001599 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001600}
1601
Dan Gohman98ca4f22009-08-05 01:29:28 +00001602SDValue
1603X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001604 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001605 const SmallVectorImpl<ISD::InputArg> &Ins,
1606 DebugLoc dl, SelectionDAG &DAG,
1607 const CCValAssign &VA,
1608 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001609 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001610 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001611 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001612 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001613 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001614 EVT ValVT;
1615
1616 // If value is passed by pointer we have address passed instead of the value
1617 // itself.
1618 if (VA.getLocInfo() == CCValAssign::Indirect)
1619 ValVT = VA.getLocVT();
1620 else
1621 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001622
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001623 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001624 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001625 // In case of tail call optimization mark all arguments mutable. Since they
1626 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001627 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001628 unsigned Bytes = Flags.getByValSize();
1629 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1630 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001631 return DAG.getFrameIndex(FI, getPointerTy());
1632 } else {
1633 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001634 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001635 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1636 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001637 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001638 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001639 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001640}
1641
Dan Gohman475871a2008-07-27 21:46:04 +00001642SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001643X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001644 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001645 bool isVarArg,
1646 const SmallVectorImpl<ISD::InputArg> &Ins,
1647 DebugLoc dl,
1648 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001649 SmallVectorImpl<SDValue> &InVals)
1650 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001651 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001652 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001653
Gordon Henriksen86737662008-01-05 16:56:59 +00001654 const Function* Fn = MF.getFunction();
1655 if (Fn->hasExternalLinkage() &&
1656 Subtarget->isTargetCygMing() &&
1657 Fn->getName() == "main")
1658 FuncInfo->setForceFramePointer(true);
1659
Evan Cheng1bc78042006-04-26 01:20:17 +00001660 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001661 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001662 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001663
Chris Lattner29689432010-03-11 00:22:57 +00001664 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1665 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001666
Chris Lattner638402b2007-02-28 07:00:42 +00001667 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001668 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001669 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001670 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001671
1672 // Allocate shadow area for Win64
1673 if (IsWin64) {
1674 CCInfo.AllocateStack(32, 8);
1675 }
1676
Duncan Sands45907662010-10-31 13:21:44 +00001677 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001678
Chris Lattnerf39f7712007-02-28 05:46:49 +00001679 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001680 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001681 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1682 CCValAssign &VA = ArgLocs[i];
1683 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1684 // places.
1685 assert(VA.getValNo() != LastVal &&
1686 "Don't support value assigned to multiple locs yet");
1687 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001688
Chris Lattnerf39f7712007-02-28 05:46:49 +00001689 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001690 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001691 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001692 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001693 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001694 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001695 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001696 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001697 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001698 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001699 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001700 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1701 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001702 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001703 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001704 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001705 RC = X86::VR64RegisterClass;
1706 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001707 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001708
Devang Patel68e6bee2011-02-21 23:21:26 +00001709 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001710 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001711
Chris Lattnerf39f7712007-02-28 05:46:49 +00001712 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1713 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1714 // right size.
1715 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001716 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001717 DAG.getValueType(VA.getValVT()));
1718 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001719 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001720 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001721 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001722 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001723
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001724 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001725 // Handle MMX values passed in XMM regs.
1726 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001727 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1728 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001729 } else
1730 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001731 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001732 } else {
1733 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001734 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001735 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001736
1737 // If value is passed via pointer - do a load.
1738 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001739 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1740 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001741
Dan Gohman98ca4f22009-08-05 01:29:28 +00001742 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001743 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001744
Dan Gohman61a92132008-04-21 23:59:07 +00001745 // The x86-64 ABI for returning structs by value requires that we copy
1746 // the sret argument into %rax for the return. Save the argument into
1747 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001748 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001749 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1750 unsigned Reg = FuncInfo->getSRetReturnReg();
1751 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001752 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001753 FuncInfo->setSRetReturnReg(Reg);
1754 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001755 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001756 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001757 }
1758
Chris Lattnerf39f7712007-02-28 05:46:49 +00001759 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001760 // Align stack specially for tail calls.
1761 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001762 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001763
Evan Cheng1bc78042006-04-26 01:20:17 +00001764 // If the function takes variable number of arguments, make a frame index for
1765 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001766 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001767 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1768 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001769 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001770 }
1771 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001772 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1773
1774 // FIXME: We should really autogenerate these arrays
1775 static const unsigned GPR64ArgRegsWin64[] = {
1776 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001777 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001778 static const unsigned GPR64ArgRegs64Bit[] = {
1779 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1780 };
1781 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001782 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1783 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1784 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001785 const unsigned *GPR64ArgRegs;
1786 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001787
1788 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001789 // The XMM registers which might contain var arg parameters are shadowed
1790 // in their paired GPR. So we only need to save the GPR to their home
1791 // slots.
1792 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001793 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001794 } else {
1795 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1796 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001797
1798 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001799 }
1800 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1801 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001802
Devang Patel578efa92009-06-05 21:57:13 +00001803 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001804 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001805 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001806 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001807 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001808 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001809 // Kernel mode asks for SSE to be disabled, so don't push them
1810 // on the stack.
1811 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001812
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001813 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001814 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001815 // Get to the caller-allocated home save location. Add 8 to account
1816 // for the return address.
1817 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001818 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001819 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001820 // Fixup to set vararg frame on shadow area (4 x i64).
1821 if (NumIntRegs < 4)
1822 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001823 } else {
1824 // For X86-64, if there are vararg parameters that are passed via
1825 // registers, then we must store them to their spots on the stack so they
1826 // may be loaded by deferencing the result of va_next.
1827 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1828 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1829 FuncInfo->setRegSaveFrameIndex(
1830 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001831 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001832 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001833
Gordon Henriksen86737662008-01-05 16:56:59 +00001834 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001835 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001836 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1837 getPointerTy());
1838 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001839 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001840 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1841 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001842 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001843 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001844 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001845 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001846 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001847 MachinePointerInfo::getFixedStack(
1848 FuncInfo->getRegSaveFrameIndex(), Offset),
1849 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001850 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001851 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001852 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001853
Dan Gohmanface41a2009-08-16 21:24:25 +00001854 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1855 // Now store the XMM (fp + vector) parameter registers.
1856 SmallVector<SDValue, 11> SaveXMMOps;
1857 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001858
Devang Patel68e6bee2011-02-21 23:21:26 +00001859 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001860 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1861 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001862
Dan Gohman1e93df62010-04-17 14:41:14 +00001863 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1864 FuncInfo->getRegSaveFrameIndex()));
1865 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1866 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001867
Dan Gohmanface41a2009-08-16 21:24:25 +00001868 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001869 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001870 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001871 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1872 SaveXMMOps.push_back(Val);
1873 }
1874 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1875 MVT::Other,
1876 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001877 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001878
1879 if (!MemOps.empty())
1880 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1881 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001882 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001883 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001884
Gordon Henriksen86737662008-01-05 16:56:59 +00001885 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001886 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001887 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001888 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001889 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001890 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001891 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001892 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001893 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001894
Gordon Henriksen86737662008-01-05 16:56:59 +00001895 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001896 // RegSaveFrameIndex is X86-64 only.
1897 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001898 if (CallConv == CallingConv::X86_FastCall ||
1899 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001900 // fastcc functions can't have varargs.
1901 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001902 }
Evan Cheng25caf632006-05-23 21:06:34 +00001903
Dan Gohman98ca4f22009-08-05 01:29:28 +00001904 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001905}
1906
Dan Gohman475871a2008-07-27 21:46:04 +00001907SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001908X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1909 SDValue StackPtr, SDValue Arg,
1910 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001911 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001912 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001913 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001914 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001915 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001916 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001917 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001918
1919 return DAG.getStore(Chain, dl, Arg, PtrOff,
1920 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001921 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001922}
1923
Bill Wendling64e87322009-01-16 19:25:27 +00001924/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001925/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001926SDValue
1927X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001928 SDValue &OutRetAddr, SDValue Chain,
1929 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001930 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001931 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001932 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001933 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001934
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001935 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001936 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1937 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001938 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001939}
1940
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001941/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001942/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001943static SDValue
1944EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001945 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001946 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001947 // Store the return address to the appropriate stack slot.
1948 if (!FPDiff) return Chain;
1949 // Calculate the new stack slot for the return address.
1950 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001951 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001952 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001953 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001954 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001955 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001956 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001957 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001958 return Chain;
1959}
1960
Dan Gohman98ca4f22009-08-05 01:29:28 +00001961SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001962X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001963 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001964 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001965 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001966 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001967 const SmallVectorImpl<ISD::InputArg> &Ins,
1968 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001969 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001970 MachineFunction &MF = DAG.getMachineFunction();
1971 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001972 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001973 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001974 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001975
Evan Cheng5f941932010-02-05 02:21:12 +00001976 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001977 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001978 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1979 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001980 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001981
1982 // Sibcalls are automatically detected tailcalls which do not require
1983 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001984 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001985 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001986
1987 if (isTailCall)
1988 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001989 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001990
Chris Lattner29689432010-03-11 00:22:57 +00001991 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1992 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001993
Chris Lattner638402b2007-02-28 07:00:42 +00001994 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001995 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001996 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001997 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001998
1999 // Allocate shadow area for Win64
2000 if (IsWin64) {
2001 CCInfo.AllocateStack(32, 8);
2002 }
2003
Duncan Sands45907662010-10-31 13:21:44 +00002004 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002005
Chris Lattner423c5f42007-02-28 05:31:48 +00002006 // Get a count of how many bytes are to be pushed on the stack.
2007 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002008 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002009 // This is a sibcall. The memory operands are available in caller's
2010 // own caller's stack.
2011 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002012 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002013 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002014
Gordon Henriksen86737662008-01-05 16:56:59 +00002015 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002016 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002017 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002018 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002019 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2020 FPDiff = NumBytesCallerPushed - NumBytes;
2021
2022 // Set the delta of movement of the returnaddr stackslot.
2023 // But only set if delta is greater than previous delta.
2024 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2025 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2026 }
2027
Evan Chengf22f9b32010-02-06 03:28:46 +00002028 if (!IsSibcall)
2029 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002030
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002032 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002033 if (isTailCall && FPDiff)
2034 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2035 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002036
Dan Gohman475871a2008-07-27 21:46:04 +00002037 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2038 SmallVector<SDValue, 8> MemOpChains;
2039 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002040
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002041 // Walk the register/memloc assignments, inserting copies/loads. In the case
2042 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002043 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2044 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002045 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002046 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002047 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002048 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002049
Chris Lattner423c5f42007-02-28 05:31:48 +00002050 // Promote the value if needed.
2051 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002052 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002053 case CCValAssign::Full: break;
2054 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002055 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002056 break;
2057 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002058 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002059 break;
2060 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002061 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2062 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002063 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002064 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2065 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002066 } else
2067 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2068 break;
2069 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002070 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002071 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002072 case CCValAssign::Indirect: {
2073 // Store the argument.
2074 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002075 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002076 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002077 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002078 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002079 Arg = SpillSlot;
2080 break;
2081 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002082 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002083
Chris Lattner423c5f42007-02-28 05:31:48 +00002084 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002085 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2086 if (isVarArg && IsWin64) {
2087 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2088 // shadow reg if callee is a varargs function.
2089 unsigned ShadowReg = 0;
2090 switch (VA.getLocReg()) {
2091 case X86::XMM0: ShadowReg = X86::RCX; break;
2092 case X86::XMM1: ShadowReg = X86::RDX; break;
2093 case X86::XMM2: ShadowReg = X86::R8; break;
2094 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002095 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002096 if (ShadowReg)
2097 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002098 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002099 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002100 assert(VA.isMemLoc());
2101 if (StackPtr.getNode() == 0)
2102 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2103 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2104 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002105 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002106 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002107
Evan Cheng32fe1032006-05-25 00:59:30 +00002108 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002109 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002110 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002111
Evan Cheng347d5f72006-04-28 21:29:37 +00002112 // Build a sequence of copy-to-reg nodes chained together with token chain
2113 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002114 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002115 // Tail call byval lowering might overwrite argument registers so in case of
2116 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002117 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002118 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002119 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002120 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002121 InFlag = Chain.getValue(1);
2122 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002123
Chris Lattner88e1fd52009-07-09 04:24:46 +00002124 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002125 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2126 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002127 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002128 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2129 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002130 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002131 InFlag);
2132 InFlag = Chain.getValue(1);
2133 } else {
2134 // If we are tail calling and generating PIC/GOT style code load the
2135 // address of the callee into ECX. The value in ecx is used as target of
2136 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2137 // for tail calls on PIC/GOT architectures. Normally we would just put the
2138 // address of GOT into ebx and then call target@PLT. But for tail calls
2139 // ebx would be restored (since ebx is callee saved) before jumping to the
2140 // target@PLT.
2141
2142 // Note: The actual moving to ECX is done further down.
2143 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2144 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2145 !G->getGlobal()->hasProtectedVisibility())
2146 Callee = LowerGlobalAddress(Callee, DAG);
2147 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002148 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002149 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002150 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002151
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002152 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002153 // From AMD64 ABI document:
2154 // For calls that may call functions that use varargs or stdargs
2155 // (prototype-less calls or calls to functions containing ellipsis (...) in
2156 // the declaration) %al is used as hidden argument to specify the number
2157 // of SSE registers used. The contents of %al do not need to match exactly
2158 // the number of registers, but must be an ubound on the number of SSE
2159 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002160
Gordon Henriksen86737662008-01-05 16:56:59 +00002161 // Count the number of XMM registers allocated.
2162 static const unsigned XMMArgRegs[] = {
2163 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2164 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2165 };
2166 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002167 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002168 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002169
Dale Johannesendd64c412009-02-04 00:33:20 +00002170 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002171 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002172 InFlag = Chain.getValue(1);
2173 }
2174
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002175
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002176 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002177 if (isTailCall) {
2178 // Force all the incoming stack arguments to be loaded from the stack
2179 // before any new outgoing arguments are stored to the stack, because the
2180 // outgoing stack slots may alias the incoming argument stack slots, and
2181 // the alias isn't otherwise explicit. This is slightly more conservative
2182 // than necessary, because it means that each store effectively depends
2183 // on every argument instead of just those arguments it would clobber.
2184 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2185
Dan Gohman475871a2008-07-27 21:46:04 +00002186 SmallVector<SDValue, 8> MemOpChains2;
2187 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002188 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002189 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002190 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002191 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002192 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2193 CCValAssign &VA = ArgLocs[i];
2194 if (VA.isRegLoc())
2195 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002196 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002197 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002198 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002199 // Create frame index.
2200 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002201 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002202 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002203 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002204
Duncan Sands276dcbd2008-03-21 09:14:45 +00002205 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002206 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002207 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002208 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002209 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002210 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002211 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002212
Dan Gohman98ca4f22009-08-05 01:29:28 +00002213 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2214 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002215 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002216 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002217 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002218 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002219 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002220 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002221 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002222 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002223 }
2224 }
2225
2226 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002227 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002228 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002229
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002230 // Copy arguments to their registers.
2231 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002232 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002233 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002234 InFlag = Chain.getValue(1);
2235 }
Dan Gohman475871a2008-07-27 21:46:04 +00002236 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002237
Gordon Henriksen86737662008-01-05 16:56:59 +00002238 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002239 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002240 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002241 }
2242
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002243 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2244 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2245 // In the 64-bit large code model, we have to make all calls
2246 // through a register, since the call instruction's 32-bit
2247 // pc-relative offset may not be large enough to hold the whole
2248 // address.
2249 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002250 // If the callee is a GlobalAddress node (quite common, every direct call
2251 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2252 // it.
2253
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002254 // We should use extra load for direct calls to dllimported functions in
2255 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002256 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002257 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002258 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002259 bool ExtraLoad = false;
2260 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002261
Chris Lattner48a7d022009-07-09 05:02:21 +00002262 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2263 // external symbols most go through the PLT in PIC mode. If the symbol
2264 // has hidden or protected visibility, or if it is static or local, then
2265 // we don't need to use the PLT - we can directly call it.
2266 if (Subtarget->isTargetELF() &&
2267 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002268 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002269 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002270 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002271 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002272 (!Subtarget->getTargetTriple().isMacOSX() ||
2273 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002274 // PC-relative references to external symbols should go through $stub,
2275 // unless we're building with the leopard linker or later, which
2276 // automatically synthesizes these stubs.
2277 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002278 } else if (Subtarget->isPICStyleRIPRel() &&
2279 isa<Function>(GV) &&
2280 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2281 // If the function is marked as non-lazy, generate an indirect call
2282 // which loads from the GOT directly. This avoids runtime overhead
2283 // at the cost of eager binding (and one extra byte of encoding).
2284 OpFlags = X86II::MO_GOTPCREL;
2285 WrapperKind = X86ISD::WrapperRIP;
2286 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002287 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002288
Devang Patel0d881da2010-07-06 22:08:15 +00002289 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002290 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002291
2292 // Add a wrapper if needed.
2293 if (WrapperKind != ISD::DELETED_NODE)
2294 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2295 // Add extra indirection if needed.
2296 if (ExtraLoad)
2297 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2298 MachinePointerInfo::getGOT(),
2299 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002300 }
Bill Wendling056292f2008-09-16 21:48:12 +00002301 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002302 unsigned char OpFlags = 0;
2303
Evan Cheng1bf891a2010-12-01 22:59:46 +00002304 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2305 // external symbols should go through the PLT.
2306 if (Subtarget->isTargetELF() &&
2307 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2308 OpFlags = X86II::MO_PLT;
2309 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002310 (!Subtarget->getTargetTriple().isMacOSX() ||
2311 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002312 // PC-relative references to external symbols should go through $stub,
2313 // unless we're building with the leopard linker or later, which
2314 // automatically synthesizes these stubs.
2315 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002316 }
Eric Christopherfd179292009-08-27 18:07:15 +00002317
Chris Lattner48a7d022009-07-09 05:02:21 +00002318 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2319 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002320 }
2321
Chris Lattnerd96d0722007-02-25 06:40:16 +00002322 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002323 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002324 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002325
Evan Chengf22f9b32010-02-06 03:28:46 +00002326 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002327 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2328 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002329 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002330 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002331
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002332 Ops.push_back(Chain);
2333 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002334
Dan Gohman98ca4f22009-08-05 01:29:28 +00002335 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002336 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002337
Gordon Henriksen86737662008-01-05 16:56:59 +00002338 // Add argument registers to the end of the list so that they are known live
2339 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002340 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2341 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2342 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002343
Evan Cheng586ccac2008-03-18 23:36:35 +00002344 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002345 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002346 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2347
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002348 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002349 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002350 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002351
Gabor Greifba36cb52008-08-28 21:40:38 +00002352 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002353 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002354
Dan Gohman98ca4f22009-08-05 01:29:28 +00002355 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002356 // We used to do:
2357 //// If this is the first return lowered for this function, add the regs
2358 //// to the liveout set for the function.
2359 // This isn't right, although it's probably harmless on x86; liveouts
2360 // should be computed from returns not tail calls. Consider a void
2361 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002362 return DAG.getNode(X86ISD::TC_RETURN, dl,
2363 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002364 }
2365
Dale Johannesenace16102009-02-03 19:33:06 +00002366 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002367 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002368
Chris Lattner2d297092006-05-23 18:50:38 +00002369 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002370 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002371 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002372 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002373 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002374 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002375 // pops the hidden struct pointer, so we have to push it back.
2376 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002377 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002378 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002379 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002380
Gordon Henriksenae636f82008-01-03 16:47:34 +00002381 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002382 if (!IsSibcall) {
2383 Chain = DAG.getCALLSEQ_END(Chain,
2384 DAG.getIntPtrConstant(NumBytes, true),
2385 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2386 true),
2387 InFlag);
2388 InFlag = Chain.getValue(1);
2389 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002390
Chris Lattner3085e152007-02-25 08:59:22 +00002391 // Handle result values, copying them out of physregs into vregs that we
2392 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002393 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2394 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002395}
2396
Evan Cheng25ab6902006-09-08 06:48:29 +00002397
2398//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002399// Fast Calling Convention (tail call) implementation
2400//===----------------------------------------------------------------------===//
2401
2402// Like std call, callee cleans arguments, convention except that ECX is
2403// reserved for storing the tail called function address. Only 2 registers are
2404// free for argument passing (inreg). Tail call optimization is performed
2405// provided:
2406// * tailcallopt is enabled
2407// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002408// On X86_64 architecture with GOT-style position independent code only local
2409// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002410// To keep the stack aligned according to platform abi the function
2411// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2412// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002413// If a tail called function callee has more arguments than the caller the
2414// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002415// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002416// original REtADDR, but before the saved framepointer or the spilled registers
2417// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2418// stack layout:
2419// arg1
2420// arg2
2421// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002422// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002423// move area ]
2424// (possible EBP)
2425// ESI
2426// EDI
2427// local1 ..
2428
2429/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2430/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002431unsigned
2432X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2433 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002434 MachineFunction &MF = DAG.getMachineFunction();
2435 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002436 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002437 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002438 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002439 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002440 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002441 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2442 // Number smaller than 12 so just add the difference.
2443 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2444 } else {
2445 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002446 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002447 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002448 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002449 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002450}
2451
Evan Cheng5f941932010-02-05 02:21:12 +00002452/// MatchingStackOffset - Return true if the given stack call argument is
2453/// already available in the same position (relatively) of the caller's
2454/// incoming argument stack.
2455static
2456bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2457 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2458 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002459 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2460 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002461 if (Arg.getOpcode() == ISD::CopyFromReg) {
2462 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002463 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002464 return false;
2465 MachineInstr *Def = MRI->getVRegDef(VR);
2466 if (!Def)
2467 return false;
2468 if (!Flags.isByVal()) {
2469 if (!TII->isLoadFromStackSlot(Def, FI))
2470 return false;
2471 } else {
2472 unsigned Opcode = Def->getOpcode();
2473 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2474 Def->getOperand(1).isFI()) {
2475 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002476 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002477 } else
2478 return false;
2479 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002480 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2481 if (Flags.isByVal())
2482 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002483 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002484 // define @foo(%struct.X* %A) {
2485 // tail call @bar(%struct.X* byval %A)
2486 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002487 return false;
2488 SDValue Ptr = Ld->getBasePtr();
2489 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2490 if (!FINode)
2491 return false;
2492 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002493 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002494 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002495 FI = FINode->getIndex();
2496 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002497 } else
2498 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002499
Evan Cheng4cae1332010-03-05 08:38:04 +00002500 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002501 if (!MFI->isFixedObjectIndex(FI))
2502 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002503 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002504}
2505
Dan Gohman98ca4f22009-08-05 01:29:28 +00002506/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2507/// for tail call optimization. Targets which want to do tail call
2508/// optimization should implement this function.
2509bool
2510X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002511 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002512 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002513 bool isCalleeStructRet,
2514 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002515 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002516 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002517 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002518 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002519 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002520 CalleeCC != CallingConv::C)
2521 return false;
2522
Evan Cheng7096ae42010-01-29 06:45:59 +00002523 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002524 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002525 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002526 CallingConv::ID CallerCC = CallerF->getCallingConv();
2527 bool CCMatch = CallerCC == CalleeCC;
2528
Dan Gohman1797ed52010-02-08 20:27:50 +00002529 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002530 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002531 return true;
2532 return false;
2533 }
2534
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002535 // Look for obvious safe cases to perform tail call optimization that do not
2536 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002537
Evan Cheng2c12cb42010-03-26 16:26:03 +00002538 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2539 // emit a special epilogue.
2540 if (RegInfo->needsStackRealignment(MF))
2541 return false;
2542
Evan Chenga375d472010-03-15 18:54:48 +00002543 // Also avoid sibcall optimization if either caller or callee uses struct
2544 // return semantics.
2545 if (isCalleeStructRet || isCallerStructRet)
2546 return false;
2547
Chad Rosier2416da32011-06-24 21:15:36 +00002548 // An stdcall caller is expected to clean up its arguments; the callee
2549 // isn't going to do that.
2550 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2551 return false;
2552
Chad Rosier871f6642011-05-18 19:59:50 +00002553 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002554 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002555 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002556
2557 // Optimizing for varargs on Win64 is unlikely to be safe without
2558 // additional testing.
2559 if (Subtarget->isTargetWin64())
2560 return false;
2561
Chad Rosier871f6642011-05-18 19:59:50 +00002562 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002563 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2564 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002565
Chad Rosier871f6642011-05-18 19:59:50 +00002566 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2567 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2568 if (!ArgLocs[i].isRegLoc())
2569 return false;
2570 }
2571
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002572 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2573 // Therefore if it's not used by the call it is not safe to optimize this into
2574 // a sibcall.
2575 bool Unused = false;
2576 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2577 if (!Ins[i].Used) {
2578 Unused = true;
2579 break;
2580 }
2581 }
2582 if (Unused) {
2583 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002584 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2585 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002586 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002587 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002588 CCValAssign &VA = RVLocs[i];
2589 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2590 return false;
2591 }
2592 }
2593
Evan Cheng13617962010-04-30 01:12:32 +00002594 // If the calling conventions do not match, then we'd better make sure the
2595 // results are returned in the same way as what the caller expects.
2596 if (!CCMatch) {
2597 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002598 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2599 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002600 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2601
2602 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002603 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2604 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002605 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2606
2607 if (RVLocs1.size() != RVLocs2.size())
2608 return false;
2609 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2610 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2611 return false;
2612 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2613 return false;
2614 if (RVLocs1[i].isRegLoc()) {
2615 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2616 return false;
2617 } else {
2618 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2619 return false;
2620 }
2621 }
2622 }
2623
Evan Chenga6bff982010-01-30 01:22:00 +00002624 // If the callee takes no arguments then go on to check the results of the
2625 // call.
2626 if (!Outs.empty()) {
2627 // Check if stack adjustment is needed. For now, do not do this if any
2628 // argument is passed on the stack.
2629 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002630 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2631 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002632
2633 // Allocate shadow area for Win64
2634 if (Subtarget->isTargetWin64()) {
2635 CCInfo.AllocateStack(32, 8);
2636 }
2637
Duncan Sands45907662010-10-31 13:21:44 +00002638 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002639 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002640 MachineFunction &MF = DAG.getMachineFunction();
2641 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2642 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002643
2644 // Check if the arguments are already laid out in the right way as
2645 // the caller's fixed stack objects.
2646 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002647 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2648 const X86InstrInfo *TII =
2649 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002650 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2651 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002652 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002653 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002654 if (VA.getLocInfo() == CCValAssign::Indirect)
2655 return false;
2656 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002657 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2658 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002659 return false;
2660 }
2661 }
2662 }
Evan Cheng9c044672010-05-29 01:35:22 +00002663
2664 // If the tailcall address may be in a register, then make sure it's
2665 // possible to register allocate for it. In 32-bit, the call address can
2666 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002667 // callee-saved registers are restored. These happen to be the same
2668 // registers used to pass 'inreg' arguments so watch out for those.
2669 if (!Subtarget->is64Bit() &&
2670 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002671 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002672 unsigned NumInRegs = 0;
2673 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2674 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002675 if (!VA.isRegLoc())
2676 continue;
2677 unsigned Reg = VA.getLocReg();
2678 switch (Reg) {
2679 default: break;
2680 case X86::EAX: case X86::EDX: case X86::ECX:
2681 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002682 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002683 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002684 }
2685 }
2686 }
Evan Chenga6bff982010-01-30 01:22:00 +00002687 }
Evan Chengb1712452010-01-27 06:25:16 +00002688
Evan Cheng86809cc2010-02-03 03:28:02 +00002689 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002690}
2691
Dan Gohman3df24e62008-09-03 23:12:08 +00002692FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002693X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2694 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002695}
2696
2697
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002698//===----------------------------------------------------------------------===//
2699// Other Lowering Hooks
2700//===----------------------------------------------------------------------===//
2701
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002702static bool MayFoldLoad(SDValue Op) {
2703 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2704}
2705
2706static bool MayFoldIntoStore(SDValue Op) {
2707 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2708}
2709
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002710static bool isTargetShuffle(unsigned Opcode) {
2711 switch(Opcode) {
2712 default: return false;
2713 case X86ISD::PSHUFD:
2714 case X86ISD::PSHUFHW:
2715 case X86ISD::PSHUFLW:
2716 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002717 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002718 case X86ISD::SHUFPS:
2719 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002720 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002721 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002722 case X86ISD::MOVLPS:
2723 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002724 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002725 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002726 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002727 case X86ISD::MOVSS:
2728 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002729 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002730 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002731 case X86ISD::VUNPCKLPSY:
2732 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002733 case X86ISD::PUNPCKLWD:
2734 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002735 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002736 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002737 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002738 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002739 case X86ISD::VUNPCKHPSY:
2740 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002741 case X86ISD::PUNPCKHWD:
2742 case X86ISD::PUNPCKHBW:
2743 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002744 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002745 case X86ISD::VPERMILPS:
2746 case X86ISD::VPERMILPSY:
2747 case X86ISD::VPERMILPD:
2748 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002749 return true;
2750 }
2751 return false;
2752}
2753
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002754static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002755 SDValue V1, SelectionDAG &DAG) {
2756 switch(Opc) {
2757 default: llvm_unreachable("Unknown x86 shuffle node");
2758 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002759 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002760 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002761 return DAG.getNode(Opc, dl, VT, V1);
2762 }
2763
2764 return SDValue();
2765}
2766
2767static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002768 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002769 switch(Opc) {
2770 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002771 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002772 case X86ISD::PSHUFHW:
2773 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002774 case X86ISD::VPERMILPS:
2775 case X86ISD::VPERMILPSY:
2776 case X86ISD::VPERMILPD:
2777 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002778 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2779 }
2780
2781 return SDValue();
2782}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002783
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002784static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2785 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2786 switch(Opc) {
2787 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002788 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002789 case X86ISD::SHUFPD:
2790 case X86ISD::SHUFPS:
2791 return DAG.getNode(Opc, dl, VT, V1, V2,
2792 DAG.getConstant(TargetMask, MVT::i8));
2793 }
2794 return SDValue();
2795}
2796
2797static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2798 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2799 switch(Opc) {
2800 default: llvm_unreachable("Unknown x86 shuffle node");
2801 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002802 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002803 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002804 case X86ISD::MOVLPS:
2805 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002806 case X86ISD::MOVSS:
2807 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002808 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002809 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002810 case X86ISD::VUNPCKLPSY:
2811 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002812 case X86ISD::PUNPCKLWD:
2813 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002814 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002815 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002816 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002817 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002818 case X86ISD::VUNPCKHPSY:
2819 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002820 case X86ISD::PUNPCKHWD:
2821 case X86ISD::PUNPCKHBW:
2822 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002823 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002824 return DAG.getNode(Opc, dl, VT, V1, V2);
2825 }
2826 return SDValue();
2827}
2828
Dan Gohmand858e902010-04-17 15:26:15 +00002829SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002830 MachineFunction &MF = DAG.getMachineFunction();
2831 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2832 int ReturnAddrIndex = FuncInfo->getRAIndex();
2833
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002834 if (ReturnAddrIndex == 0) {
2835 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002836 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002837 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002838 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002839 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002840 }
2841
Evan Cheng25ab6902006-09-08 06:48:29 +00002842 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002843}
2844
2845
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002846bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2847 bool hasSymbolicDisplacement) {
2848 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002849 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002850 return false;
2851
2852 // If we don't have a symbolic displacement - we don't have any extra
2853 // restrictions.
2854 if (!hasSymbolicDisplacement)
2855 return true;
2856
2857 // FIXME: Some tweaks might be needed for medium code model.
2858 if (M != CodeModel::Small && M != CodeModel::Kernel)
2859 return false;
2860
2861 // For small code model we assume that latest object is 16MB before end of 31
2862 // bits boundary. We may also accept pretty large negative constants knowing
2863 // that all objects are in the positive half of address space.
2864 if (M == CodeModel::Small && Offset < 16*1024*1024)
2865 return true;
2866
2867 // For kernel code model we know that all object resist in the negative half
2868 // of 32bits address space. We may not accept negative offsets, since they may
2869 // be just off and we may accept pretty large positive ones.
2870 if (M == CodeModel::Kernel && Offset > 0)
2871 return true;
2872
2873 return false;
2874}
2875
Evan Chengef41ff62011-06-23 17:54:54 +00002876/// isCalleePop - Determines whether the callee is required to pop its
2877/// own arguments. Callee pop is necessary to support tail calls.
2878bool X86::isCalleePop(CallingConv::ID CallingConv,
2879 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2880 if (IsVarArg)
2881 return false;
2882
2883 switch (CallingConv) {
2884 default:
2885 return false;
2886 case CallingConv::X86_StdCall:
2887 return !is64Bit;
2888 case CallingConv::X86_FastCall:
2889 return !is64Bit;
2890 case CallingConv::X86_ThisCall:
2891 return !is64Bit;
2892 case CallingConv::Fast:
2893 return TailCallOpt;
2894 case CallingConv::GHC:
2895 return TailCallOpt;
2896 }
2897}
2898
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002899/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2900/// specific condition code, returning the condition code and the LHS/RHS of the
2901/// comparison to make.
2902static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2903 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002904 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002905 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2906 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2907 // X > -1 -> X == 0, jump !sign.
2908 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002909 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002910 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2911 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002912 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002913 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002914 // X < 1 -> X <= 0
2915 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002916 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002917 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002918 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002919
Evan Chengd9558e02006-01-06 00:43:03 +00002920 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002921 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002922 case ISD::SETEQ: return X86::COND_E;
2923 case ISD::SETGT: return X86::COND_G;
2924 case ISD::SETGE: return X86::COND_GE;
2925 case ISD::SETLT: return X86::COND_L;
2926 case ISD::SETLE: return X86::COND_LE;
2927 case ISD::SETNE: return X86::COND_NE;
2928 case ISD::SETULT: return X86::COND_B;
2929 case ISD::SETUGT: return X86::COND_A;
2930 case ISD::SETULE: return X86::COND_BE;
2931 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002932 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002933 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002934
Chris Lattner4c78e022008-12-23 23:42:27 +00002935 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002936
Chris Lattner4c78e022008-12-23 23:42:27 +00002937 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002938 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2939 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002940 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2941 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002942 }
2943
Chris Lattner4c78e022008-12-23 23:42:27 +00002944 switch (SetCCOpcode) {
2945 default: break;
2946 case ISD::SETOLT:
2947 case ISD::SETOLE:
2948 case ISD::SETUGT:
2949 case ISD::SETUGE:
2950 std::swap(LHS, RHS);
2951 break;
2952 }
2953
2954 // On a floating point condition, the flags are set as follows:
2955 // ZF PF CF op
2956 // 0 | 0 | 0 | X > Y
2957 // 0 | 0 | 1 | X < Y
2958 // 1 | 0 | 0 | X == Y
2959 // 1 | 1 | 1 | unordered
2960 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002961 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002962 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002963 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002964 case ISD::SETOLT: // flipped
2965 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002966 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002967 case ISD::SETOLE: // flipped
2968 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002969 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002970 case ISD::SETUGT: // flipped
2971 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002972 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002973 case ISD::SETUGE: // flipped
2974 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002975 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002976 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002977 case ISD::SETNE: return X86::COND_NE;
2978 case ISD::SETUO: return X86::COND_P;
2979 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002980 case ISD::SETOEQ:
2981 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002982 }
Evan Chengd9558e02006-01-06 00:43:03 +00002983}
2984
Evan Cheng4a460802006-01-11 00:33:36 +00002985/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2986/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002987/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002988static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002989 switch (X86CC) {
2990 default:
2991 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002992 case X86::COND_B:
2993 case X86::COND_BE:
2994 case X86::COND_E:
2995 case X86::COND_P:
2996 case X86::COND_A:
2997 case X86::COND_AE:
2998 case X86::COND_NE:
2999 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003000 return true;
3001 }
3002}
3003
Evan Chengeb2f9692009-10-27 19:56:55 +00003004/// isFPImmLegal - Returns true if the target can instruction select the
3005/// specified FP immediate natively. If false, the legalizer will
3006/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003007bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003008 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3009 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3010 return true;
3011 }
3012 return false;
3013}
3014
Nate Begeman9008ca62009-04-27 18:41:29 +00003015/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3016/// the specified range (L, H].
3017static bool isUndefOrInRange(int Val, int Low, int Hi) {
3018 return (Val < 0) || (Val >= Low && Val < Hi);
3019}
3020
3021/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3022/// specified value.
3023static bool isUndefOrEqual(int Val, int CmpVal) {
3024 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003025 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003026 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003027}
3028
Nate Begeman9008ca62009-04-27 18:41:29 +00003029/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3030/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3031/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003032static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003033 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003034 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003035 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003036 return (Mask[0] < 2 && Mask[1] < 2);
3037 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003038}
3039
Nate Begeman9008ca62009-04-27 18:41:29 +00003040bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003041 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003042 N->getMask(M);
3043 return ::isPSHUFDMask(M, N->getValueType(0));
3044}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003045
Nate Begeman9008ca62009-04-27 18:41:29 +00003046/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3047/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003048static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003049 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003050 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003051
Nate Begeman9008ca62009-04-27 18:41:29 +00003052 // Lower quadword copied in order or undef.
3053 for (int i = 0; i != 4; ++i)
3054 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003055 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003056
Evan Cheng506d3df2006-03-29 23:07:14 +00003057 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003058 for (int i = 4; i != 8; ++i)
3059 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003060 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003061
Evan Cheng506d3df2006-03-29 23:07:14 +00003062 return true;
3063}
3064
Nate Begeman9008ca62009-04-27 18:41:29 +00003065bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003066 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003067 N->getMask(M);
3068 return ::isPSHUFHWMask(M, N->getValueType(0));
3069}
Evan Cheng506d3df2006-03-29 23:07:14 +00003070
Nate Begeman9008ca62009-04-27 18:41:29 +00003071/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3072/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003073static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003074 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003075 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003076
Rafael Espindola15684b22009-04-24 12:40:33 +00003077 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003078 for (int i = 4; i != 8; ++i)
3079 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003080 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003081
Rafael Espindola15684b22009-04-24 12:40:33 +00003082 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003083 for (int i = 0; i != 4; ++i)
3084 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003085 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003086
Rafael Espindola15684b22009-04-24 12:40:33 +00003087 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003088}
3089
Nate Begeman9008ca62009-04-27 18:41:29 +00003090bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003091 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003092 N->getMask(M);
3093 return ::isPSHUFLWMask(M, N->getValueType(0));
3094}
3095
Nate Begemana09008b2009-10-19 02:17:23 +00003096/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3097/// is suitable for input to PALIGNR.
3098static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3099 bool hasSSSE3) {
3100 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003101 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3102 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003103
Nate Begemana09008b2009-10-19 02:17:23 +00003104 // Do not handle v2i64 / v2f64 shuffles with palignr.
3105 if (e < 4 || !hasSSSE3)
3106 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003107
Nate Begemana09008b2009-10-19 02:17:23 +00003108 for (i = 0; i != e; ++i)
3109 if (Mask[i] >= 0)
3110 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003111
Nate Begemana09008b2009-10-19 02:17:23 +00003112 // All undef, not a palignr.
3113 if (i == e)
3114 return false;
3115
Eli Friedman63f8dde2011-07-25 21:36:45 +00003116 // Make sure we're shifting in the right direction.
3117 if (Mask[i] <= i)
3118 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003119
3120 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003121
Nate Begemana09008b2009-10-19 02:17:23 +00003122 // Check the rest of the elements to see if they are consecutive.
3123 for (++i; i != e; ++i) {
3124 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003125 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003126 return false;
3127 }
3128 return true;
3129}
3130
Evan Cheng14aed5e2006-03-24 01:18:28 +00003131/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3132/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003133static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003134 int NumElems = VT.getVectorNumElements();
3135 if (NumElems != 2 && NumElems != 4)
3136 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003137
Nate Begeman9008ca62009-04-27 18:41:29 +00003138 int Half = NumElems / 2;
3139 for (int i = 0; i < Half; ++i)
3140 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003141 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003142 for (int i = Half; i < NumElems; ++i)
3143 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003144 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003145
Evan Cheng14aed5e2006-03-24 01:18:28 +00003146 return true;
3147}
3148
Nate Begeman9008ca62009-04-27 18:41:29 +00003149bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3150 SmallVector<int, 8> M;
3151 N->getMask(M);
3152 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003153}
3154
Evan Cheng213d2cf2007-05-17 18:45:50 +00003155/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003156/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3157/// half elements to come from vector 1 (which would equal the dest.) and
3158/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003159static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003160 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003161
3162 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003163 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003164
Nate Begeman9008ca62009-04-27 18:41:29 +00003165 int Half = NumElems / 2;
3166 for (int i = 0; i < Half; ++i)
3167 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003168 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003169 for (int i = Half; i < NumElems; ++i)
3170 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003171 return false;
3172 return true;
3173}
3174
Nate Begeman9008ca62009-04-27 18:41:29 +00003175static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3176 SmallVector<int, 8> M;
3177 N->getMask(M);
3178 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003179}
3180
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003181/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3182/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003183bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003184 EVT VT = N->getValueType(0);
3185 unsigned NumElems = VT.getVectorNumElements();
3186
3187 if (VT.getSizeInBits() != 128)
3188 return false;
3189
3190 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003191 return false;
3192
Evan Cheng2064a2b2006-03-28 06:50:32 +00003193 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003194 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3195 isUndefOrEqual(N->getMaskElt(1), 7) &&
3196 isUndefOrEqual(N->getMaskElt(2), 2) &&
3197 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003198}
3199
Nate Begeman0b10b912009-11-07 23:17:15 +00003200/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3201/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3202/// <2, 3, 2, 3>
3203bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003204 EVT VT = N->getValueType(0);
3205 unsigned NumElems = VT.getVectorNumElements();
3206
3207 if (VT.getSizeInBits() != 128)
3208 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003209
Nate Begeman0b10b912009-11-07 23:17:15 +00003210 if (NumElems != 4)
3211 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003212
Nate Begeman0b10b912009-11-07 23:17:15 +00003213 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003214 isUndefOrEqual(N->getMaskElt(1), 3) &&
3215 isUndefOrEqual(N->getMaskElt(2), 2) &&
3216 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003217}
3218
Evan Cheng5ced1d82006-04-06 23:23:56 +00003219/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3220/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003221bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3222 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003223
Evan Cheng5ced1d82006-04-06 23:23:56 +00003224 if (NumElems != 2 && NumElems != 4)
3225 return false;
3226
Evan Chengc5cdff22006-04-07 21:53:05 +00003227 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003228 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003229 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003230
Evan Chengc5cdff22006-04-07 21:53:05 +00003231 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003232 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003233 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003234
3235 return true;
3236}
3237
Nate Begeman0b10b912009-11-07 23:17:15 +00003238/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3239/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3240bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003241 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003242
David Greenea20244d2011-03-02 17:23:43 +00003243 if ((NumElems != 2 && NumElems != 4)
3244 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003245 return false;
3246
Evan Chengc5cdff22006-04-07 21:53:05 +00003247 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003248 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003249 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003250
Nate Begeman9008ca62009-04-27 18:41:29 +00003251 for (unsigned i = 0; i < NumElems/2; ++i)
3252 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003253 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003254
3255 return true;
3256}
3257
Evan Cheng0038e592006-03-28 00:39:58 +00003258/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3259/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003260static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003261 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003262 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003263
3264 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3265 "Unsupported vector type for unpckh");
3266
3267 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003268 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003269
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003270 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3271 // independently on 128-bit lanes.
3272 unsigned NumLanes = VT.getSizeInBits()/128;
3273 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003274
3275 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003276 unsigned End = NumLaneElts;
3277 for (unsigned s = 0; s < NumLanes; ++s) {
3278 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003279 i != End;
3280 i += 2, ++j) {
3281 int BitI = Mask[i];
3282 int BitI1 = Mask[i+1];
3283 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003284 return false;
David Greenea20244d2011-03-02 17:23:43 +00003285 if (V2IsSplat) {
3286 if (!isUndefOrEqual(BitI1, NumElts))
3287 return false;
3288 } else {
3289 if (!isUndefOrEqual(BitI1, j + NumElts))
3290 return false;
3291 }
Evan Cheng39623da2006-04-20 08:58:49 +00003292 }
David Greenea20244d2011-03-02 17:23:43 +00003293 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003294 Start += NumLaneElts;
3295 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003296 }
David Greenea20244d2011-03-02 17:23:43 +00003297
Evan Cheng0038e592006-03-28 00:39:58 +00003298 return true;
3299}
3300
Nate Begeman9008ca62009-04-27 18:41:29 +00003301bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3302 SmallVector<int, 8> M;
3303 N->getMask(M);
3304 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003305}
3306
Evan Cheng4fcb9222006-03-28 02:43:26 +00003307/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3308/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003309static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003310 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003311 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003312
3313 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3314 "Unsupported vector type for unpckh");
3315
3316 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003317 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003318
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003319 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3320 // independently on 128-bit lanes.
3321 unsigned NumLanes = VT.getSizeInBits()/128;
3322 unsigned NumLaneElts = NumElts/NumLanes;
3323
3324 unsigned Start = 0;
3325 unsigned End = NumLaneElts;
3326 for (unsigned l = 0; l != NumLanes; ++l) {
3327 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3328 i != End; i += 2, ++j) {
3329 int BitI = Mask[i];
3330 int BitI1 = Mask[i+1];
3331 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003332 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003333 if (V2IsSplat) {
3334 if (isUndefOrEqual(BitI1, NumElts))
3335 return false;
3336 } else {
3337 if (!isUndefOrEqual(BitI1, j+NumElts))
3338 return false;
3339 }
Evan Cheng39623da2006-04-20 08:58:49 +00003340 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003341 // Process the next 128 bits.
3342 Start += NumLaneElts;
3343 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003344 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003345 return true;
3346}
3347
Nate Begeman9008ca62009-04-27 18:41:29 +00003348bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3349 SmallVector<int, 8> M;
3350 N->getMask(M);
3351 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003352}
3353
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003354/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3355/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3356/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003357static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003358 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003359 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003360 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003361
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003362 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3363 // independently on 128-bit lanes.
3364 unsigned NumLanes = VT.getSizeInBits() / 128;
3365 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003366
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003367 for (unsigned s = 0; s < NumLanes; ++s) {
3368 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3369 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003370 i += 2, ++j) {
3371 int BitI = Mask[i];
3372 int BitI1 = Mask[i+1];
3373
3374 if (!isUndefOrEqual(BitI, j))
3375 return false;
3376 if (!isUndefOrEqual(BitI1, j))
3377 return false;
3378 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003379 }
David Greenea20244d2011-03-02 17:23:43 +00003380
Rafael Espindola15684b22009-04-24 12:40:33 +00003381 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003382}
3383
Nate Begeman9008ca62009-04-27 18:41:29 +00003384bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3385 SmallVector<int, 8> M;
3386 N->getMask(M);
3387 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3388}
3389
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003390/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3391/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3392/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003393static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003394 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003395 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3396 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003397
Nate Begeman9008ca62009-04-27 18:41:29 +00003398 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3399 int BitI = Mask[i];
3400 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003401 if (!isUndefOrEqual(BitI, j))
3402 return false;
3403 if (!isUndefOrEqual(BitI1, j))
3404 return false;
3405 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003406 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003407}
3408
Nate Begeman9008ca62009-04-27 18:41:29 +00003409bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3410 SmallVector<int, 8> M;
3411 N->getMask(M);
3412 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3413}
3414
Evan Cheng017dcc62006-04-21 01:05:10 +00003415/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3416/// specifies a shuffle of elements that is suitable for input to MOVSS,
3417/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003418static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003419 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003420 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003421
3422 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003423
Nate Begeman9008ca62009-04-27 18:41:29 +00003424 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003425 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003426
Nate Begeman9008ca62009-04-27 18:41:29 +00003427 for (int i = 1; i < NumElts; ++i)
3428 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003429 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003430
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003431 return true;
3432}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003433
Nate Begeman9008ca62009-04-27 18:41:29 +00003434bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3435 SmallVector<int, 8> M;
3436 N->getMask(M);
3437 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003438}
3439
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003440/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3441/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3442/// Note that VPERMIL mask matching is different depending whether theunderlying
3443/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3444/// to the same elements of the low, but to the higher half of the source.
3445/// In VPERMILPD the two lanes could be shuffled independently of each other
3446/// with the same restriction that lanes can't be crossed.
3447static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3448 const X86Subtarget *Subtarget) {
3449 int NumElts = VT.getVectorNumElements();
3450 int NumLanes = VT.getSizeInBits()/128;
3451
3452 if (!Subtarget->hasAVX())
3453 return false;
3454
3455 // Match any permutation of 128-bit vector with 64-bit types
3456 if (NumLanes == 1 && NumElts != 2)
3457 return false;
3458
3459 // Only match 256-bit with 32 types
3460 if (VT.getSizeInBits() == 256 && NumElts != 4)
3461 return false;
3462
3463 // The mask on the high lane is independent of the low. Both can match
3464 // any element in inside its own lane, but can't cross.
3465 int LaneSize = NumElts/NumLanes;
3466 for (int l = 0; l < NumLanes; ++l)
3467 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3468 int LaneStart = l*LaneSize;
3469 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3470 return false;
3471 }
3472
3473 return true;
3474}
3475
3476/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3477/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3478/// Note that VPERMIL mask matching is different depending whether theunderlying
3479/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3480/// to the same elements of the low, but to the higher half of the source.
3481/// In VPERMILPD the two lanes could be shuffled independently of each other
3482/// with the same restriction that lanes can't be crossed.
3483static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3484 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003485 unsigned NumElts = VT.getVectorNumElements();
3486 unsigned NumLanes = VT.getSizeInBits()/128;
3487
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003488 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003489 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003490
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003491 // Match any permutation of 128-bit vector with 32-bit types
3492 if (NumLanes == 1 && NumElts != 4)
3493 return false;
3494
3495 // Only match 256-bit with 32 types
3496 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003497 return false;
3498
3499 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003500 // they can differ if any of the corresponding index in a lane is undef
3501 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003502 int LaneSize = NumElts/NumLanes;
3503 for (int i = 0; i < LaneSize; ++i) {
3504 int HighElt = i+LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003505 if (Mask[i] < 0 && (isUndefOrInRange(Mask[HighElt], LaneSize, NumElts)))
3506 continue;
3507 if (Mask[HighElt] < 0 && (isUndefOrInRange(Mask[i], 0, LaneSize)))
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003508 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003509 if (Mask[HighElt]-Mask[i] != LaneSize)
3510 return false;
3511 }
3512
3513 return true;
3514}
3515
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003516/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3517/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3518static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003519 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3520 EVT VT = SVOp->getValueType(0);
3521
3522 int NumElts = VT.getVectorNumElements();
3523 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003524 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003525
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003526 // Although the mask is equal for both lanes do it twice to get the cases
3527 // where a mask will match because the same mask element is undef on the
3528 // first half but valid on the second. This would get pathological cases
3529 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003530 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003531 for (int l = 0; l < NumLanes; ++l) {
3532 for (int i = 0; i < LaneSize; ++i) {
3533 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3534 if (MaskElt < 0)
3535 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003536 if (MaskElt >= LaneSize)
3537 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003538 Mask |= MaskElt << (i*2);
3539 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003540 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003541
3542 return Mask;
3543}
3544
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003545/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3546/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3547static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3548 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3549 EVT VT = SVOp->getValueType(0);
3550
3551 int NumElts = VT.getVectorNumElements();
3552 int NumLanes = VT.getSizeInBits()/128;
3553
3554 unsigned Mask = 0;
3555 int LaneSize = NumElts/NumLanes;
3556 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003557 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3558 int MaskElt = SVOp->getMaskElt(i);
3559 if (MaskElt < 0)
3560 continue;
3561 Mask |= (MaskElt-l*LaneSize) << i;
3562 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003563
3564 return Mask;
3565}
3566
Evan Cheng017dcc62006-04-21 01:05:10 +00003567/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3568/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003569/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003570static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003571 bool V2IsSplat = false, bool V2IsUndef = false) {
3572 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003573 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003574 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003575
Nate Begeman9008ca62009-04-27 18:41:29 +00003576 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003577 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003578
Nate Begeman9008ca62009-04-27 18:41:29 +00003579 for (int i = 1; i < NumOps; ++i)
3580 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3581 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3582 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003583 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003584
Evan Cheng39623da2006-04-20 08:58:49 +00003585 return true;
3586}
3587
Nate Begeman9008ca62009-04-27 18:41:29 +00003588static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003589 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003590 SmallVector<int, 8> M;
3591 N->getMask(M);
3592 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003593}
3594
Evan Chengd9539472006-04-14 21:59:03 +00003595/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3596/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003597/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3598bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3599 const X86Subtarget *Subtarget) {
3600 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003601 return false;
3602
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003603 // The second vector must be undef
3604 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3605 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003606
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003607 EVT VT = N->getValueType(0);
3608 unsigned NumElems = VT.getVectorNumElements();
3609
3610 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3611 (VT.getSizeInBits() == 256 && NumElems != 8))
3612 return false;
3613
3614 // "i+1" is the value the indexed mask element must have
3615 for (unsigned i = 0; i < NumElems; i += 2)
3616 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3617 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003618 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003619
3620 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003621}
3622
3623/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3624/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003625/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3626bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3627 const X86Subtarget *Subtarget) {
3628 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003629 return false;
3630
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003631 // The second vector must be undef
3632 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3633 return false;
3634
3635 EVT VT = N->getValueType(0);
3636 unsigned NumElems = VT.getVectorNumElements();
3637
3638 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3639 (VT.getSizeInBits() == 256 && NumElems != 8))
3640 return false;
3641
3642 // "i" is the value the indexed mask element must have
3643 for (unsigned i = 0; i < NumElems; i += 2)
3644 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3645 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003646 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003647
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003648 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003649}
3650
Evan Cheng0b457f02008-09-25 20:50:48 +00003651/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3652/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003653bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3654 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003655
Nate Begeman9008ca62009-04-27 18:41:29 +00003656 for (int i = 0; i < e; ++i)
3657 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003658 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003659 for (int i = 0; i < e; ++i)
3660 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003661 return false;
3662 return true;
3663}
3664
David Greenec38a03e2011-02-03 15:50:00 +00003665/// isVEXTRACTF128Index - Return true if the specified
3666/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3667/// suitable for input to VEXTRACTF128.
3668bool X86::isVEXTRACTF128Index(SDNode *N) {
3669 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3670 return false;
3671
3672 // The index should be aligned on a 128-bit boundary.
3673 uint64_t Index =
3674 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3675
3676 unsigned VL = N->getValueType(0).getVectorNumElements();
3677 unsigned VBits = N->getValueType(0).getSizeInBits();
3678 unsigned ElSize = VBits / VL;
3679 bool Result = (Index * ElSize) % 128 == 0;
3680
3681 return Result;
3682}
3683
David Greeneccacdc12011-02-04 16:08:29 +00003684/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3685/// operand specifies a subvector insert that is suitable for input to
3686/// VINSERTF128.
3687bool X86::isVINSERTF128Index(SDNode *N) {
3688 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3689 return false;
3690
3691 // The index should be aligned on a 128-bit boundary.
3692 uint64_t Index =
3693 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3694
3695 unsigned VL = N->getValueType(0).getVectorNumElements();
3696 unsigned VBits = N->getValueType(0).getSizeInBits();
3697 unsigned ElSize = VBits / VL;
3698 bool Result = (Index * ElSize) % 128 == 0;
3699
3700 return Result;
3701}
3702
Evan Cheng63d33002006-03-22 08:01:21 +00003703/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003704/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003705unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003706 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3707 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3708
Evan Chengb9df0ca2006-03-22 02:53:00 +00003709 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3710 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003711 for (int i = 0; i < NumOperands; ++i) {
3712 int Val = SVOp->getMaskElt(NumOperands-i-1);
3713 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003714 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003715 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003716 if (i != NumOperands - 1)
3717 Mask <<= Shift;
3718 }
Evan Cheng63d33002006-03-22 08:01:21 +00003719 return Mask;
3720}
3721
Evan Cheng506d3df2006-03-29 23:07:14 +00003722/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003723/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003724unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003725 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003726 unsigned Mask = 0;
3727 // 8 nodes, but we only care about the last 4.
3728 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003729 int Val = SVOp->getMaskElt(i);
3730 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003731 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003732 if (i != 4)
3733 Mask <<= 2;
3734 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003735 return Mask;
3736}
3737
3738/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003739/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003740unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003741 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003742 unsigned Mask = 0;
3743 // 8 nodes, but we only care about the first 4.
3744 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003745 int Val = SVOp->getMaskElt(i);
3746 if (Val >= 0)
3747 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003748 if (i != 0)
3749 Mask <<= 2;
3750 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003751 return Mask;
3752}
3753
Nate Begemana09008b2009-10-19 02:17:23 +00003754/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3755/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3756unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3757 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3758 EVT VVT = N->getValueType(0);
3759 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3760 int Val = 0;
3761
3762 unsigned i, e;
3763 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3764 Val = SVOp->getMaskElt(i);
3765 if (Val >= 0)
3766 break;
3767 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003768 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003769 return (Val - i) * EltSize;
3770}
3771
David Greenec38a03e2011-02-03 15:50:00 +00003772/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3773/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3774/// instructions.
3775unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3776 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3777 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3778
3779 uint64_t Index =
3780 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3781
3782 EVT VecVT = N->getOperand(0).getValueType();
3783 EVT ElVT = VecVT.getVectorElementType();
3784
3785 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003786 return Index / NumElemsPerChunk;
3787}
3788
David Greeneccacdc12011-02-04 16:08:29 +00003789/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3790/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3791/// instructions.
3792unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3793 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3794 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3795
3796 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003797 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003798
3799 EVT VecVT = N->getValueType(0);
3800 EVT ElVT = VecVT.getVectorElementType();
3801
3802 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003803 return Index / NumElemsPerChunk;
3804}
3805
Evan Cheng37b73872009-07-30 08:33:02 +00003806/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3807/// constant +0.0.
3808bool X86::isZeroNode(SDValue Elt) {
3809 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003810 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003811 (isa<ConstantFPSDNode>(Elt) &&
3812 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3813}
3814
Nate Begeman9008ca62009-04-27 18:41:29 +00003815/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3816/// their permute mask.
3817static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3818 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003819 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003820 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003821 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003822
Nate Begeman5a5ca152009-04-29 05:20:52 +00003823 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003824 int idx = SVOp->getMaskElt(i);
3825 if (idx < 0)
3826 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003827 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003828 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003829 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003830 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003831 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003832 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3833 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003834}
3835
Evan Cheng779ccea2007-12-07 21:30:01 +00003836/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3837/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003838static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003839 unsigned NumElems = VT.getVectorNumElements();
3840 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003841 int idx = Mask[i];
3842 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003843 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003844 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003845 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003846 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003847 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003848 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003849}
3850
Evan Cheng533a0aa2006-04-19 20:35:22 +00003851/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3852/// match movhlps. The lower half elements should come from upper half of
3853/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003854/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003855static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3856 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003857 return false;
3858 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003859 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003860 return false;
3861 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003862 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003863 return false;
3864 return true;
3865}
3866
Evan Cheng5ced1d82006-04-06 23:23:56 +00003867/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003868/// is promoted to a vector. It also returns the LoadSDNode by reference if
3869/// required.
3870static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003871 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3872 return false;
3873 N = N->getOperand(0).getNode();
3874 if (!ISD::isNON_EXTLoad(N))
3875 return false;
3876 if (LD)
3877 *LD = cast<LoadSDNode>(N);
3878 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003879}
3880
Evan Cheng533a0aa2006-04-19 20:35:22 +00003881/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3882/// match movlp{s|d}. The lower half elements should come from lower half of
3883/// V1 (and in order), and the upper half elements should come from the upper
3884/// half of V2 (and in order). And since V1 will become the source of the
3885/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003886static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3887 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003888 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003889 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003890 // Is V2 is a vector load, don't do this transformation. We will try to use
3891 // load folding shufps op.
3892 if (ISD::isNON_EXTLoad(V2))
3893 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003894
Nate Begeman5a5ca152009-04-29 05:20:52 +00003895 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003896
Evan Cheng533a0aa2006-04-19 20:35:22 +00003897 if (NumElems != 2 && NumElems != 4)
3898 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003899 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003900 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003901 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003902 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003903 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003904 return false;
3905 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003906}
3907
Evan Cheng39623da2006-04-20 08:58:49 +00003908/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3909/// all the same.
3910static bool isSplatVector(SDNode *N) {
3911 if (N->getOpcode() != ISD::BUILD_VECTOR)
3912 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003913
Dan Gohman475871a2008-07-27 21:46:04 +00003914 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003915 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3916 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003917 return false;
3918 return true;
3919}
3920
Evan Cheng213d2cf2007-05-17 18:45:50 +00003921/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003922/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003923/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003924static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003925 SDValue V1 = N->getOperand(0);
3926 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003927 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3928 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003929 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003930 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003931 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003932 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3933 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003934 if (Opc != ISD::BUILD_VECTOR ||
3935 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003936 return false;
3937 } else if (Idx >= 0) {
3938 unsigned Opc = V1.getOpcode();
3939 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3940 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003941 if (Opc != ISD::BUILD_VECTOR ||
3942 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003943 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003944 }
3945 }
3946 return true;
3947}
3948
3949/// getZeroVector - Returns a vector of specified type with all zero elements.
3950///
Owen Andersone50ed302009-08-10 22:56:29 +00003951static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003952 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003953 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003954
Dale Johannesen0488fb62010-09-30 23:57:10 +00003955 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003956 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003957 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003958 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003959 if (HasSSE2) { // SSE2
3960 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3961 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3962 } else { // SSE1
3963 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3964 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3965 }
3966 } else if (VT.getSizeInBits() == 256) { // AVX
3967 // 256-bit logic and arithmetic instructions in AVX are
3968 // all floating-point, no support for integer ops. Default
3969 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003970 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003971 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3972 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003973 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003974 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003975}
3976
Chris Lattner8a594482007-11-25 00:24:49 +00003977/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003978/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
3979/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
3980/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00003981static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003982 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003983 assert((VT.is128BitVector() || VT.is256BitVector())
3984 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003985
Owen Anderson825b72b2009-08-11 20:47:22 +00003986 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003987 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3988 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003989
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003990 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003991 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
3992 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
3993 Vec = Insert128BitVector(InsV, Vec,
3994 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
3995 }
3996
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003997 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003998}
3999
Evan Cheng39623da2006-04-20 08:58:49 +00004000/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4001/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004002static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004003 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004004 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004005
Evan Cheng39623da2006-04-20 08:58:49 +00004006 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004007 SmallVector<int, 8> MaskVec;
4008 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004009
Nate Begeman5a5ca152009-04-29 05:20:52 +00004010 for (unsigned i = 0; i != NumElems; ++i) {
4011 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004012 MaskVec[i] = NumElems;
4013 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004014 }
Evan Cheng39623da2006-04-20 08:58:49 +00004015 }
Evan Cheng39623da2006-04-20 08:58:49 +00004016 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004017 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4018 SVOp->getOperand(1), &MaskVec[0]);
4019 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004020}
4021
Evan Cheng017dcc62006-04-21 01:05:10 +00004022/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4023/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004024static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004025 SDValue V2) {
4026 unsigned NumElems = VT.getVectorNumElements();
4027 SmallVector<int, 8> Mask;
4028 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004029 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004030 Mask.push_back(i);
4031 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004032}
4033
Nate Begeman9008ca62009-04-27 18:41:29 +00004034/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004035static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004036 SDValue V2) {
4037 unsigned NumElems = VT.getVectorNumElements();
4038 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004039 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004040 Mask.push_back(i);
4041 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004042 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004043 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004044}
4045
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004046/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004047static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004048 SDValue V2) {
4049 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004050 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004051 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004052 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004053 Mask.push_back(i + Half);
4054 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004055 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004056 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004057}
4058
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004059// PromoteSplatv8v16 - All i16 and i8 vector types can't be used directly by
4060// a generic shuffle instruction because the target has no such instructions.
4061// Generate shuffles which repeat i16 and i8 several times until they can be
4062// represented by v4f32 and then be manipulated by target suported shuffles.
4063static SDValue PromoteSplatv8v16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4064 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004065 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004066 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004067
Nate Begeman9008ca62009-04-27 18:41:29 +00004068 while (NumElems > 4) {
4069 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004070 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004071 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004072 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004073 EltNo -= NumElems/2;
4074 }
4075 NumElems >>= 1;
4076 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004077 return V;
4078}
Eric Christopherfd179292009-08-27 18:07:15 +00004079
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004080/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4081static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4082 EVT VT = V.getValueType();
4083 DebugLoc dl = V.getDebugLoc();
4084 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4085 && "Vector size not supported");
4086
4087 bool Is128 = VT.getSizeInBits() == 128;
4088 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
4089 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
4090
4091 if (Is128) {
4092 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4093 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4094 } else {
4095 // The second half of indicies refer to the higher part, which is a
4096 // duplication of the lower one. This makes this shuffle a perfect match
4097 // for the VPERM instruction.
4098 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4099 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4100 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4101 }
4102
4103 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4104}
4105
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00004106/// PromoteVectorToScalarSplat - Since there's no native support for
4107/// scalar_to_vector for 256-bit AVX, a 128-bit scalar_to_vector +
4108/// INSERT_SUBVECTOR is generated. Recognize this idiom and do the
4109/// shuffle before the insertion, this yields less instructions in the end.
4110static SDValue PromoteVectorToScalarSplat(ShuffleVectorSDNode *SV,
4111 SelectionDAG &DAG) {
4112 EVT SrcVT = SV->getValueType(0);
4113 SDValue V1 = SV->getOperand(0);
4114 DebugLoc dl = SV->getDebugLoc();
4115 int NumElems = SrcVT.getVectorNumElements();
4116
4117 assert(SrcVT.is256BitVector() && "unknown howto handle vector type");
4118
4119 SmallVector<int, 4> Mask;
4120 for (int i = 0; i < NumElems/2; ++i)
4121 Mask.push_back(SV->getMaskElt(i));
4122
4123 EVT SVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
4124 NumElems/2);
4125 SDValue SV1 = DAG.getVectorShuffle(SVT, dl, V1.getOperand(1),
4126 DAG.getUNDEF(SVT), &Mask[0]);
4127 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), SV1,
4128 DAG.getConstant(0, MVT::i32), DAG, dl);
4129
4130 return Insert128BitVector(InsV, SV1,
4131 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4132}
4133
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004134/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32 and
4135/// v8i32, v16i16 or v32i8 to v8f32.
4136static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4137 EVT SrcVT = SV->getValueType(0);
4138 SDValue V1 = SV->getOperand(0);
4139 DebugLoc dl = SV->getDebugLoc();
4140
4141 int EltNo = SV->getSplatIndex();
4142 int NumElems = SrcVT.getVectorNumElements();
4143 unsigned Size = SrcVT.getSizeInBits();
4144
4145 // Extract the 128-bit part containing the splat element and update
4146 // the splat element index when it refers to the higher register.
4147 if (Size == 256) {
4148 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4149 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4150 if (Idx > 0)
4151 EltNo -= NumElems/2;
4152 }
4153
4154 // Make this 128-bit vector duplicate i8 and i16 elements
4155 if (NumElems > 4)
4156 V1 = PromoteSplatv8v16(V1, DAG, EltNo);
4157
4158 // Recreate the 256-bit vector and place the same 128-bit vector
4159 // into the low and high part. This is necessary because we want
4160 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4161 // inside each separate v4f32 lane.
4162 if (Size == 256) {
4163 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4164 DAG.getConstant(0, MVT::i32), DAG, dl);
4165 V1 = Insert128BitVector(InsV, V1,
4166 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4167 }
4168
4169 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004170}
4171
Evan Chengba05f722006-04-21 23:03:30 +00004172/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004173/// vector of zero or undef vector. This produces a shuffle where the low
4174/// element of V2 is swizzled into the zero/undef vector, landing at element
4175/// 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 +00004176static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004177 bool isZero, bool HasSSE2,
4178 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004179 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004180 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004181 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4182 unsigned NumElems = VT.getVectorNumElements();
4183 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004184 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004185 // If this is the insertion idx, put the low elt of V2 here.
4186 MaskVec.push_back(i == Idx ? NumElems : i);
4187 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004188}
4189
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004190/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4191/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004192static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4193 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004194 if (Depth == 6)
4195 return SDValue(); // Limit search depth.
4196
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004197 SDValue V = SDValue(N, 0);
4198 EVT VT = V.getValueType();
4199 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004200
4201 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4202 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4203 Index = SV->getMaskElt(Index);
4204
4205 if (Index < 0)
4206 return DAG.getUNDEF(VT.getVectorElementType());
4207
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004208 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004209 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004210 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004211 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004212
4213 // Recurse into target specific vector shuffles to find scalars.
4214 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004215 int NumElems = VT.getVectorNumElements();
4216 SmallVector<unsigned, 16> ShuffleMask;
4217 SDValue ImmN;
4218
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004219 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004220 case X86ISD::SHUFPS:
4221 case X86ISD::SHUFPD:
4222 ImmN = N->getOperand(N->getNumOperands()-1);
4223 DecodeSHUFPSMask(NumElems,
4224 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4225 ShuffleMask);
4226 break;
4227 case X86ISD::PUNPCKHBW:
4228 case X86ISD::PUNPCKHWD:
4229 case X86ISD::PUNPCKHDQ:
4230 case X86ISD::PUNPCKHQDQ:
4231 DecodePUNPCKHMask(NumElems, ShuffleMask);
4232 break;
4233 case X86ISD::UNPCKHPS:
4234 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004235 case X86ISD::VUNPCKHPSY:
4236 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004237 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4238 break;
4239 case X86ISD::PUNPCKLBW:
4240 case X86ISD::PUNPCKLWD:
4241 case X86ISD::PUNPCKLDQ:
4242 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004243 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004244 break;
4245 case X86ISD::UNPCKLPS:
4246 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004247 case X86ISD::VUNPCKLPSY:
4248 case X86ISD::VUNPCKLPDY:
4249 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004250 break;
4251 case X86ISD::MOVHLPS:
4252 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4253 break;
4254 case X86ISD::MOVLHPS:
4255 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4256 break;
4257 case X86ISD::PSHUFD:
4258 ImmN = N->getOperand(N->getNumOperands()-1);
4259 DecodePSHUFMask(NumElems,
4260 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4261 ShuffleMask);
4262 break;
4263 case X86ISD::PSHUFHW:
4264 ImmN = N->getOperand(N->getNumOperands()-1);
4265 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4266 ShuffleMask);
4267 break;
4268 case X86ISD::PSHUFLW:
4269 ImmN = N->getOperand(N->getNumOperands()-1);
4270 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4271 ShuffleMask);
4272 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004273 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004274 case X86ISD::MOVSD: {
4275 // The index 0 always comes from the first element of the second source,
4276 // this is why MOVSS and MOVSD are used in the first place. The other
4277 // elements come from the other positions of the first source vector.
4278 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004279 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4280 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004281 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004282 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004283 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004284 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004285 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004286 break;
4287 case X86ISD::VPERMILPSY:
4288 ImmN = N->getOperand(N->getNumOperands()-1);
4289 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4290 ShuffleMask);
4291 break;
4292 case X86ISD::VPERMILPD:
4293 ImmN = N->getOperand(N->getNumOperands()-1);
4294 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4295 ShuffleMask);
4296 break;
4297 case X86ISD::VPERMILPDY:
4298 ImmN = N->getOperand(N->getNumOperands()-1);
4299 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4300 ShuffleMask);
4301 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004302 default:
4303 assert("not implemented for target shuffle node");
4304 return SDValue();
4305 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004306
4307 Index = ShuffleMask[Index];
4308 if (Index < 0)
4309 return DAG.getUNDEF(VT.getVectorElementType());
4310
4311 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4312 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4313 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004314 }
4315
4316 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004317 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004318 V = V.getOperand(0);
4319 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004320 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004321
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004322 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004323 return SDValue();
4324 }
4325
4326 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4327 return (Index == 0) ? V.getOperand(0)
4328 : DAG.getUNDEF(VT.getVectorElementType());
4329
4330 if (V.getOpcode() == ISD::BUILD_VECTOR)
4331 return V.getOperand(Index);
4332
4333 return SDValue();
4334}
4335
4336/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4337/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004338/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004339static
4340unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4341 bool ZerosFromLeft, SelectionDAG &DAG) {
4342 int i = 0;
4343
4344 while (i < NumElems) {
4345 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004346 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004347 if (!(Elt.getNode() &&
4348 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4349 break;
4350 ++i;
4351 }
4352
4353 return i;
4354}
4355
4356/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4357/// MaskE correspond consecutively to elements from one of the vector operands,
4358/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4359static
4360bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4361 int OpIdx, int NumElems, unsigned &OpNum) {
4362 bool SeenV1 = false;
4363 bool SeenV2 = false;
4364
4365 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4366 int Idx = SVOp->getMaskElt(i);
4367 // Ignore undef indicies
4368 if (Idx < 0)
4369 continue;
4370
4371 if (Idx < NumElems)
4372 SeenV1 = true;
4373 else
4374 SeenV2 = true;
4375
4376 // Only accept consecutive elements from the same vector
4377 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4378 return false;
4379 }
4380
4381 OpNum = SeenV1 ? 0 : 1;
4382 return true;
4383}
4384
4385/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4386/// logical left shift of a vector.
4387static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4388 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4389 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4390 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4391 false /* check zeros from right */, DAG);
4392 unsigned OpSrc;
4393
4394 if (!NumZeros)
4395 return false;
4396
4397 // Considering the elements in the mask that are not consecutive zeros,
4398 // check if they consecutively come from only one of the source vectors.
4399 //
4400 // V1 = {X, A, B, C} 0
4401 // \ \ \ /
4402 // vector_shuffle V1, V2 <1, 2, 3, X>
4403 //
4404 if (!isShuffleMaskConsecutive(SVOp,
4405 0, // Mask Start Index
4406 NumElems-NumZeros-1, // Mask End Index
4407 NumZeros, // Where to start looking in the src vector
4408 NumElems, // Number of elements in vector
4409 OpSrc)) // Which source operand ?
4410 return false;
4411
4412 isLeft = false;
4413 ShAmt = NumZeros;
4414 ShVal = SVOp->getOperand(OpSrc);
4415 return true;
4416}
4417
4418/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4419/// logical left shift of a vector.
4420static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4421 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4422 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4423 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4424 true /* check zeros from left */, DAG);
4425 unsigned OpSrc;
4426
4427 if (!NumZeros)
4428 return false;
4429
4430 // Considering the elements in the mask that are not consecutive zeros,
4431 // check if they consecutively come from only one of the source vectors.
4432 //
4433 // 0 { A, B, X, X } = V2
4434 // / \ / /
4435 // vector_shuffle V1, V2 <X, X, 4, 5>
4436 //
4437 if (!isShuffleMaskConsecutive(SVOp,
4438 NumZeros, // Mask Start Index
4439 NumElems-1, // Mask End Index
4440 0, // Where to start looking in the src vector
4441 NumElems, // Number of elements in vector
4442 OpSrc)) // Which source operand ?
4443 return false;
4444
4445 isLeft = true;
4446 ShAmt = NumZeros;
4447 ShVal = SVOp->getOperand(OpSrc);
4448 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004449}
4450
4451/// isVectorShift - Returns true if the shuffle can be implemented as a
4452/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004453static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004454 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004455 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4456 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4457 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004458
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004459 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004460}
4461
Evan Chengc78d3b42006-04-24 18:01:45 +00004462/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4463///
Dan Gohman475871a2008-07-27 21:46:04 +00004464static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004465 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004466 SelectionDAG &DAG,
4467 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004468 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004469 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004470
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004471 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004472 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004473 bool First = true;
4474 for (unsigned i = 0; i < 16; ++i) {
4475 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4476 if (ThisIsNonZero && First) {
4477 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004478 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004479 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004480 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004481 First = false;
4482 }
4483
4484 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004485 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004486 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4487 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004488 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004489 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004490 }
4491 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004492 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4493 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4494 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004495 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004496 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004497 } else
4498 ThisElt = LastElt;
4499
Gabor Greifba36cb52008-08-28 21:40:38 +00004500 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004501 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004502 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004503 }
4504 }
4505
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004506 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004507}
4508
Bill Wendlinga348c562007-03-22 18:42:45 +00004509/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004510///
Dan Gohman475871a2008-07-27 21:46:04 +00004511static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004512 unsigned NumNonZero, unsigned NumZero,
4513 SelectionDAG &DAG,
4514 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004515 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004516 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004517
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004518 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004519 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004520 bool First = true;
4521 for (unsigned i = 0; i < 8; ++i) {
4522 bool isNonZero = (NonZeros & (1 << i)) != 0;
4523 if (isNonZero) {
4524 if (First) {
4525 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004526 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004527 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004528 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004529 First = false;
4530 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004531 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004532 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004533 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004534 }
4535 }
4536
4537 return V;
4538}
4539
Evan Chengf26ffe92008-05-29 08:22:04 +00004540/// getVShift - Return a vector logical shift node.
4541///
Owen Andersone50ed302009-08-10 22:56:29 +00004542static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004543 unsigned NumBits, SelectionDAG &DAG,
4544 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004545 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004546 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004547 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4548 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004549 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004550 DAG.getConstant(NumBits,
4551 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004552}
4553
Dan Gohman475871a2008-07-27 21:46:04 +00004554SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004555X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004556 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004557
Evan Chengc3630942009-12-09 21:00:30 +00004558 // Check if the scalar load can be widened into a vector load. And if
4559 // the address is "base + cst" see if the cst can be "absorbed" into
4560 // the shuffle mask.
4561 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4562 SDValue Ptr = LD->getBasePtr();
4563 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4564 return SDValue();
4565 EVT PVT = LD->getValueType(0);
4566 if (PVT != MVT::i32 && PVT != MVT::f32)
4567 return SDValue();
4568
4569 int FI = -1;
4570 int64_t Offset = 0;
4571 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4572 FI = FINode->getIndex();
4573 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004574 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004575 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4576 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4577 Offset = Ptr.getConstantOperandVal(1);
4578 Ptr = Ptr.getOperand(0);
4579 } else {
4580 return SDValue();
4581 }
4582
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004583 // FIXME: 256-bit vector instructions don't require a strict alignment,
4584 // improve this code to support it better.
4585 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004586 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004587 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004588 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004589 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004590 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004591 // Can't change the alignment. FIXME: It's possible to compute
4592 // the exact stack offset and reference FI + adjust offset instead.
4593 // If someone *really* cares about this. That's the way to implement it.
4594 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004595 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004596 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004597 }
4598 }
4599
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004600 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004601 // Ptr + (Offset & ~15).
4602 if (Offset < 0)
4603 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004604 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004605 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004606 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004607 if (StartOffset)
4608 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4609 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4610
4611 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004612 int NumElems = VT.getVectorNumElements();
4613
4614 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4615 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4616 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004617 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004618 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004619
4620 // Canonicalize it to a v4i32 or v8i32 shuffle.
4621 SmallVector<int, 8> Mask;
4622 for (int i = 0; i < NumElems; ++i)
4623 Mask.push_back(EltNo);
4624
4625 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4626 return DAG.getNode(ISD::BITCAST, dl, NVT,
4627 DAG.getVectorShuffle(CanonVT, dl, V1,
4628 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004629 }
4630
4631 return SDValue();
4632}
4633
Michael J. Spencerec38de22010-10-10 22:04:20 +00004634/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4635/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004636/// load which has the same value as a build_vector whose operands are 'elts'.
4637///
4638/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004639///
Nate Begeman1449f292010-03-24 22:19:06 +00004640/// FIXME: we'd also like to handle the case where the last elements are zero
4641/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4642/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004643static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004644 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004645 EVT EltVT = VT.getVectorElementType();
4646 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004647
Nate Begemanfdea31a2010-03-24 20:49:50 +00004648 LoadSDNode *LDBase = NULL;
4649 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004650
Nate Begeman1449f292010-03-24 22:19:06 +00004651 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004652 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004653 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004654 for (unsigned i = 0; i < NumElems; ++i) {
4655 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004656
Nate Begemanfdea31a2010-03-24 20:49:50 +00004657 if (!Elt.getNode() ||
4658 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4659 return SDValue();
4660 if (!LDBase) {
4661 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4662 return SDValue();
4663 LDBase = cast<LoadSDNode>(Elt.getNode());
4664 LastLoadedElt = i;
4665 continue;
4666 }
4667 if (Elt.getOpcode() == ISD::UNDEF)
4668 continue;
4669
4670 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4671 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4672 return SDValue();
4673 LastLoadedElt = i;
4674 }
Nate Begeman1449f292010-03-24 22:19:06 +00004675
4676 // If we have found an entire vector of loads and undefs, then return a large
4677 // load of the entire vector width starting at the base pointer. If we found
4678 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004679 if (LastLoadedElt == NumElems - 1) {
4680 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004681 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004682 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004683 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004684 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004685 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004686 LDBase->isVolatile(), LDBase->isNonTemporal(),
4687 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004688 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4689 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004690 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4691 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004692 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4693 Ops, 2, MVT::i32,
4694 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004695 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004696 }
4697 return SDValue();
4698}
4699
Evan Chengc3630942009-12-09 21:00:30 +00004700SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004701X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004702 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004703
David Greenef125a292011-02-08 19:04:41 +00004704 EVT VT = Op.getValueType();
4705 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004706 unsigned NumElems = Op.getNumOperands();
4707
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004708 // Vectors containing all zeros can be matched by pxor and xorps later
4709 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
4710 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
4711 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004712 if (Op.getValueType() == MVT::v4i32 ||
4713 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004714 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004715
Dale Johannesenace16102009-02-03 19:33:06 +00004716 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004717 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004718
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004719 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
4720 // vectors or broken into v4i32 operations on 256-bit vectors.
4721 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
4722 if (Op.getValueType() == MVT::v4i32)
4723 return Op;
4724
4725 return getOnesVector(Op.getValueType(), DAG, dl);
4726 }
4727
Owen Andersone50ed302009-08-10 22:56:29 +00004728 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004729
Evan Cheng0db9fe62006-04-25 20:13:52 +00004730 unsigned NumZero = 0;
4731 unsigned NumNonZero = 0;
4732 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004733 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004734 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004735 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004736 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004737 if (Elt.getOpcode() == ISD::UNDEF)
4738 continue;
4739 Values.insert(Elt);
4740 if (Elt.getOpcode() != ISD::Constant &&
4741 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004742 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004743 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004744 NumZero++;
4745 else {
4746 NonZeros |= (1 << i);
4747 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004748 }
4749 }
4750
Chris Lattner97a2a562010-08-26 05:24:29 +00004751 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4752 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004753 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004754
Chris Lattner67f453a2008-03-09 05:42:06 +00004755 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004756 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004757 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004758 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004759
Chris Lattner62098042008-03-09 01:05:04 +00004760 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4761 // the value are obviously zero, truncate the value to i32 and do the
4762 // insertion that way. Only do this if the value is non-constant or if the
4763 // value is a constant being inserted into element 0. It is cheaper to do
4764 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004765 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004766 (!IsAllConstants || Idx == 0)) {
4767 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004768 // Handle SSE only.
4769 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4770 EVT VecVT = MVT::v4i32;
4771 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004772
Chris Lattner62098042008-03-09 01:05:04 +00004773 // Truncate the value (which may itself be a constant) to i32, and
4774 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004775 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004776 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004777 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4778 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004779
Chris Lattner62098042008-03-09 01:05:04 +00004780 // Now we have our 32-bit value zero extended in the low element of
4781 // a vector. If Idx != 0, swizzle it into place.
4782 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004783 SmallVector<int, 4> Mask;
4784 Mask.push_back(Idx);
4785 for (unsigned i = 1; i != VecElts; ++i)
4786 Mask.push_back(i);
4787 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004788 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004789 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004790 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004791 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004792 }
4793 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004794
Chris Lattner19f79692008-03-08 22:59:52 +00004795 // If we have a constant or non-constant insertion into the low element of
4796 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4797 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004798 // depending on what the source datatype is.
4799 if (Idx == 0) {
4800 if (NumZero == 0) {
4801 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004802 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4803 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004804 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4805 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4806 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4807 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004808 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4809 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004810 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4811 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004812 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4813 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4814 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004815 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004816 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004817 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004818
4819 // Is it a vector logical left shift?
4820 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004821 X86::isZeroNode(Op.getOperand(0)) &&
4822 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004823 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004824 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004825 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004826 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004827 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004828 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004829
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004830 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004831 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004832
Chris Lattner19f79692008-03-08 22:59:52 +00004833 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4834 // is a non-constant being inserted into an element other than the low one,
4835 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4836 // movd/movss) to move this into the low element, then shuffle it into
4837 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004838 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004839 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004840
Evan Cheng0db9fe62006-04-25 20:13:52 +00004841 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004842 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4843 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004844 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004845 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004846 MaskVec.push_back(i == Idx ? 0 : 1);
4847 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004848 }
4849 }
4850
Chris Lattner67f453a2008-03-09 05:42:06 +00004851 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004852 if (Values.size() == 1) {
4853 if (EVTBits == 32) {
4854 // Instead of a shuffle like this:
4855 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4856 // Check if it's possible to issue this instead.
4857 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4858 unsigned Idx = CountTrailingZeros_32(NonZeros);
4859 SDValue Item = Op.getOperand(Idx);
4860 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4861 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4862 }
Dan Gohman475871a2008-07-27 21:46:04 +00004863 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004864 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004865
Dan Gohmana3941172007-07-24 22:55:08 +00004866 // A vector full of immediates; various special cases are already
4867 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004868 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004869 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004870
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004871 // For AVX-length vectors, build the individual 128-bit pieces and use
4872 // shuffles to put them in place.
4873 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4874 SmallVector<SDValue, 32> V;
4875 for (unsigned i = 0; i < NumElems; ++i)
4876 V.push_back(Op.getOperand(i));
4877
4878 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4879
4880 // Build both the lower and upper subvector.
4881 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4882 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4883 NumElems/2);
4884
4885 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00004886 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4887 DAG.getConstant(0, MVT::i32), DAG, dl);
4888 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004889 DAG, dl);
4890 }
4891
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004892 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004893 if (EVTBits == 64) {
4894 if (NumNonZero == 1) {
4895 // One half is zero or undef.
4896 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004897 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004898 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004899 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4900 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004901 }
Dan Gohman475871a2008-07-27 21:46:04 +00004902 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004903 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004904
4905 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004906 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004907 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004908 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004909 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004910 }
4911
Bill Wendling826f36f2007-03-28 00:57:11 +00004912 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004913 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004914 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004915 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004916 }
4917
4918 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004919 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004920 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004921 if (NumElems == 4 && NumZero > 0) {
4922 for (unsigned i = 0; i < 4; ++i) {
4923 bool isZero = !(NonZeros & (1 << i));
4924 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004925 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004926 else
Dale Johannesenace16102009-02-03 19:33:06 +00004927 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004928 }
4929
4930 for (unsigned i = 0; i < 2; ++i) {
4931 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4932 default: break;
4933 case 0:
4934 V[i] = V[i*2]; // Must be a zero vector.
4935 break;
4936 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004937 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004938 break;
4939 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004940 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004941 break;
4942 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004943 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004944 break;
4945 }
4946 }
4947
Nate Begeman9008ca62009-04-27 18:41:29 +00004948 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004949 bool Reverse = (NonZeros & 0x3) == 2;
4950 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004951 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004952 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4953 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004954 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4955 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004956 }
4957
Nate Begemanfdea31a2010-03-24 20:49:50 +00004958 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4959 // Check for a build vector of consecutive loads.
4960 for (unsigned i = 0; i < NumElems; ++i)
4961 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004962
Nate Begemanfdea31a2010-03-24 20:49:50 +00004963 // Check for elements which are consecutive loads.
4964 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4965 if (LD.getNode())
4966 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004967
4968 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004969 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004970 SDValue Result;
4971 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4972 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4973 else
4974 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004975
Chris Lattner24faf612010-08-28 17:59:08 +00004976 for (unsigned i = 1; i < NumElems; ++i) {
4977 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4978 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004979 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004980 }
4981 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004982 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004983
Chris Lattner6e80e442010-08-28 17:15:43 +00004984 // Otherwise, expand into a number of unpckl*, start by extending each of
4985 // our (non-undef) elements to the full vector width with the element in the
4986 // bottom slot of the vector (which generates no code for SSE).
4987 for (unsigned i = 0; i < NumElems; ++i) {
4988 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4989 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4990 else
4991 V[i] = DAG.getUNDEF(VT);
4992 }
4993
4994 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004995 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4996 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4997 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004998 unsigned EltStride = NumElems >> 1;
4999 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005000 for (unsigned i = 0; i < EltStride; ++i) {
5001 // If V[i+EltStride] is undef and this is the first round of mixing,
5002 // then it is safe to just drop this shuffle: V[i] is already in the
5003 // right place, the one element (since it's the first round) being
5004 // inserted as undef can be dropped. This isn't safe for successive
5005 // rounds because they will permute elements within both vectors.
5006 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5007 EltStride == NumElems/2)
5008 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005009
Chris Lattner6e80e442010-08-28 17:15:43 +00005010 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005011 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005012 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005013 }
5014 return V[0];
5015 }
Dan Gohman475871a2008-07-27 21:46:04 +00005016 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005017}
5018
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005019// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5020// them in a MMX register. This is better than doing a stack convert.
5021static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005022 DebugLoc dl = Op.getDebugLoc();
5023 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005024
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005025 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5026 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5027 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005028 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005029 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5030 InVec = Op.getOperand(1);
5031 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5032 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005033 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005034 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5035 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5036 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005037 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005038 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5039 Mask[0] = 0; Mask[1] = 2;
5040 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5041 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005042 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005043}
5044
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005045// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5046// to create 256-bit vectors from two other 128-bit ones.
5047static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5048 DebugLoc dl = Op.getDebugLoc();
5049 EVT ResVT = Op.getValueType();
5050
5051 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5052
5053 SDValue V1 = Op.getOperand(0);
5054 SDValue V2 = Op.getOperand(1);
5055 unsigned NumElems = ResVT.getVectorNumElements();
5056
5057 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5058 DAG.getConstant(0, MVT::i32), DAG, dl);
5059 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5060 DAG, dl);
5061}
5062
5063SDValue
5064X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005065 EVT ResVT = Op.getValueType();
5066
5067 assert(Op.getNumOperands() == 2);
5068 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5069 "Unsupported CONCAT_VECTORS for value type");
5070
5071 // We support concatenate two MMX registers and place them in a MMX register.
5072 // This is better than doing a stack convert.
5073 if (ResVT.is128BitVector())
5074 return LowerMMXCONCAT_VECTORS(Op, DAG);
5075
5076 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5077 // from two other 128-bit ones.
5078 return LowerAVXCONCAT_VECTORS(Op, DAG);
5079}
5080
Nate Begemanb9a47b82009-02-23 08:49:38 +00005081// v8i16 shuffles - Prefer shuffles in the following order:
5082// 1. [all] pshuflw, pshufhw, optional move
5083// 2. [ssse3] 1 x pshufb
5084// 3. [ssse3] 2 x pshufb + 1 x por
5085// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005086SDValue
5087X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5088 SelectionDAG &DAG) const {
5089 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005090 SDValue V1 = SVOp->getOperand(0);
5091 SDValue V2 = SVOp->getOperand(1);
5092 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005093 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005094
Nate Begemanb9a47b82009-02-23 08:49:38 +00005095 // Determine if more than 1 of the words in each of the low and high quadwords
5096 // of the result come from the same quadword of one of the two inputs. Undef
5097 // mask values count as coming from any quadword, for better codegen.
5098 SmallVector<unsigned, 4> LoQuad(4);
5099 SmallVector<unsigned, 4> HiQuad(4);
5100 BitVector InputQuads(4);
5101 for (unsigned i = 0; i < 8; ++i) {
5102 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005103 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005104 MaskVals.push_back(EltIdx);
5105 if (EltIdx < 0) {
5106 ++Quad[0];
5107 ++Quad[1];
5108 ++Quad[2];
5109 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005110 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005111 }
5112 ++Quad[EltIdx / 4];
5113 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005114 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005115
Nate Begemanb9a47b82009-02-23 08:49:38 +00005116 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005117 unsigned MaxQuad = 1;
5118 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005119 if (LoQuad[i] > MaxQuad) {
5120 BestLoQuad = i;
5121 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005122 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005123 }
5124
Nate Begemanb9a47b82009-02-23 08:49:38 +00005125 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005126 MaxQuad = 1;
5127 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005128 if (HiQuad[i] > MaxQuad) {
5129 BestHiQuad = i;
5130 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005131 }
5132 }
5133
Nate Begemanb9a47b82009-02-23 08:49:38 +00005134 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005135 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005136 // single pshufb instruction is necessary. If There are more than 2 input
5137 // quads, disable the next transformation since it does not help SSSE3.
5138 bool V1Used = InputQuads[0] || InputQuads[1];
5139 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005140 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005141 if (InputQuads.count() == 2 && V1Used && V2Used) {
5142 BestLoQuad = InputQuads.find_first();
5143 BestHiQuad = InputQuads.find_next(BestLoQuad);
5144 }
5145 if (InputQuads.count() > 2) {
5146 BestLoQuad = -1;
5147 BestHiQuad = -1;
5148 }
5149 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005150
Nate Begemanb9a47b82009-02-23 08:49:38 +00005151 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5152 // the shuffle mask. If a quad is scored as -1, that means that it contains
5153 // words from all 4 input quadwords.
5154 SDValue NewV;
5155 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005156 SmallVector<int, 8> MaskV;
5157 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5158 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005159 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005160 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5161 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5162 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005163
Nate Begemanb9a47b82009-02-23 08:49:38 +00005164 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5165 // source words for the shuffle, to aid later transformations.
5166 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005167 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005168 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005169 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005170 if (idx != (int)i)
5171 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005172 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005173 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005174 AllWordsInNewV = false;
5175 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005176 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005177
Nate Begemanb9a47b82009-02-23 08:49:38 +00005178 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5179 if (AllWordsInNewV) {
5180 for (int i = 0; i != 8; ++i) {
5181 int idx = MaskVals[i];
5182 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005183 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005184 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005185 if ((idx != i) && idx < 4)
5186 pshufhw = false;
5187 if ((idx != i) && idx > 3)
5188 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005189 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005190 V1 = NewV;
5191 V2Used = false;
5192 BestLoQuad = 0;
5193 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005194 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005195
Nate Begemanb9a47b82009-02-23 08:49:38 +00005196 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5197 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005198 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005199 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5200 unsigned TargetMask = 0;
5201 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005202 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005203 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5204 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5205 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005206 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005207 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005208 }
Eric Christopherfd179292009-08-27 18:07:15 +00005209
Nate Begemanb9a47b82009-02-23 08:49:38 +00005210 // If we have SSSE3, and all words of the result are from 1 input vector,
5211 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5212 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005213 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005214 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005215
Nate Begemanb9a47b82009-02-23 08:49:38 +00005216 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005217 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005218 // mask, and elements that come from V1 in the V2 mask, so that the two
5219 // results can be OR'd together.
5220 bool TwoInputs = V1Used && V2Used;
5221 for (unsigned i = 0; i != 8; ++i) {
5222 int EltIdx = MaskVals[i] * 2;
5223 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005224 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5225 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005226 continue;
5227 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005228 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5229 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005230 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005231 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005232 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005233 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005234 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005235 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005236 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005237
Nate Begemanb9a47b82009-02-23 08:49:38 +00005238 // Calculate the shuffle mask for the second input, shuffle it, and
5239 // OR it with the first shuffled input.
5240 pshufbMask.clear();
5241 for (unsigned i = 0; i != 8; ++i) {
5242 int EltIdx = MaskVals[i] * 2;
5243 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005244 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5245 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005246 continue;
5247 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005248 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5249 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005250 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005251 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005252 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005253 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005254 MVT::v16i8, &pshufbMask[0], 16));
5255 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005256 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005257 }
5258
5259 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5260 // and update MaskVals with new element order.
5261 BitVector InOrder(8);
5262 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005263 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005264 for (int i = 0; i != 4; ++i) {
5265 int idx = MaskVals[i];
5266 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005267 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005268 InOrder.set(i);
5269 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005270 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005271 InOrder.set(i);
5272 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005273 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005274 }
5275 }
5276 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005277 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005278 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005280
5281 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5282 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5283 NewV.getOperand(0),
5284 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5285 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005286 }
Eric Christopherfd179292009-08-27 18:07:15 +00005287
Nate Begemanb9a47b82009-02-23 08:49:38 +00005288 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5289 // and update MaskVals with the new element order.
5290 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005291 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005292 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005293 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005294 for (unsigned i = 4; i != 8; ++i) {
5295 int idx = MaskVals[i];
5296 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005297 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005298 InOrder.set(i);
5299 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005300 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005301 InOrder.set(i);
5302 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005303 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005304 }
5305 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005306 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005307 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005308
5309 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5310 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5311 NewV.getOperand(0),
5312 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5313 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005314 }
Eric Christopherfd179292009-08-27 18:07:15 +00005315
Nate Begemanb9a47b82009-02-23 08:49:38 +00005316 // In case BestHi & BestLo were both -1, which means each quadword has a word
5317 // from each of the four input quadwords, calculate the InOrder bitvector now
5318 // before falling through to the insert/extract cleanup.
5319 if (BestLoQuad == -1 && BestHiQuad == -1) {
5320 NewV = V1;
5321 for (int i = 0; i != 8; ++i)
5322 if (MaskVals[i] < 0 || MaskVals[i] == i)
5323 InOrder.set(i);
5324 }
Eric Christopherfd179292009-08-27 18:07:15 +00005325
Nate Begemanb9a47b82009-02-23 08:49:38 +00005326 // The other elements are put in the right place using pextrw and pinsrw.
5327 for (unsigned i = 0; i != 8; ++i) {
5328 if (InOrder[i])
5329 continue;
5330 int EltIdx = MaskVals[i];
5331 if (EltIdx < 0)
5332 continue;
5333 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005334 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005335 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005336 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005337 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005338 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005339 DAG.getIntPtrConstant(i));
5340 }
5341 return NewV;
5342}
5343
5344// v16i8 shuffles - Prefer shuffles in the following order:
5345// 1. [ssse3] 1 x pshufb
5346// 2. [ssse3] 2 x pshufb + 1 x por
5347// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5348static
Nate Begeman9008ca62009-04-27 18:41:29 +00005349SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005350 SelectionDAG &DAG,
5351 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005352 SDValue V1 = SVOp->getOperand(0);
5353 SDValue V2 = SVOp->getOperand(1);
5354 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005355 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005356 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005357
Nate Begemanb9a47b82009-02-23 08:49:38 +00005358 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005359 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005360 // present, fall back to case 3.
5361 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5362 bool V1Only = true;
5363 bool V2Only = true;
5364 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005365 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005366 if (EltIdx < 0)
5367 continue;
5368 if (EltIdx < 16)
5369 V2Only = false;
5370 else
5371 V1Only = false;
5372 }
Eric Christopherfd179292009-08-27 18:07:15 +00005373
Nate Begemanb9a47b82009-02-23 08:49:38 +00005374 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5375 if (TLI.getSubtarget()->hasSSSE3()) {
5376 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005377
Nate Begemanb9a47b82009-02-23 08:49:38 +00005378 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005379 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005380 //
5381 // Otherwise, we have elements from both input vectors, and must zero out
5382 // elements that come from V2 in the first mask, and V1 in the second mask
5383 // so that we can OR them together.
5384 bool TwoInputs = !(V1Only || V2Only);
5385 for (unsigned i = 0; i != 16; ++i) {
5386 int EltIdx = MaskVals[i];
5387 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005388 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005389 continue;
5390 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005391 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005392 }
5393 // If all the elements are from V2, assign it to V1 and return after
5394 // building the first pshufb.
5395 if (V2Only)
5396 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005397 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005398 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005399 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005400 if (!TwoInputs)
5401 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005402
Nate Begemanb9a47b82009-02-23 08:49:38 +00005403 // Calculate the shuffle mask for the second input, shuffle it, and
5404 // OR it with the first shuffled input.
5405 pshufbMask.clear();
5406 for (unsigned i = 0; i != 16; ++i) {
5407 int EltIdx = MaskVals[i];
5408 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005409 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005410 continue;
5411 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005412 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005413 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005414 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005415 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005416 MVT::v16i8, &pshufbMask[0], 16));
5417 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005418 }
Eric Christopherfd179292009-08-27 18:07:15 +00005419
Nate Begemanb9a47b82009-02-23 08:49:38 +00005420 // No SSSE3 - Calculate in place words and then fix all out of place words
5421 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5422 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005423 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5424 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005425 SDValue NewV = V2Only ? V2 : V1;
5426 for (int i = 0; i != 8; ++i) {
5427 int Elt0 = MaskVals[i*2];
5428 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005429
Nate Begemanb9a47b82009-02-23 08:49:38 +00005430 // This word of the result is all undef, skip it.
5431 if (Elt0 < 0 && Elt1 < 0)
5432 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005433
Nate Begemanb9a47b82009-02-23 08:49:38 +00005434 // This word of the result is already in the correct place, skip it.
5435 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5436 continue;
5437 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5438 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005439
Nate Begemanb9a47b82009-02-23 08:49:38 +00005440 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5441 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5442 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005443
5444 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5445 // using a single extract together, load it and store it.
5446 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005447 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005448 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005449 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005450 DAG.getIntPtrConstant(i));
5451 continue;
5452 }
5453
Nate Begemanb9a47b82009-02-23 08:49:38 +00005454 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005455 // source byte is not also odd, shift the extracted word left 8 bits
5456 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005457 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005458 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005459 DAG.getIntPtrConstant(Elt1 / 2));
5460 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005461 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005462 DAG.getConstant(8,
5463 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005464 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005465 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5466 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005467 }
5468 // If Elt0 is defined, extract it from the appropriate source. If the
5469 // source byte is not also even, shift the extracted word right 8 bits. If
5470 // Elt1 was also defined, OR the extracted values together before
5471 // inserting them in the result.
5472 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005473 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005474 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5475 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005476 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005477 DAG.getConstant(8,
5478 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005479 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005480 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5481 DAG.getConstant(0x00FF, MVT::i16));
5482 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005483 : InsElt0;
5484 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005485 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005486 DAG.getIntPtrConstant(i));
5487 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005488 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005489}
5490
Evan Cheng7a831ce2007-12-15 03:00:47 +00005491/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005492/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005493/// done when every pair / quad of shuffle mask elements point to elements in
5494/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005495/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005496static
Nate Begeman9008ca62009-04-27 18:41:29 +00005497SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005498 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005499 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005500 SDValue V1 = SVOp->getOperand(0);
5501 SDValue V2 = SVOp->getOperand(1);
5502 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005503 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005504 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005505 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005506 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005507 case MVT::v4f32: NewVT = MVT::v2f64; break;
5508 case MVT::v4i32: NewVT = MVT::v2i64; break;
5509 case MVT::v8i16: NewVT = MVT::v4i32; break;
5510 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005511 }
5512
Nate Begeman9008ca62009-04-27 18:41:29 +00005513 int Scale = NumElems / NewWidth;
5514 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005515 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005516 int StartIdx = -1;
5517 for (int j = 0; j < Scale; ++j) {
5518 int EltIdx = SVOp->getMaskElt(i+j);
5519 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005520 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005521 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005522 StartIdx = EltIdx - (EltIdx % Scale);
5523 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005524 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005525 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005526 if (StartIdx == -1)
5527 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005528 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005529 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005530 }
5531
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005532 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5533 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005534 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005535}
5536
Evan Chengd880b972008-05-09 21:53:03 +00005537/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005538///
Owen Andersone50ed302009-08-10 22:56:29 +00005539static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005540 SDValue SrcOp, SelectionDAG &DAG,
5541 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005542 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005543 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005544 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005545 LD = dyn_cast<LoadSDNode>(SrcOp);
5546 if (!LD) {
5547 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5548 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005549 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005550 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005551 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005552 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005553 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005554 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005555 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005556 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005557 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5558 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5559 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005560 SrcOp.getOperand(0)
5561 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005562 }
5563 }
5564 }
5565
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005566 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005567 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005568 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005569 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005570}
5571
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005572/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5573/// which could not be matched by any known target speficic shuffle
5574static SDValue
5575LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5576 return SDValue();
5577}
5578
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005579/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5580/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005581static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005582LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005583 SDValue V1 = SVOp->getOperand(0);
5584 SDValue V2 = SVOp->getOperand(1);
5585 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005586 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005587
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005588 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5589
Evan Chengace3c172008-07-22 21:13:36 +00005590 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005591 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005592 SmallVector<int, 8> Mask1(4U, -1);
5593 SmallVector<int, 8> PermMask;
5594 SVOp->getMask(PermMask);
5595
Evan Chengace3c172008-07-22 21:13:36 +00005596 unsigned NumHi = 0;
5597 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005598 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005599 int Idx = PermMask[i];
5600 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005601 Locs[i] = std::make_pair(-1, -1);
5602 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005603 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5604 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005605 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005606 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005607 NumLo++;
5608 } else {
5609 Locs[i] = std::make_pair(1, NumHi);
5610 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005611 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005612 NumHi++;
5613 }
5614 }
5615 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005616
Evan Chengace3c172008-07-22 21:13:36 +00005617 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005618 // If no more than two elements come from either vector. This can be
5619 // implemented with two shuffles. First shuffle gather the elements.
5620 // The second shuffle, which takes the first shuffle as both of its
5621 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005622 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005623
Nate Begeman9008ca62009-04-27 18:41:29 +00005624 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005625
Evan Chengace3c172008-07-22 21:13:36 +00005626 for (unsigned i = 0; i != 4; ++i) {
5627 if (Locs[i].first == -1)
5628 continue;
5629 else {
5630 unsigned Idx = (i < 2) ? 0 : 4;
5631 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005632 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005633 }
5634 }
5635
Nate Begeman9008ca62009-04-27 18:41:29 +00005636 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005637 } else if (NumLo == 3 || NumHi == 3) {
5638 // Otherwise, we must have three elements from one vector, call it X, and
5639 // one element from the other, call it Y. First, use a shufps to build an
5640 // intermediate vector with the one element from Y and the element from X
5641 // that will be in the same half in the final destination (the indexes don't
5642 // matter). Then, use a shufps to build the final vector, taking the half
5643 // containing the element from Y from the intermediate, and the other half
5644 // from X.
5645 if (NumHi == 3) {
5646 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005647 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005648 std::swap(V1, V2);
5649 }
5650
5651 // Find the element from V2.
5652 unsigned HiIndex;
5653 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005654 int Val = PermMask[HiIndex];
5655 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005656 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005657 if (Val >= 4)
5658 break;
5659 }
5660
Nate Begeman9008ca62009-04-27 18:41:29 +00005661 Mask1[0] = PermMask[HiIndex];
5662 Mask1[1] = -1;
5663 Mask1[2] = PermMask[HiIndex^1];
5664 Mask1[3] = -1;
5665 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005666
5667 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005668 Mask1[0] = PermMask[0];
5669 Mask1[1] = PermMask[1];
5670 Mask1[2] = HiIndex & 1 ? 6 : 4;
5671 Mask1[3] = HiIndex & 1 ? 4 : 6;
5672 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005673 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005674 Mask1[0] = HiIndex & 1 ? 2 : 0;
5675 Mask1[1] = HiIndex & 1 ? 0 : 2;
5676 Mask1[2] = PermMask[2];
5677 Mask1[3] = PermMask[3];
5678 if (Mask1[2] >= 0)
5679 Mask1[2] += 4;
5680 if (Mask1[3] >= 0)
5681 Mask1[3] += 4;
5682 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005683 }
Evan Chengace3c172008-07-22 21:13:36 +00005684 }
5685
5686 // Break it into (shuffle shuffle_hi, shuffle_lo).
5687 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005688 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005689 SmallVector<int,8> LoMask(4U, -1);
5690 SmallVector<int,8> HiMask(4U, -1);
5691
5692 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005693 unsigned MaskIdx = 0;
5694 unsigned LoIdx = 0;
5695 unsigned HiIdx = 2;
5696 for (unsigned i = 0; i != 4; ++i) {
5697 if (i == 2) {
5698 MaskPtr = &HiMask;
5699 MaskIdx = 1;
5700 LoIdx = 0;
5701 HiIdx = 2;
5702 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005703 int Idx = PermMask[i];
5704 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005705 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005706 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005707 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005708 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005709 LoIdx++;
5710 } else {
5711 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005712 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005713 HiIdx++;
5714 }
5715 }
5716
Nate Begeman9008ca62009-04-27 18:41:29 +00005717 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5718 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5719 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005720 for (unsigned i = 0; i != 4; ++i) {
5721 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005722 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005723 } else {
5724 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005725 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005726 }
5727 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005728 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005729}
5730
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005731static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005732 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005733 V = V.getOperand(0);
5734 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5735 V = V.getOperand(0);
5736 if (MayFoldLoad(V))
5737 return true;
5738 return false;
5739}
5740
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005741// FIXME: the version above should always be used. Since there's
5742// a bug where several vector shuffles can't be folded because the
5743// DAG is not updated during lowering and a node claims to have two
5744// uses while it only has one, use this version, and let isel match
5745// another instruction if the load really happens to have more than
5746// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005747// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005748static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005749 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005750 V = V.getOperand(0);
5751 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5752 V = V.getOperand(0);
5753 if (ISD::isNormalLoad(V.getNode()))
5754 return true;
5755 return false;
5756}
5757
5758/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5759/// a vector extract, and if both can be later optimized into a single load.
5760/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5761/// here because otherwise a target specific shuffle node is going to be
5762/// emitted for this shuffle, and the optimization not done.
5763/// FIXME: This is probably not the best approach, but fix the problem
5764/// until the right path is decided.
5765static
5766bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5767 const TargetLowering &TLI) {
5768 EVT VT = V.getValueType();
5769 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5770
5771 // Be sure that the vector shuffle is present in a pattern like this:
5772 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5773 if (!V.hasOneUse())
5774 return false;
5775
5776 SDNode *N = *V.getNode()->use_begin();
5777 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5778 return false;
5779
5780 SDValue EltNo = N->getOperand(1);
5781 if (!isa<ConstantSDNode>(EltNo))
5782 return false;
5783
5784 // If the bit convert changed the number of elements, it is unsafe
5785 // to examine the mask.
5786 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005787 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005788 EVT SrcVT = V.getOperand(0).getValueType();
5789 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5790 return false;
5791 V = V.getOperand(0);
5792 HasShuffleIntoBitcast = true;
5793 }
5794
5795 // Select the input vector, guarding against out of range extract vector.
5796 unsigned NumElems = VT.getVectorNumElements();
5797 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5798 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5799 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5800
5801 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005802 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005803 V = V.getOperand(0);
5804
5805 if (ISD::isNormalLoad(V.getNode())) {
5806 // Is the original load suitable?
5807 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5808
5809 // FIXME: avoid the multi-use bug that is preventing lots of
5810 // of foldings to be detected, this is still wrong of course, but
5811 // give the temporary desired behavior, and if it happens that
5812 // the load has real more uses, during isel it will not fold, and
5813 // will generate poor code.
5814 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5815 return false;
5816
5817 if (!HasShuffleIntoBitcast)
5818 return true;
5819
5820 // If there's a bitcast before the shuffle, check if the load type and
5821 // alignment is valid.
5822 unsigned Align = LN0->getAlignment();
5823 unsigned NewAlign =
5824 TLI.getTargetData()->getABITypeAlignment(
5825 VT.getTypeForEVT(*DAG.getContext()));
5826
5827 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5828 return false;
5829 }
5830
5831 return true;
5832}
5833
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005834static
Evan Cheng835580f2010-10-07 20:50:20 +00005835SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5836 EVT VT = Op.getValueType();
5837
5838 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005839 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5840 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005841 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5842 V1, DAG));
5843}
5844
5845static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005846SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5847 bool HasSSE2) {
5848 SDValue V1 = Op.getOperand(0);
5849 SDValue V2 = Op.getOperand(1);
5850 EVT VT = Op.getValueType();
5851
5852 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5853
5854 if (HasSSE2 && VT == MVT::v2f64)
5855 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5856
5857 // v4f32 or v4i32
5858 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5859}
5860
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005861static
5862SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5863 SDValue V1 = Op.getOperand(0);
5864 SDValue V2 = Op.getOperand(1);
5865 EVT VT = Op.getValueType();
5866
5867 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5868 "unsupported shuffle type");
5869
5870 if (V2.getOpcode() == ISD::UNDEF)
5871 V2 = V1;
5872
5873 // v4i32 or v4f32
5874 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5875}
5876
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005877static
5878SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5879 SDValue V1 = Op.getOperand(0);
5880 SDValue V2 = Op.getOperand(1);
5881 EVT VT = Op.getValueType();
5882 unsigned NumElems = VT.getVectorNumElements();
5883
5884 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5885 // operand of these instructions is only memory, so check if there's a
5886 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5887 // same masks.
5888 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005889
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005890 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005891 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005892 CanFoldLoad = true;
5893
5894 // When V1 is a load, it can be folded later into a store in isel, example:
5895 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5896 // turns into:
5897 // (MOVLPSmr addr:$src1, VR128:$src2)
5898 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005899 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005900 CanFoldLoad = true;
5901
Eric Christopher893a8822011-02-20 05:04:42 +00005902 // Both of them can't be memory operations though.
5903 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5904 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005905
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005906 if (CanFoldLoad) {
5907 if (HasSSE2 && NumElems == 2)
5908 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5909
5910 if (NumElems == 4)
5911 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5912 }
5913
5914 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5915 // movl and movlp will both match v2i64, but v2i64 is never matched by
5916 // movl earlier because we make it strict to avoid messing with the movlp load
5917 // folding logic (see the code above getMOVLP call). Match it here then,
5918 // this is horrible, but will stay like this until we move all shuffle
5919 // matching to x86 specific nodes. Note that for the 1st condition all
5920 // types are matched with movsd.
5921 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5922 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5923 else if (HasSSE2)
5924 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5925
5926
5927 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5928
5929 // Invert the operand order and use SHUFPS to match it.
5930 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5931 X86::getShuffleSHUFImmediate(SVOp), DAG);
5932}
5933
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00005934static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005935 switch(VT.getSimpleVT().SimpleTy) {
5936 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5937 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005938 case MVT::v4f32: return X86ISD::UNPCKLPS;
5939 case MVT::v2f64: return X86ISD::UNPCKLPD;
David Greenec4db4e52011-02-28 19:06:56 +00005940 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5941 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005942 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5943 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5944 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005945 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005946 }
5947 return 0;
5948}
5949
5950static inline unsigned getUNPCKHOpcode(EVT VT) {
5951 switch(VT.getSimpleVT().SimpleTy) {
5952 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5953 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5954 case MVT::v4f32: return X86ISD::UNPCKHPS;
5955 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00005956 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
5957 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005958 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5959 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5960 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005961 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005962 }
5963 return 0;
5964}
5965
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00005966static inline unsigned getVPERMILOpcode(EVT VT) {
5967 switch(VT.getSimpleVT().SimpleTy) {
5968 case MVT::v4i32:
5969 case MVT::v4f32: return X86ISD::VPERMILPS;
5970 case MVT::v2i64:
5971 case MVT::v2f64: return X86ISD::VPERMILPD;
5972 case MVT::v8i32:
5973 case MVT::v8f32: return X86ISD::VPERMILPSY;
5974 case MVT::v4i64:
5975 case MVT::v4f64: return X86ISD::VPERMILPDY;
5976 default:
5977 llvm_unreachable("Unknown type for vpermil");
5978 }
5979 return 0;
5980}
5981
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005982static
5983SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005984 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005985 const X86Subtarget *Subtarget) {
5986 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5987 EVT VT = Op.getValueType();
5988 DebugLoc dl = Op.getDebugLoc();
5989 SDValue V1 = Op.getOperand(0);
5990 SDValue V2 = Op.getOperand(1);
5991
5992 if (isZeroShuffle(SVOp))
5993 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5994
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005995 // Handle splat operations
5996 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005997 unsigned NumElem = VT.getVectorNumElements();
5998 // Special case, this is the only place now where it's allowed to return
5999 // a vector_shuffle operation without using a target specific node, because
6000 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6001 // this be moved to DAGCombine instead?
6002 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006003 return Op;
6004
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006005 // Since there's no native support for scalar_to_vector for 256-bit AVX, a
6006 // 128-bit scalar_to_vector + INSERT_SUBVECTOR is generated. Recognize this
6007 // idiom and do the shuffle before the insertion, this yields less
6008 // instructions in the end.
6009 if (VT.is256BitVector() &&
6010 V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
6011 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
6012 V1.getOperand(1).getOpcode() == ISD::SCALAR_TO_VECTOR)
6013 return PromoteVectorToScalarSplat(SVOp, DAG);
6014
6015 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006016 if ((VT.is128BitVector() && NumElem <= 4) ||
6017 (VT.is256BitVector() && NumElem <= 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006018 return SDValue();
6019
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006020 // All i16 and i8 vector types can't be used directly by a generic shuffle
6021 // instruction because the target has no such instruction. Generate shuffles
6022 // which repeat i16 and i8 several times until they fit in i32, and then can
6023 // be manipulated by target suported shuffles. After the insertion of the
6024 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006025 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006026 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006027
6028 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6029 // do it!
6030 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6031 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6032 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006033 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006034 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6035 // FIXME: Figure out a cleaner way to do this.
6036 // Try to make use of movq to zero out the top part.
6037 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6038 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6039 if (NewOp.getNode()) {
6040 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6041 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6042 DAG, Subtarget, dl);
6043 }
6044 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6045 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6046 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6047 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6048 DAG, Subtarget, dl);
6049 }
6050 }
6051 return SDValue();
6052}
6053
Dan Gohman475871a2008-07-27 21:46:04 +00006054SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006055X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006056 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006057 SDValue V1 = Op.getOperand(0);
6058 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006059 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006060 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006061 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006062 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006063 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6064 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006065 bool V1IsSplat = false;
6066 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006067 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006068 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006069 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006070 MachineFunction &MF = DAG.getMachineFunction();
6071 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006072
Dale Johannesen0488fb62010-09-30 23:57:10 +00006073 // Shuffle operations on MMX not supported.
6074 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006075 return Op;
6076
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006077 // Vector shuffle lowering takes 3 steps:
6078 //
6079 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6080 // narrowing and commutation of operands should be handled.
6081 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6082 // shuffle nodes.
6083 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6084 // so the shuffle can be broken into other shuffles and the legalizer can
6085 // try the lowering again.
6086 //
6087 // The general ideia is that no vector_shuffle operation should be left to
6088 // be matched during isel, all of them must be converted to a target specific
6089 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006090
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006091 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6092 // narrowing and commutation of operands should be handled. The actual code
6093 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006094 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006095 if (NewOp.getNode())
6096 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006097
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006098 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6099 // unpckh_undef). Only use pshufd if speed is more important than size.
6100 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006101 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006102 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006103 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006104
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006105 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006106 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006107 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006108
Dale Johannesen0488fb62010-09-30 23:57:10 +00006109 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006110 return getMOVHighToLow(Op, dl, DAG);
6111
6112 // Use to match splats
6113 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6114 (VT == MVT::v2f64 || VT == MVT::v2i64))
6115 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6116
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006117 if (X86::isPSHUFDMask(SVOp)) {
6118 // The actual implementation will match the mask in the if above and then
6119 // during isel it can match several different instructions, not only pshufd
6120 // as its name says, sad but true, emulate the behavior for now...
6121 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6122 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6123
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006124 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6125
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006126 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006127 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6128
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006129 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006130 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6131 TargetMask, DAG);
6132
6133 if (VT == MVT::v4f32)
6134 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6135 TargetMask, DAG);
6136 }
Eric Christopherfd179292009-08-27 18:07:15 +00006137
Evan Chengf26ffe92008-05-29 08:22:04 +00006138 // Check if this can be converted into a logical shift.
6139 bool isLeft = false;
6140 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006141 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006142 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006143 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006144 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006145 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006146 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006147 EVT EltVT = VT.getVectorElementType();
6148 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006149 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006150 }
Eric Christopherfd179292009-08-27 18:07:15 +00006151
Nate Begeman9008ca62009-04-27 18:41:29 +00006152 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006153 if (V1IsUndef)
6154 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006155 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006156 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006157 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006158 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006159 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6160
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006161 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006162 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6163 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006164 }
Eric Christopherfd179292009-08-27 18:07:15 +00006165
Nate Begeman9008ca62009-04-27 18:41:29 +00006166 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006167 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6168 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006169
Dale Johannesen0488fb62010-09-30 23:57:10 +00006170 if (X86::isMOVHLPSMask(SVOp))
6171 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006172
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006173 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006174 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006175
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006176 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006177 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006178
Dale Johannesen0488fb62010-09-30 23:57:10 +00006179 if (X86::isMOVLPMask(SVOp))
6180 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006181
Nate Begeman9008ca62009-04-27 18:41:29 +00006182 if (ShouldXformToMOVHLPS(SVOp) ||
6183 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6184 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006185
Evan Chengf26ffe92008-05-29 08:22:04 +00006186 if (isShift) {
6187 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006188 EVT EltVT = VT.getVectorElementType();
6189 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006190 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006191 }
Eric Christopherfd179292009-08-27 18:07:15 +00006192
Evan Cheng9eca5e82006-10-25 21:49:50 +00006193 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006194 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6195 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006196 V1IsSplat = isSplatVector(V1.getNode());
6197 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006198
Chris Lattner8a594482007-11-25 00:24:49 +00006199 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006200 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006201 Op = CommuteVectorShuffle(SVOp, DAG);
6202 SVOp = cast<ShuffleVectorSDNode>(Op);
6203 V1 = SVOp->getOperand(0);
6204 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006205 std::swap(V1IsSplat, V2IsSplat);
6206 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006207 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006208 }
6209
Nate Begeman9008ca62009-04-27 18:41:29 +00006210 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6211 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006212 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006213 return V1;
6214 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6215 // the instruction selector will not match, so get a canonical MOVL with
6216 // swapped operands to undo the commute.
6217 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006218 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006219
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006220 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006221 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006222
6223 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006224 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006225
Evan Cheng9bbbb982006-10-25 20:48:19 +00006226 if (V2IsSplat) {
6227 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006228 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006229 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006230 SDValue NewMask = NormalizeMask(SVOp, DAG);
6231 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6232 if (NSVOp != SVOp) {
6233 if (X86::isUNPCKLMask(NSVOp, true)) {
6234 return NewMask;
6235 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6236 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006237 }
6238 }
6239 }
6240
Evan Cheng9eca5e82006-10-25 21:49:50 +00006241 if (Commuted) {
6242 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006243 // FIXME: this seems wrong.
6244 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6245 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006246
6247 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006248 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006249
6250 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006251 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006252 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006253
Nate Begeman9008ca62009-04-27 18:41:29 +00006254 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006255 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006256 return CommuteVectorShuffle(SVOp, DAG);
6257
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006258 // The checks below are all present in isShuffleMaskLegal, but they are
6259 // inlined here right now to enable us to directly emit target specific
6260 // nodes, and remove one by one until they don't return Op anymore.
6261 SmallVector<int, 16> M;
6262 SVOp->getMask(M);
6263
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006264 if (isPALIGNRMask(M, VT, HasSSSE3))
6265 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6266 X86::getShufflePALIGNRImmediate(SVOp),
6267 DAG);
6268
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006269 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6270 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006271 if (VT == MVT::v2f64)
6272 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006273 if (VT == MVT::v2i64)
6274 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6275 }
6276
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006277 if (isPSHUFHWMask(M, VT))
6278 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6279 X86::getShufflePSHUFHWImmediate(SVOp),
6280 DAG);
6281
6282 if (isPSHUFLWMask(M, VT))
6283 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6284 X86::getShufflePSHUFLWImmediate(SVOp),
6285 DAG);
6286
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006287 if (isSHUFPMask(M, VT)) {
6288 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6289 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6290 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6291 TargetMask, DAG);
6292 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6293 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6294 TargetMask, DAG);
6295 }
6296
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006297 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006298 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006299 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006300 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006301
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006302 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006303 // Generate target specific nodes for 128 or 256-bit shuffles only
6304 // supported in the AVX instruction set.
6305 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006306
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006307 // Handle VPERMILPS* permutations
6308 if (isVPERMILPSMask(M, VT, Subtarget))
6309 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6310 getShuffleVPERMILPSImmediate(SVOp), DAG);
6311
6312 // Handle VPERMILPD* permutations
6313 if (isVPERMILPDMask(M, VT, Subtarget))
6314 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6315 getShuffleVPERMILPDImmediate(SVOp), DAG);
6316
6317 //===--------------------------------------------------------------------===//
6318 // Since no target specific shuffle was selected for this generic one,
6319 // lower it into other known shuffles. FIXME: this isn't true yet, but
6320 // this is the plan.
6321 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006322
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006323 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6324 if (VT == MVT::v8i16) {
6325 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6326 if (NewOp.getNode())
6327 return NewOp;
6328 }
6329
6330 if (VT == MVT::v16i8) {
6331 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6332 if (NewOp.getNode())
6333 return NewOp;
6334 }
6335
6336 // Handle all 128-bit wide vectors with 4 elements, and match them with
6337 // several different shuffle types.
6338 if (NumElems == 4 && VT.getSizeInBits() == 128)
6339 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6340
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006341 // Handle general 256-bit shuffles
6342 if (VT.is256BitVector())
6343 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6344
Dan Gohman475871a2008-07-27 21:46:04 +00006345 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006346}
6347
Dan Gohman475871a2008-07-27 21:46:04 +00006348SDValue
6349X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006350 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006351 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006352 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006353
6354 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6355 return SDValue();
6356
Duncan Sands83ec4b62008-06-06 12:08:01 +00006357 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006358 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006359 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006360 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006361 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006362 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006363 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006364 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6365 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6366 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006367 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6368 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006369 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006370 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006371 Op.getOperand(0)),
6372 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006373 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006374 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006375 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006376 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006377 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006378 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006379 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6380 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006381 // result has a single use which is a store or a bitcast to i32. And in
6382 // the case of a store, it's not worth it if the index is a constant 0,
6383 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006384 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006385 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006386 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006387 if ((User->getOpcode() != ISD::STORE ||
6388 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6389 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006390 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006391 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006392 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006393 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006394 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006395 Op.getOperand(0)),
6396 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006397 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006398 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006399 // ExtractPS works with constant index.
6400 if (isa<ConstantSDNode>(Op.getOperand(1)))
6401 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006402 }
Dan Gohman475871a2008-07-27 21:46:04 +00006403 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006404}
6405
6406
Dan Gohman475871a2008-07-27 21:46:04 +00006407SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006408X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6409 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006410 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006411 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006412
David Greene74a579d2011-02-10 16:57:36 +00006413 SDValue Vec = Op.getOperand(0);
6414 EVT VecVT = Vec.getValueType();
6415
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006416 // If this is a 256-bit vector result, first extract the 128-bit vector and
6417 // then extract the element from the 128-bit vector.
6418 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006419 DebugLoc dl = Op.getNode()->getDebugLoc();
6420 unsigned NumElems = VecVT.getVectorNumElements();
6421 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006422 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6423
6424 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006425 bool Upper = IdxVal >= NumElems/2;
6426 Vec = Extract128BitVector(Vec,
6427 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006428
David Greene74a579d2011-02-10 16:57:36 +00006429 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006430 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006431 }
6432
6433 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6434
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006435 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006436 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006437 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006438 return Res;
6439 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006440
Owen Andersone50ed302009-08-10 22:56:29 +00006441 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006442 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006443 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006444 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006445 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006446 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006447 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006448 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6449 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006450 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006451 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006452 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006453 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006454 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006455 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006456 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006457 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006458 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006459 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006460 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006461 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006462 if (Idx == 0)
6463 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006464
Evan Cheng0db9fe62006-04-25 20:13:52 +00006465 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006466 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006467 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006468 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006469 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006470 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006471 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006472 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006473 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6474 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6475 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006476 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006477 if (Idx == 0)
6478 return Op;
6479
6480 // UNPCKHPD the element to the lowest double word, then movsd.
6481 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6482 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006483 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006484 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006485 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006486 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006487 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006488 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006489 }
6490
Dan Gohman475871a2008-07-27 21:46:04 +00006491 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006492}
6493
Dan Gohman475871a2008-07-27 21:46:04 +00006494SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006495X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6496 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006497 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006498 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006499 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006500
Dan Gohman475871a2008-07-27 21:46:04 +00006501 SDValue N0 = Op.getOperand(0);
6502 SDValue N1 = Op.getOperand(1);
6503 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006504
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006505 if (VT.getSizeInBits() == 256)
6506 return SDValue();
6507
Dan Gohman8a55ce42009-09-23 21:02:20 +00006508 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006509 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006510 unsigned Opc;
6511 if (VT == MVT::v8i16)
6512 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006513 else if (VT == MVT::v16i8)
6514 Opc = X86ISD::PINSRB;
6515 else
6516 Opc = X86ISD::PINSRB;
6517
Nate Begeman14d12ca2008-02-11 04:19:36 +00006518 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6519 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006520 if (N1.getValueType() != MVT::i32)
6521 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6522 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006523 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006524 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006525 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006526 // Bits [7:6] of the constant are the source select. This will always be
6527 // zero here. The DAG Combiner may combine an extract_elt index into these
6528 // bits. For example (insert (extract, 3), 2) could be matched by putting
6529 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006530 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006531 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006532 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006533 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006534 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006535 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006536 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006537 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006538 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006539 // PINSR* works with constant index.
6540 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006541 }
Dan Gohman475871a2008-07-27 21:46:04 +00006542 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006543}
6544
Dan Gohman475871a2008-07-27 21:46:04 +00006545SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006546X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006547 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006548 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006549
David Greene6b381262011-02-09 15:32:06 +00006550 DebugLoc dl = Op.getDebugLoc();
6551 SDValue N0 = Op.getOperand(0);
6552 SDValue N1 = Op.getOperand(1);
6553 SDValue N2 = Op.getOperand(2);
6554
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006555 // If this is a 256-bit vector result, first extract the 128-bit vector,
6556 // insert the element into the extracted half and then place it back.
6557 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006558 if (!isa<ConstantSDNode>(N2))
6559 return SDValue();
6560
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006561 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006562 unsigned NumElems = VT.getVectorNumElements();
6563 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006564 bool Upper = IdxVal >= NumElems/2;
6565 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6566 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006567
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006568 // Insert the element into the desired half.
6569 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6570 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006571
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006572 // Insert the changed part back to the 256-bit vector
6573 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006574 }
6575
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006576 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006577 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6578
Dan Gohman8a55ce42009-09-23 21:02:20 +00006579 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006580 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006581
Dan Gohman8a55ce42009-09-23 21:02:20 +00006582 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006583 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6584 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006585 if (N1.getValueType() != MVT::i32)
6586 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6587 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006588 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006589 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006590 }
Dan Gohman475871a2008-07-27 21:46:04 +00006591 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006592}
6593
Dan Gohman475871a2008-07-27 21:46:04 +00006594SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006595X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006596 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006597 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006598 EVT OpVT = Op.getValueType();
6599
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006600 // If this is a 256-bit vector result, first insert into a 128-bit
6601 // vector and then insert into the 256-bit vector.
6602 if (OpVT.getSizeInBits() > 128) {
6603 // Insert into a 128-bit vector.
6604 EVT VT128 = EVT::getVectorVT(*Context,
6605 OpVT.getVectorElementType(),
6606 OpVT.getVectorNumElements() / 2);
6607
6608 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6609
6610 // Insert the 128-bit vector.
6611 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6612 DAG.getConstant(0, MVT::i32),
6613 DAG, dl);
6614 }
6615
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006616 if (Op.getValueType() == MVT::v1i64 &&
6617 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006618 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006619
Owen Anderson825b72b2009-08-11 20:47:22 +00006620 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006621 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6622 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006623 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006624 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006625}
6626
David Greene91585092011-01-26 15:38:49 +00006627// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6628// a simple subregister reference or explicit instructions to grab
6629// upper bits of a vector.
6630SDValue
6631X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6632 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006633 DebugLoc dl = Op.getNode()->getDebugLoc();
6634 SDValue Vec = Op.getNode()->getOperand(0);
6635 SDValue Idx = Op.getNode()->getOperand(1);
6636
6637 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6638 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6639 return Extract128BitVector(Vec, Idx, DAG, dl);
6640 }
David Greene91585092011-01-26 15:38:49 +00006641 }
6642 return SDValue();
6643}
6644
David Greenecfe33c42011-01-26 19:13:22 +00006645// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6646// simple superregister reference or explicit instructions to insert
6647// the upper bits of a vector.
6648SDValue
6649X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6650 if (Subtarget->hasAVX()) {
6651 DebugLoc dl = Op.getNode()->getDebugLoc();
6652 SDValue Vec = Op.getNode()->getOperand(0);
6653 SDValue SubVec = Op.getNode()->getOperand(1);
6654 SDValue Idx = Op.getNode()->getOperand(2);
6655
6656 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6657 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006658 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006659 }
6660 }
6661 return SDValue();
6662}
6663
Bill Wendling056292f2008-09-16 21:48:12 +00006664// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6665// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6666// one of the above mentioned nodes. It has to be wrapped because otherwise
6667// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6668// be used to form addressing mode. These wrapped nodes will be selected
6669// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006670SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006671X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006672 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006673
Chris Lattner41621a22009-06-26 19:22:52 +00006674 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6675 // global base reg.
6676 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006677 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006678 CodeModel::Model M = getTargetMachine().getCodeModel();
6679
Chris Lattner4f066492009-07-11 20:29:19 +00006680 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006681 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006682 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006683 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006684 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006685 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006686 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006687
Evan Cheng1606e8e2009-03-13 07:51:59 +00006688 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006689 CP->getAlignment(),
6690 CP->getOffset(), OpFlag);
6691 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006692 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006693 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006694 if (OpFlag) {
6695 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006696 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006697 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006698 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006699 }
6700
6701 return Result;
6702}
6703
Dan Gohmand858e902010-04-17 15:26:15 +00006704SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006705 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006706
Chris Lattner18c59872009-06-27 04:16:01 +00006707 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6708 // global base reg.
6709 unsigned char OpFlag = 0;
6710 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006711 CodeModel::Model M = getTargetMachine().getCodeModel();
6712
Chris Lattner4f066492009-07-11 20:29:19 +00006713 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006714 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006715 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006716 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006717 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006718 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006719 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006720
Chris Lattner18c59872009-06-27 04:16:01 +00006721 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6722 OpFlag);
6723 DebugLoc DL = JT->getDebugLoc();
6724 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006725
Chris Lattner18c59872009-06-27 04:16:01 +00006726 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006727 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006728 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6729 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006730 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006731 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006732
Chris Lattner18c59872009-06-27 04:16:01 +00006733 return Result;
6734}
6735
6736SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006737X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006738 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006739
Chris Lattner18c59872009-06-27 04:16:01 +00006740 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6741 // global base reg.
6742 unsigned char OpFlag = 0;
6743 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006744 CodeModel::Model M = getTargetMachine().getCodeModel();
6745
Chris Lattner4f066492009-07-11 20:29:19 +00006746 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006747 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006748 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006749 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006750 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006751 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006752 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006753
Chris Lattner18c59872009-06-27 04:16:01 +00006754 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006755
Chris Lattner18c59872009-06-27 04:16:01 +00006756 DebugLoc DL = Op.getDebugLoc();
6757 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006758
6759
Chris Lattner18c59872009-06-27 04:16:01 +00006760 // With PIC, the address is actually $g + Offset.
6761 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006762 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006763 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6764 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006765 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006766 Result);
6767 }
Eric Christopherfd179292009-08-27 18:07:15 +00006768
Chris Lattner18c59872009-06-27 04:16:01 +00006769 return Result;
6770}
6771
Dan Gohman475871a2008-07-27 21:46:04 +00006772SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006773X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006774 // Create the TargetBlockAddressAddress node.
6775 unsigned char OpFlags =
6776 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006777 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006778 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006779 DebugLoc dl = Op.getDebugLoc();
6780 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6781 /*isTarget=*/true, OpFlags);
6782
Dan Gohmanf705adb2009-10-30 01:28:02 +00006783 if (Subtarget->isPICStyleRIPRel() &&
6784 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006785 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6786 else
6787 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006788
Dan Gohman29cbade2009-11-20 23:18:13 +00006789 // With PIC, the address is actually $g + Offset.
6790 if (isGlobalRelativeToPICBase(OpFlags)) {
6791 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6792 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6793 Result);
6794 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006795
6796 return Result;
6797}
6798
6799SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006800X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006801 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006802 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006803 // Create the TargetGlobalAddress node, folding in the constant
6804 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006805 unsigned char OpFlags =
6806 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006807 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006808 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006809 if (OpFlags == X86II::MO_NO_FLAG &&
6810 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006811 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006812 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006813 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006814 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006815 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006816 }
Eric Christopherfd179292009-08-27 18:07:15 +00006817
Chris Lattner4f066492009-07-11 20:29:19 +00006818 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006819 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006820 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6821 else
6822 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006823
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006824 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006825 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006826 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6827 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006828 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006829 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006830
Chris Lattner36c25012009-07-10 07:34:39 +00006831 // For globals that require a load from a stub to get the address, emit the
6832 // load.
6833 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006834 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006835 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006836
Dan Gohman6520e202008-10-18 02:06:02 +00006837 // If there was a non-zero offset that we didn't fold, create an explicit
6838 // addition for it.
6839 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006840 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006841 DAG.getConstant(Offset, getPointerTy()));
6842
Evan Cheng0db9fe62006-04-25 20:13:52 +00006843 return Result;
6844}
6845
Evan Chengda43bcf2008-09-24 00:05:32 +00006846SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006847X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006848 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006849 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006850 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006851}
6852
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006853static SDValue
6854GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006855 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006856 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006857 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006858 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006859 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006860 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006861 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006862 GA->getOffset(),
6863 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006864 if (InFlag) {
6865 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006866 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006867 } else {
6868 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006869 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006870 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006871
6872 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006873 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006874
Rafael Espindola15f1b662009-04-24 12:59:40 +00006875 SDValue Flag = Chain.getValue(1);
6876 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006877}
6878
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006879// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006880static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006881LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006882 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006883 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006884 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6885 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006886 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006887 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006888 InFlag = Chain.getValue(1);
6889
Chris Lattnerb903bed2009-06-26 21:20:29 +00006890 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006891}
6892
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006893// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006894static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006895LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006896 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006897 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6898 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006899}
6900
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006901// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6902// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006903static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006904 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006905 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006906 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006907
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006908 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6909 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6910 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006911
Michael J. Spencerec38de22010-10-10 22:04:20 +00006912 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006913 DAG.getIntPtrConstant(0),
6914 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006915
Chris Lattnerb903bed2009-06-26 21:20:29 +00006916 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006917 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6918 // initialexec.
6919 unsigned WrapperKind = X86ISD::Wrapper;
6920 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006921 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006922 } else if (is64Bit) {
6923 assert(model == TLSModel::InitialExec);
6924 OperandFlags = X86II::MO_GOTTPOFF;
6925 WrapperKind = X86ISD::WrapperRIP;
6926 } else {
6927 assert(model == TLSModel::InitialExec);
6928 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006929 }
Eric Christopherfd179292009-08-27 18:07:15 +00006930
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006931 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6932 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006933 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006934 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006935 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006936 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006937
Rafael Espindola9a580232009-02-27 13:37:18 +00006938 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006939 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006940 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006941
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006942 // The address of the thread local variable is the add of the thread
6943 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006944 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006945}
6946
Dan Gohman475871a2008-07-27 21:46:04 +00006947SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006948X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006949
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006950 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006951 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006952
Eric Christopher30ef0e52010-06-03 04:07:48 +00006953 if (Subtarget->isTargetELF()) {
6954 // TODO: implement the "local dynamic" model
6955 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006956
Eric Christopher30ef0e52010-06-03 04:07:48 +00006957 // If GV is an alias then use the aliasee for determining
6958 // thread-localness.
6959 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6960 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006961
6962 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006963 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006964
Eric Christopher30ef0e52010-06-03 04:07:48 +00006965 switch (model) {
6966 case TLSModel::GeneralDynamic:
6967 case TLSModel::LocalDynamic: // not implemented
6968 if (Subtarget->is64Bit())
6969 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6970 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006971
Eric Christopher30ef0e52010-06-03 04:07:48 +00006972 case TLSModel::InitialExec:
6973 case TLSModel::LocalExec:
6974 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6975 Subtarget->is64Bit());
6976 }
6977 } else if (Subtarget->isTargetDarwin()) {
6978 // Darwin only has one model of TLS. Lower to that.
6979 unsigned char OpFlag = 0;
6980 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6981 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006982
Eric Christopher30ef0e52010-06-03 04:07:48 +00006983 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6984 // global base reg.
6985 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6986 !Subtarget->is64Bit();
6987 if (PIC32)
6988 OpFlag = X86II::MO_TLVP_PIC_BASE;
6989 else
6990 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006991 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006992 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006993 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006994 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006995 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006996
Eric Christopher30ef0e52010-06-03 04:07:48 +00006997 // With PIC32, the address is actually $g + Offset.
6998 if (PIC32)
6999 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7000 DAG.getNode(X86ISD::GlobalBaseReg,
7001 DebugLoc(), getPointerTy()),
7002 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007003
Eric Christopher30ef0e52010-06-03 04:07:48 +00007004 // Lowering the machine isd will make sure everything is in the right
7005 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007006 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007007 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007008 SDValue Args[] = { Chain, Offset };
7009 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007010
Eric Christopher30ef0e52010-06-03 04:07:48 +00007011 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7012 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7013 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007014
Eric Christopher30ef0e52010-06-03 04:07:48 +00007015 // And our return value (tls address) is in the standard call return value
7016 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007017 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7018 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007019 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007020
Eric Christopher30ef0e52010-06-03 04:07:48 +00007021 assert(false &&
7022 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007023
Torok Edwinc23197a2009-07-14 16:55:14 +00007024 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007025 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007026}
7027
Evan Cheng0db9fe62006-04-25 20:13:52 +00007028
Nadav Rotem43012222011-05-11 08:12:09 +00007029/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007030/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007031SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007032 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007033 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007034 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007035 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007036 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007037 SDValue ShOpLo = Op.getOperand(0);
7038 SDValue ShOpHi = Op.getOperand(1);
7039 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007040 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007041 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007042 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007043
Dan Gohman475871a2008-07-27 21:46:04 +00007044 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007045 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007046 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7047 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007048 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007049 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7050 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007051 }
Evan Chenge3413162006-01-09 18:33:28 +00007052
Owen Anderson825b72b2009-08-11 20:47:22 +00007053 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7054 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007055 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007056 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007057
Dan Gohman475871a2008-07-27 21:46:04 +00007058 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007059 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007060 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7061 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007062
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007063 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007064 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7065 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007066 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007067 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7068 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007069 }
7070
Dan Gohman475871a2008-07-27 21:46:04 +00007071 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007072 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007073}
Evan Chenga3195e82006-01-12 22:54:21 +00007074
Dan Gohmand858e902010-04-17 15:26:15 +00007075SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7076 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007077 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007078
Dale Johannesen0488fb62010-09-30 23:57:10 +00007079 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007080 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007081
Owen Anderson825b72b2009-08-11 20:47:22 +00007082 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007083 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007084
Eli Friedman36df4992009-05-27 00:47:34 +00007085 // These are really Legal; return the operand so the caller accepts it as
7086 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007087 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007088 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007089 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007090 Subtarget->is64Bit()) {
7091 return Op;
7092 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007093
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007094 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007095 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007096 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007097 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007098 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007099 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007100 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007101 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007102 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007103 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7104}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007105
Owen Andersone50ed302009-08-10 22:56:29 +00007106SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007107 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007108 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007109 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007110 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007111 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007112 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007113 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007114 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007115 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007116 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007117
Chris Lattner492a43e2010-09-22 01:28:21 +00007118 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007119
Stuart Hastings84be9582011-06-02 15:57:11 +00007120 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7121 MachineMemOperand *MMO;
7122 if (FI) {
7123 int SSFI = FI->getIndex();
7124 MMO =
7125 DAG.getMachineFunction()
7126 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7127 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7128 } else {
7129 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7130 StackSlot = StackSlot.getOperand(1);
7131 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007132 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007133 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7134 X86ISD::FILD, DL,
7135 Tys, Ops, array_lengthof(Ops),
7136 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007137
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007138 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007139 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007140 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007141
7142 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7143 // shouldn't be necessary except that RFP cannot be live across
7144 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007145 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007146 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7147 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007148 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007149 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007150 SDValue Ops[] = {
7151 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7152 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007153 MachineMemOperand *MMO =
7154 DAG.getMachineFunction()
7155 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007156 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007157
Chris Lattner492a43e2010-09-22 01:28:21 +00007158 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7159 Ops, array_lengthof(Ops),
7160 Op.getValueType(), MMO);
7161 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007162 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007163 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007164 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007165
Evan Cheng0db9fe62006-04-25 20:13:52 +00007166 return Result;
7167}
7168
Bill Wendling8b8a6362009-01-17 03:56:04 +00007169// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007170SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7171 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007172 // This algorithm is not obvious. Here it is in C code, more or less:
7173 /*
7174 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7175 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7176 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007177
Bill Wendling8b8a6362009-01-17 03:56:04 +00007178 // Copy ints to xmm registers.
7179 __m128i xh = _mm_cvtsi32_si128( hi );
7180 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007181
Bill Wendling8b8a6362009-01-17 03:56:04 +00007182 // Combine into low half of a single xmm register.
7183 __m128i x = _mm_unpacklo_epi32( xh, xl );
7184 __m128d d;
7185 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007186
Bill Wendling8b8a6362009-01-17 03:56:04 +00007187 // Merge in appropriate exponents to give the integer bits the right
7188 // magnitude.
7189 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007190
Bill Wendling8b8a6362009-01-17 03:56:04 +00007191 // Subtract away the biases to deal with the IEEE-754 double precision
7192 // implicit 1.
7193 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007194
Bill Wendling8b8a6362009-01-17 03:56:04 +00007195 // All conversions up to here are exact. The correctly rounded result is
7196 // calculated using the current rounding mode using the following
7197 // horizontal add.
7198 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7199 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7200 // store doesn't really need to be here (except
7201 // maybe to zero the other double)
7202 return sd;
7203 }
7204 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007205
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007206 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007207 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007208
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007209 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007210 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007211 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7212 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7213 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7214 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007215 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007216 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007217
Bill Wendling8b8a6362009-01-17 03:56:04 +00007218 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007219 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007220 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007221 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007222 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007223 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007224 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007225
Owen Anderson825b72b2009-08-11 20:47:22 +00007226 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7227 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007228 Op.getOperand(0),
7229 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007230 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7231 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007232 Op.getOperand(0),
7233 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007234 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7235 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007236 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007237 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007238 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007239 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007240 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007241 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007242 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007243 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007244
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007245 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007246 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007247 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7248 DAG.getUNDEF(MVT::v2f64), ShufMask);
7249 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7250 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007251 DAG.getIntPtrConstant(0));
7252}
7253
Bill Wendling8b8a6362009-01-17 03:56:04 +00007254// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007255SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7256 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007257 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007258 // FP constant to bias correct the final result.
7259 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007260 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007261
7262 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007263 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007264 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007265
Owen Anderson825b72b2009-08-11 20:47:22 +00007266 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007267 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007268 DAG.getIntPtrConstant(0));
7269
7270 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007271 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007272 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007273 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007274 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007275 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007276 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007277 MVT::v2f64, Bias)));
7278 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007279 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007280 DAG.getIntPtrConstant(0));
7281
7282 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007283 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007284
7285 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007286 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007287
Owen Anderson825b72b2009-08-11 20:47:22 +00007288 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007289 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007290 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007291 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007292 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007293 }
7294
7295 // Handle final rounding.
7296 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007297}
7298
Dan Gohmand858e902010-04-17 15:26:15 +00007299SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7300 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007301 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007302 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007303
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007304 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007305 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7306 // the optimization here.
7307 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007308 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007309
Owen Andersone50ed302009-08-10 22:56:29 +00007310 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007311 EVT DstVT = Op.getValueType();
7312 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007313 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007314 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007315 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007316
7317 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007318 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007319 if (SrcVT == MVT::i32) {
7320 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7321 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7322 getPointerTy(), StackSlot, WordOff);
7323 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007324 StackSlot, MachinePointerInfo(),
7325 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007326 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007327 OffsetSlot, MachinePointerInfo(),
7328 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007329 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7330 return Fild;
7331 }
7332
7333 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7334 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007335 StackSlot, MachinePointerInfo(),
7336 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007337 // For i64 source, we need to add the appropriate power of 2 if the input
7338 // was negative. This is the same as the optimization in
7339 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7340 // we must be careful to do the computation in x87 extended precision, not
7341 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007342 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7343 MachineMemOperand *MMO =
7344 DAG.getMachineFunction()
7345 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7346 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007347
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007348 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7349 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007350 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7351 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007352
7353 APInt FF(32, 0x5F800000ULL);
7354
7355 // Check whether the sign bit is set.
7356 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7357 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7358 ISD::SETLT);
7359
7360 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7361 SDValue FudgePtr = DAG.getConstantPool(
7362 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7363 getPointerTy());
7364
7365 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7366 SDValue Zero = DAG.getIntPtrConstant(0);
7367 SDValue Four = DAG.getIntPtrConstant(4);
7368 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7369 Zero, Four);
7370 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7371
7372 // Load the value out, extending it from f32 to f80.
7373 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007374 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007375 FudgePtr, MachinePointerInfo::getConstantPool(),
7376 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007377 // Extend everything to 80 bits to force it to be done on x87.
7378 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7379 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007380}
7381
Dan Gohman475871a2008-07-27 21:46:04 +00007382std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007383FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007384 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007385
Owen Andersone50ed302009-08-10 22:56:29 +00007386 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007387
7388 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007389 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7390 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007391 }
7392
Owen Anderson825b72b2009-08-11 20:47:22 +00007393 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7394 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007395 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007396
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007397 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007398 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007399 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007400 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007401 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007402 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007403 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007404 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007405
Evan Cheng87c89352007-10-15 20:11:21 +00007406 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7407 // stack slot.
7408 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007409 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007410 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007411 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007412
Michael J. Spencerec38de22010-10-10 22:04:20 +00007413
7414
Evan Cheng0db9fe62006-04-25 20:13:52 +00007415 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007416 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007417 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007418 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7419 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7420 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007421 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007422
Dan Gohman475871a2008-07-27 21:46:04 +00007423 SDValue Chain = DAG.getEntryNode();
7424 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007425 EVT TheVT = Op.getOperand(0).getValueType();
7426 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007427 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007428 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007429 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007430 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007431 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007432 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007433 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007434 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007435
Chris Lattner492a43e2010-09-22 01:28:21 +00007436 MachineMemOperand *MMO =
7437 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7438 MachineMemOperand::MOLoad, MemSize, MemSize);
7439 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7440 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007441 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007442 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007443 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7444 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007445
Chris Lattner07290932010-09-22 01:05:16 +00007446 MachineMemOperand *MMO =
7447 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7448 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007449
Evan Cheng0db9fe62006-04-25 20:13:52 +00007450 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007451 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007452 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7453 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007454
Chris Lattner27a6c732007-11-24 07:07:01 +00007455 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007456}
7457
Dan Gohmand858e902010-04-17 15:26:15 +00007458SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7459 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007460 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007461 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007462
Eli Friedman948e95a2009-05-23 09:59:16 +00007463 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007464 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007465 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7466 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007467
Chris Lattner27a6c732007-11-24 07:07:01 +00007468 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007469 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007470 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007471}
7472
Dan Gohmand858e902010-04-17 15:26:15 +00007473SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7474 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007475 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7476 SDValue FIST = Vals.first, StackSlot = Vals.second;
7477 assert(FIST.getNode() && "Unexpected failure");
7478
7479 // Load the result.
7480 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007481 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007482}
7483
Dan Gohmand858e902010-04-17 15:26:15 +00007484SDValue X86TargetLowering::LowerFABS(SDValue Op,
7485 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007486 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007487 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007488 EVT VT = Op.getValueType();
7489 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007490 if (VT.isVector())
7491 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007492 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007493 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007494 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007495 CV.push_back(C);
7496 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007497 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007498 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007499 CV.push_back(C);
7500 CV.push_back(C);
7501 CV.push_back(C);
7502 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007503 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007504 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007505 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007506 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007507 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007508 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007509 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007510}
7511
Dan Gohmand858e902010-04-17 15:26:15 +00007512SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007513 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007514 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007515 EVT VT = Op.getValueType();
7516 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007517 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007518 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007519 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007520 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007521 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007522 CV.push_back(C);
7523 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007524 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007525 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007526 CV.push_back(C);
7527 CV.push_back(C);
7528 CV.push_back(C);
7529 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007530 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007531 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007532 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007533 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007534 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007535 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007536 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007537 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007538 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007539 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007540 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007541 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007542 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007543 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007544 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007545}
7546
Dan Gohmand858e902010-04-17 15:26:15 +00007547SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007548 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007549 SDValue Op0 = Op.getOperand(0);
7550 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007551 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007552 EVT VT = Op.getValueType();
7553 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007554
7555 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007556 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007557 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007558 SrcVT = VT;
7559 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007560 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007561 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007562 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007563 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007564 }
7565
7566 // At this point the operands and the result should have the same
7567 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007568
Evan Cheng68c47cb2007-01-05 07:55:56 +00007569 // First get the sign bit of second operand.
7570 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007571 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007572 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7573 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007574 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007575 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7576 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7577 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7578 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007579 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007580 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007581 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007582 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007583 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007584 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007585 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007586
7587 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007588 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007589 // Op0 is MVT::f32, Op1 is MVT::f64.
7590 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7591 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7592 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007593 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007594 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007595 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007596 }
7597
Evan Cheng73d6cf12007-01-05 21:37:56 +00007598 // Clear first operand sign bit.
7599 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007600 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007601 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7602 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007603 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007604 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7605 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7606 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7607 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007608 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007609 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007610 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007611 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007612 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007613 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007614 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007615
7616 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007617 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007618}
7619
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007620SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7621 SDValue N0 = Op.getOperand(0);
7622 DebugLoc dl = Op.getDebugLoc();
7623 EVT VT = Op.getValueType();
7624
7625 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7626 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7627 DAG.getConstant(1, VT));
7628 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7629}
7630
Dan Gohman076aee32009-03-04 19:44:21 +00007631/// Emit nodes that will be selected as "test Op0,Op0", or something
7632/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007633SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007634 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007635 DebugLoc dl = Op.getDebugLoc();
7636
Dan Gohman31125812009-03-07 01:58:32 +00007637 // CF and OF aren't always set the way we want. Determine which
7638 // of these we need.
7639 bool NeedCF = false;
7640 bool NeedOF = false;
7641 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007642 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007643 case X86::COND_A: case X86::COND_AE:
7644 case X86::COND_B: case X86::COND_BE:
7645 NeedCF = true;
7646 break;
7647 case X86::COND_G: case X86::COND_GE:
7648 case X86::COND_L: case X86::COND_LE:
7649 case X86::COND_O: case X86::COND_NO:
7650 NeedOF = true;
7651 break;
Dan Gohman31125812009-03-07 01:58:32 +00007652 }
7653
Dan Gohman076aee32009-03-04 19:44:21 +00007654 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007655 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7656 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007657 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7658 // Emit a CMP with 0, which is the TEST pattern.
7659 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7660 DAG.getConstant(0, Op.getValueType()));
7661
7662 unsigned Opcode = 0;
7663 unsigned NumOperands = 0;
7664 switch (Op.getNode()->getOpcode()) {
7665 case ISD::ADD:
7666 // Due to an isel shortcoming, be conservative if this add is likely to be
7667 // selected as part of a load-modify-store instruction. When the root node
7668 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7669 // uses of other nodes in the match, such as the ADD in this case. This
7670 // leads to the ADD being left around and reselected, with the result being
7671 // two adds in the output. Alas, even if none our users are stores, that
7672 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7673 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7674 // climbing the DAG back to the root, and it doesn't seem to be worth the
7675 // effort.
7676 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007677 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007678 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7679 goto default_case;
7680
7681 if (ConstantSDNode *C =
7682 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7683 // An add of one will be selected as an INC.
7684 if (C->getAPIntValue() == 1) {
7685 Opcode = X86ISD::INC;
7686 NumOperands = 1;
7687 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007688 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007689
7690 // An add of negative one (subtract of one) will be selected as a DEC.
7691 if (C->getAPIntValue().isAllOnesValue()) {
7692 Opcode = X86ISD::DEC;
7693 NumOperands = 1;
7694 break;
7695 }
Dan Gohman076aee32009-03-04 19:44:21 +00007696 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007697
7698 // Otherwise use a regular EFLAGS-setting add.
7699 Opcode = X86ISD::ADD;
7700 NumOperands = 2;
7701 break;
7702 case ISD::AND: {
7703 // If the primary and result isn't used, don't bother using X86ISD::AND,
7704 // because a TEST instruction will be better.
7705 bool NonFlagUse = false;
7706 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7707 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7708 SDNode *User = *UI;
7709 unsigned UOpNo = UI.getOperandNo();
7710 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7711 // Look pass truncate.
7712 UOpNo = User->use_begin().getOperandNo();
7713 User = *User->use_begin();
7714 }
7715
7716 if (User->getOpcode() != ISD::BRCOND &&
7717 User->getOpcode() != ISD::SETCC &&
7718 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7719 NonFlagUse = true;
7720 break;
7721 }
Dan Gohman076aee32009-03-04 19:44:21 +00007722 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007723
7724 if (!NonFlagUse)
7725 break;
7726 }
7727 // FALL THROUGH
7728 case ISD::SUB:
7729 case ISD::OR:
7730 case ISD::XOR:
7731 // Due to the ISEL shortcoming noted above, be conservative if this op is
7732 // likely to be selected as part of a load-modify-store instruction.
7733 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7734 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7735 if (UI->getOpcode() == ISD::STORE)
7736 goto default_case;
7737
7738 // Otherwise use a regular EFLAGS-setting instruction.
7739 switch (Op.getNode()->getOpcode()) {
7740 default: llvm_unreachable("unexpected operator!");
7741 case ISD::SUB: Opcode = X86ISD::SUB; break;
7742 case ISD::OR: Opcode = X86ISD::OR; break;
7743 case ISD::XOR: Opcode = X86ISD::XOR; break;
7744 case ISD::AND: Opcode = X86ISD::AND; break;
7745 }
7746
7747 NumOperands = 2;
7748 break;
7749 case X86ISD::ADD:
7750 case X86ISD::SUB:
7751 case X86ISD::INC:
7752 case X86ISD::DEC:
7753 case X86ISD::OR:
7754 case X86ISD::XOR:
7755 case X86ISD::AND:
7756 return SDValue(Op.getNode(), 1);
7757 default:
7758 default_case:
7759 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007760 }
7761
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007762 if (Opcode == 0)
7763 // Emit a CMP with 0, which is the TEST pattern.
7764 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7765 DAG.getConstant(0, Op.getValueType()));
7766
7767 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7768 SmallVector<SDValue, 4> Ops;
7769 for (unsigned i = 0; i != NumOperands; ++i)
7770 Ops.push_back(Op.getOperand(i));
7771
7772 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7773 DAG.ReplaceAllUsesWith(Op, New);
7774 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007775}
7776
7777/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7778/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007779SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007780 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007781 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7782 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007783 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007784
7785 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007786 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007787}
7788
Evan Chengd40d03e2010-01-06 19:38:29 +00007789/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7790/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007791SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7792 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007793 SDValue Op0 = And.getOperand(0);
7794 SDValue Op1 = And.getOperand(1);
7795 if (Op0.getOpcode() == ISD::TRUNCATE)
7796 Op0 = Op0.getOperand(0);
7797 if (Op1.getOpcode() == ISD::TRUNCATE)
7798 Op1 = Op1.getOperand(0);
7799
Evan Chengd40d03e2010-01-06 19:38:29 +00007800 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007801 if (Op1.getOpcode() == ISD::SHL)
7802 std::swap(Op0, Op1);
7803 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007804 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7805 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007806 // If we looked past a truncate, check that it's only truncating away
7807 // known zeros.
7808 unsigned BitWidth = Op0.getValueSizeInBits();
7809 unsigned AndBitWidth = And.getValueSizeInBits();
7810 if (BitWidth > AndBitWidth) {
7811 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7812 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7813 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7814 return SDValue();
7815 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007816 LHS = Op1;
7817 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007818 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007819 } else if (Op1.getOpcode() == ISD::Constant) {
7820 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7821 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007822 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7823 LHS = AndLHS.getOperand(0);
7824 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007825 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007826 }
Evan Cheng0488db92007-09-25 01:57:46 +00007827
Evan Chengd40d03e2010-01-06 19:38:29 +00007828 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007829 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007830 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007831 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007832 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007833 // Also promote i16 to i32 for performance / code size reason.
7834 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007835 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007836 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007837
Evan Chengd40d03e2010-01-06 19:38:29 +00007838 // If the operand types disagree, extend the shift amount to match. Since
7839 // BT ignores high bits (like shifts) we can use anyextend.
7840 if (LHS.getValueType() != RHS.getValueType())
7841 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007842
Evan Chengd40d03e2010-01-06 19:38:29 +00007843 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7844 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7845 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7846 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007847 }
7848
Evan Cheng54de3ea2010-01-05 06:52:31 +00007849 return SDValue();
7850}
7851
Dan Gohmand858e902010-04-17 15:26:15 +00007852SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007853 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7854 SDValue Op0 = Op.getOperand(0);
7855 SDValue Op1 = Op.getOperand(1);
7856 DebugLoc dl = Op.getDebugLoc();
7857 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7858
7859 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007860 // Lower (X & (1 << N)) == 0 to BT(X, N).
7861 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7862 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007863 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007864 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007865 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007866 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7867 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7868 if (NewSetCC.getNode())
7869 return NewSetCC;
7870 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007871
Chris Lattner481eebc2010-12-19 21:23:48 +00007872 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7873 // these.
7874 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007875 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007876 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7877 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007878
Chris Lattner481eebc2010-12-19 21:23:48 +00007879 // If the input is a setcc, then reuse the input setcc or use a new one with
7880 // the inverted condition.
7881 if (Op0.getOpcode() == X86ISD::SETCC) {
7882 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7883 bool Invert = (CC == ISD::SETNE) ^
7884 cast<ConstantSDNode>(Op1)->isNullValue();
7885 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007886
Evan Cheng2c755ba2010-02-27 07:36:59 +00007887 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007888 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7889 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7890 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007891 }
7892
Evan Chenge5b51ac2010-04-17 06:13:15 +00007893 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007894 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007895 if (X86CC == X86::COND_INVALID)
7896 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007897
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007898 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007899 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007900 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007901}
7902
Dan Gohmand858e902010-04-17 15:26:15 +00007903SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007904 SDValue Cond;
7905 SDValue Op0 = Op.getOperand(0);
7906 SDValue Op1 = Op.getOperand(1);
7907 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007908 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007909 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7910 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007911 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007912
7913 if (isFP) {
7914 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007915 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007916 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7917 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007918 bool Swap = false;
7919
7920 switch (SetCCOpcode) {
7921 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007922 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007923 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007924 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007925 case ISD::SETGT: Swap = true; // Fallthrough
7926 case ISD::SETLT:
7927 case ISD::SETOLT: SSECC = 1; break;
7928 case ISD::SETOGE:
7929 case ISD::SETGE: Swap = true; // Fallthrough
7930 case ISD::SETLE:
7931 case ISD::SETOLE: SSECC = 2; break;
7932 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007933 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007934 case ISD::SETNE: SSECC = 4; break;
7935 case ISD::SETULE: Swap = true;
7936 case ISD::SETUGE: SSECC = 5; break;
7937 case ISD::SETULT: Swap = true;
7938 case ISD::SETUGT: SSECC = 6; break;
7939 case ISD::SETO: SSECC = 7; break;
7940 }
7941 if (Swap)
7942 std::swap(Op0, Op1);
7943
Nate Begemanfb8ead02008-07-25 19:05:58 +00007944 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007945 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007946 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007947 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007948 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7949 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007950 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007951 }
7952 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007953 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007954 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7955 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007956 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007957 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007958 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007959 }
7960 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007961 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007963
Nate Begeman30a0de92008-07-17 16:51:19 +00007964 // We are handling one of the integer comparisons here. Since SSE only has
7965 // GT and EQ comparisons for integer, swapping operands and multiple
7966 // operations may be required for some comparisons.
7967 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7968 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007969
Owen Anderson825b72b2009-08-11 20:47:22 +00007970 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007971 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007972 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007973 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007974 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7975 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007976 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007977
Nate Begeman30a0de92008-07-17 16:51:19 +00007978 switch (SetCCOpcode) {
7979 default: break;
7980 case ISD::SETNE: Invert = true;
7981 case ISD::SETEQ: Opc = EQOpc; break;
7982 case ISD::SETLT: Swap = true;
7983 case ISD::SETGT: Opc = GTOpc; break;
7984 case ISD::SETGE: Swap = true;
7985 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7986 case ISD::SETULT: Swap = true;
7987 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7988 case ISD::SETUGE: Swap = true;
7989 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7990 }
7991 if (Swap)
7992 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007993
Nate Begeman30a0de92008-07-17 16:51:19 +00007994 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7995 // bits of the inputs before performing those operations.
7996 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007997 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007998 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7999 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008000 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008001 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8002 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008003 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8004 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008005 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008006
Dale Johannesenace16102009-02-03 19:33:06 +00008007 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008008
8009 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008010 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008011 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008012
Nate Begeman30a0de92008-07-17 16:51:19 +00008013 return Result;
8014}
Evan Cheng0488db92007-09-25 01:57:46 +00008015
Evan Cheng370e5342008-12-03 08:38:43 +00008016// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008017static bool isX86LogicalCmp(SDValue Op) {
8018 unsigned Opc = Op.getNode()->getOpcode();
8019 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8020 return true;
8021 if (Op.getResNo() == 1 &&
8022 (Opc == X86ISD::ADD ||
8023 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008024 Opc == X86ISD::ADC ||
8025 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008026 Opc == X86ISD::SMUL ||
8027 Opc == X86ISD::UMUL ||
8028 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008029 Opc == X86ISD::DEC ||
8030 Opc == X86ISD::OR ||
8031 Opc == X86ISD::XOR ||
8032 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008033 return true;
8034
Chris Lattner9637d5b2010-12-05 07:49:54 +00008035 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8036 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008037
Dan Gohman076aee32009-03-04 19:44:21 +00008038 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008039}
8040
Chris Lattnera2b56002010-12-05 01:23:24 +00008041static bool isZero(SDValue V) {
8042 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8043 return C && C->isNullValue();
8044}
8045
Chris Lattner96908b12010-12-05 02:00:51 +00008046static bool isAllOnes(SDValue V) {
8047 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8048 return C && C->isAllOnesValue();
8049}
8050
Dan Gohmand858e902010-04-17 15:26:15 +00008051SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008052 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008053 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008054 SDValue Op1 = Op.getOperand(1);
8055 SDValue Op2 = Op.getOperand(2);
8056 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008057 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008058
Dan Gohman1a492952009-10-20 16:22:37 +00008059 if (Cond.getOpcode() == ISD::SETCC) {
8060 SDValue NewCond = LowerSETCC(Cond, DAG);
8061 if (NewCond.getNode())
8062 Cond = NewCond;
8063 }
Evan Cheng734503b2006-09-11 02:19:56 +00008064
Chris Lattnera2b56002010-12-05 01:23:24 +00008065 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008066 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008067 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008068 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008069 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008070 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8071 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008072 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008073
Chris Lattnera2b56002010-12-05 01:23:24 +00008074 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008075
8076 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008077 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8078 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008079
8080 SDValue CmpOp0 = Cmp.getOperand(0);
8081 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8082 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008083
Chris Lattner96908b12010-12-05 02:00:51 +00008084 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008085 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8086 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008087
Chris Lattner96908b12010-12-05 02:00:51 +00008088 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8089 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008090
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008091 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008092 if (N2C == 0 || !N2C->isNullValue())
8093 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8094 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008095 }
8096 }
8097
Chris Lattnera2b56002010-12-05 01:23:24 +00008098 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008099 if (Cond.getOpcode() == ISD::AND &&
8100 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8101 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008102 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008103 Cond = Cond.getOperand(0);
8104 }
8105
Evan Cheng3f41d662007-10-08 22:16:29 +00008106 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8107 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008108 if (Cond.getOpcode() == X86ISD::SETCC ||
8109 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008110 CC = Cond.getOperand(0);
8111
Dan Gohman475871a2008-07-27 21:46:04 +00008112 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008113 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008114 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008115
Evan Cheng3f41d662007-10-08 22:16:29 +00008116 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008117 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008118 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008119 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008120
Chris Lattnerd1980a52009-03-12 06:52:53 +00008121 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8122 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008123 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008124 addTest = false;
8125 }
8126 }
8127
8128 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008129 // Look pass the truncate.
8130 if (Cond.getOpcode() == ISD::TRUNCATE)
8131 Cond = Cond.getOperand(0);
8132
8133 // We know the result of AND is compared against zero. Try to match
8134 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008135 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008136 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008137 if (NewSetCC.getNode()) {
8138 CC = NewSetCC.getOperand(0);
8139 Cond = NewSetCC.getOperand(1);
8140 addTest = false;
8141 }
8142 }
8143 }
8144
8145 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008146 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008147 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008148 }
8149
Benjamin Kramere915ff32010-12-22 23:09:28 +00008150 // a < b ? -1 : 0 -> RES = ~setcc_carry
8151 // a < b ? 0 : -1 -> RES = setcc_carry
8152 // a >= b ? -1 : 0 -> RES = setcc_carry
8153 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8154 if (Cond.getOpcode() == X86ISD::CMP) {
8155 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8156
8157 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8158 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8159 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8160 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8161 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8162 return DAG.getNOT(DL, Res, Res.getValueType());
8163 return Res;
8164 }
8165 }
8166
Evan Cheng0488db92007-09-25 01:57:46 +00008167 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8168 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008169 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008170 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008171 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008172}
8173
Evan Cheng370e5342008-12-03 08:38:43 +00008174// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8175// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8176// from the AND / OR.
8177static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8178 Opc = Op.getOpcode();
8179 if (Opc != ISD::OR && Opc != ISD::AND)
8180 return false;
8181 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8182 Op.getOperand(0).hasOneUse() &&
8183 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8184 Op.getOperand(1).hasOneUse());
8185}
8186
Evan Cheng961d6d42009-02-02 08:19:07 +00008187// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8188// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008189static bool isXor1OfSetCC(SDValue Op) {
8190 if (Op.getOpcode() != ISD::XOR)
8191 return false;
8192 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8193 if (N1C && N1C->getAPIntValue() == 1) {
8194 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8195 Op.getOperand(0).hasOneUse();
8196 }
8197 return false;
8198}
8199
Dan Gohmand858e902010-04-17 15:26:15 +00008200SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008201 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008202 SDValue Chain = Op.getOperand(0);
8203 SDValue Cond = Op.getOperand(1);
8204 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008205 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008206 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008207
Dan Gohman1a492952009-10-20 16:22:37 +00008208 if (Cond.getOpcode() == ISD::SETCC) {
8209 SDValue NewCond = LowerSETCC(Cond, DAG);
8210 if (NewCond.getNode())
8211 Cond = NewCond;
8212 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008213#if 0
8214 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008215 else if (Cond.getOpcode() == X86ISD::ADD ||
8216 Cond.getOpcode() == X86ISD::SUB ||
8217 Cond.getOpcode() == X86ISD::SMUL ||
8218 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008219 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008220#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008221
Evan Chengad9c0a32009-12-15 00:53:42 +00008222 // Look pass (and (setcc_carry (cmp ...)), 1).
8223 if (Cond.getOpcode() == ISD::AND &&
8224 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8225 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008226 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008227 Cond = Cond.getOperand(0);
8228 }
8229
Evan Cheng3f41d662007-10-08 22:16:29 +00008230 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8231 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008232 if (Cond.getOpcode() == X86ISD::SETCC ||
8233 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008234 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008235
Dan Gohman475871a2008-07-27 21:46:04 +00008236 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008237 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008238 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008239 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008240 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008241 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008242 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008243 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008244 default: break;
8245 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008246 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008247 // These can only come from an arithmetic instruction with overflow,
8248 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008249 Cond = Cond.getNode()->getOperand(1);
8250 addTest = false;
8251 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008252 }
Evan Cheng0488db92007-09-25 01:57:46 +00008253 }
Evan Cheng370e5342008-12-03 08:38:43 +00008254 } else {
8255 unsigned CondOpc;
8256 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8257 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008258 if (CondOpc == ISD::OR) {
8259 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8260 // two branches instead of an explicit OR instruction with a
8261 // separate test.
8262 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008263 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008264 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008265 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008266 Chain, Dest, CC, Cmp);
8267 CC = Cond.getOperand(1).getOperand(0);
8268 Cond = Cmp;
8269 addTest = false;
8270 }
8271 } else { // ISD::AND
8272 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8273 // two branches instead of an explicit AND instruction with a
8274 // separate test. However, we only do this if this block doesn't
8275 // have a fall-through edge, because this requires an explicit
8276 // jmp when the condition is false.
8277 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008278 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008279 Op.getNode()->hasOneUse()) {
8280 X86::CondCode CCode =
8281 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8282 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008283 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008284 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008285 // Look for an unconditional branch following this conditional branch.
8286 // We need this because we need to reverse the successors in order
8287 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008288 if (User->getOpcode() == ISD::BR) {
8289 SDValue FalseBB = User->getOperand(1);
8290 SDNode *NewBR =
8291 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008292 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008293 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008294 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008295
Dale Johannesene4d209d2009-02-03 20:21:25 +00008296 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008297 Chain, Dest, CC, Cmp);
8298 X86::CondCode CCode =
8299 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8300 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008301 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008302 Cond = Cmp;
8303 addTest = false;
8304 }
8305 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008306 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008307 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8308 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8309 // It should be transformed during dag combiner except when the condition
8310 // is set by a arithmetics with overflow node.
8311 X86::CondCode CCode =
8312 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8313 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008314 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008315 Cond = Cond.getOperand(0).getOperand(1);
8316 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008317 }
Evan Cheng0488db92007-09-25 01:57:46 +00008318 }
8319
8320 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008321 // Look pass the truncate.
8322 if (Cond.getOpcode() == ISD::TRUNCATE)
8323 Cond = Cond.getOperand(0);
8324
8325 // We know the result of AND is compared against zero. Try to match
8326 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008327 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008328 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8329 if (NewSetCC.getNode()) {
8330 CC = NewSetCC.getOperand(0);
8331 Cond = NewSetCC.getOperand(1);
8332 addTest = false;
8333 }
8334 }
8335 }
8336
8337 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008338 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008339 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008340 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008341 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008342 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008343}
8344
Anton Korobeynikove060b532007-04-17 19:34:00 +00008345
8346// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8347// Calls to _alloca is needed to probe the stack when allocating more than 4k
8348// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8349// that the guard pages used by the OS virtual memory manager are allocated in
8350// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008351SDValue
8352X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008353 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008354 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008355 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008356 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008357 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008358
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008359 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008360 SDValue Chain = Op.getOperand(0);
8361 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008362 // FIXME: Ensure alignment here
8363
Dan Gohman475871a2008-07-27 21:46:04 +00008364 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008365
Owen Anderson825b72b2009-08-11 20:47:22 +00008366 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008367 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008368
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008369 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008370 Flag = Chain.getValue(1);
8371
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008372 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008373
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008374 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008375 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008376
Dale Johannesendd64c412009-02-04 00:33:20 +00008377 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008378
Dan Gohman475871a2008-07-27 21:46:04 +00008379 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008380 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008381}
8382
Dan Gohmand858e902010-04-17 15:26:15 +00008383SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008384 MachineFunction &MF = DAG.getMachineFunction();
8385 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8386
Dan Gohman69de1932008-02-06 22:27:42 +00008387 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008388 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008389
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008390 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008391 // vastart just stores the address of the VarArgsFrameIndex slot into the
8392 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008393 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8394 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008395 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8396 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008397 }
8398
8399 // __va_list_tag:
8400 // gp_offset (0 - 6 * 8)
8401 // fp_offset (48 - 48 + 8 * 16)
8402 // overflow_arg_area (point to parameters coming in memory).
8403 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008404 SmallVector<SDValue, 8> MemOps;
8405 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008406 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008407 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008408 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8409 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008410 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008411 MemOps.push_back(Store);
8412
8413 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008414 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008415 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008416 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008417 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8418 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008419 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008420 MemOps.push_back(Store);
8421
8422 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008423 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008424 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008425 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8426 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008427 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8428 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008429 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008430 MemOps.push_back(Store);
8431
8432 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008433 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008434 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008435 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8436 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008437 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8438 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008439 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008440 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008441 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008442}
8443
Dan Gohmand858e902010-04-17 15:26:15 +00008444SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008445 assert(Subtarget->is64Bit() &&
8446 "LowerVAARG only handles 64-bit va_arg!");
8447 assert((Subtarget->isTargetLinux() ||
8448 Subtarget->isTargetDarwin()) &&
8449 "Unhandled target in LowerVAARG");
8450 assert(Op.getNode()->getNumOperands() == 4);
8451 SDValue Chain = Op.getOperand(0);
8452 SDValue SrcPtr = Op.getOperand(1);
8453 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8454 unsigned Align = Op.getConstantOperandVal(3);
8455 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008456
Dan Gohman320afb82010-10-12 18:00:49 +00008457 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008458 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008459 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8460 uint8_t ArgMode;
8461
8462 // Decide which area this value should be read from.
8463 // TODO: Implement the AMD64 ABI in its entirety. This simple
8464 // selection mechanism works only for the basic types.
8465 if (ArgVT == MVT::f80) {
8466 llvm_unreachable("va_arg for f80 not yet implemented");
8467 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8468 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8469 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8470 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8471 } else {
8472 llvm_unreachable("Unhandled argument type in LowerVAARG");
8473 }
8474
8475 if (ArgMode == 2) {
8476 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008477 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008478 !(DAG.getMachineFunction()
8479 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008480 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008481 }
8482
8483 // Insert VAARG_64 node into the DAG
8484 // VAARG_64 returns two values: Variable Argument Address, Chain
8485 SmallVector<SDValue, 11> InstOps;
8486 InstOps.push_back(Chain);
8487 InstOps.push_back(SrcPtr);
8488 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8489 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8490 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8491 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8492 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8493 VTs, &InstOps[0], InstOps.size(),
8494 MVT::i64,
8495 MachinePointerInfo(SV),
8496 /*Align=*/0,
8497 /*Volatile=*/false,
8498 /*ReadMem=*/true,
8499 /*WriteMem=*/true);
8500 Chain = VAARG.getValue(1);
8501
8502 // Load the next argument and return it
8503 return DAG.getLoad(ArgVT, dl,
8504 Chain,
8505 VAARG,
8506 MachinePointerInfo(),
8507 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008508}
8509
Dan Gohmand858e902010-04-17 15:26:15 +00008510SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008511 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008512 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008513 SDValue Chain = Op.getOperand(0);
8514 SDValue DstPtr = Op.getOperand(1);
8515 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008516 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8517 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008518 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008519
Chris Lattnere72f2022010-09-21 05:40:29 +00008520 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008521 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008522 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008523 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008524}
8525
Dan Gohman475871a2008-07-27 21:46:04 +00008526SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008527X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008528 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008529 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008530 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008531 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008532 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008533 case Intrinsic::x86_sse_comieq_ss:
8534 case Intrinsic::x86_sse_comilt_ss:
8535 case Intrinsic::x86_sse_comile_ss:
8536 case Intrinsic::x86_sse_comigt_ss:
8537 case Intrinsic::x86_sse_comige_ss:
8538 case Intrinsic::x86_sse_comineq_ss:
8539 case Intrinsic::x86_sse_ucomieq_ss:
8540 case Intrinsic::x86_sse_ucomilt_ss:
8541 case Intrinsic::x86_sse_ucomile_ss:
8542 case Intrinsic::x86_sse_ucomigt_ss:
8543 case Intrinsic::x86_sse_ucomige_ss:
8544 case Intrinsic::x86_sse_ucomineq_ss:
8545 case Intrinsic::x86_sse2_comieq_sd:
8546 case Intrinsic::x86_sse2_comilt_sd:
8547 case Intrinsic::x86_sse2_comile_sd:
8548 case Intrinsic::x86_sse2_comigt_sd:
8549 case Intrinsic::x86_sse2_comige_sd:
8550 case Intrinsic::x86_sse2_comineq_sd:
8551 case Intrinsic::x86_sse2_ucomieq_sd:
8552 case Intrinsic::x86_sse2_ucomilt_sd:
8553 case Intrinsic::x86_sse2_ucomile_sd:
8554 case Intrinsic::x86_sse2_ucomigt_sd:
8555 case Intrinsic::x86_sse2_ucomige_sd:
8556 case Intrinsic::x86_sse2_ucomineq_sd: {
8557 unsigned Opc = 0;
8558 ISD::CondCode CC = ISD::SETCC_INVALID;
8559 switch (IntNo) {
8560 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008561 case Intrinsic::x86_sse_comieq_ss:
8562 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008563 Opc = X86ISD::COMI;
8564 CC = ISD::SETEQ;
8565 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008566 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008567 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008568 Opc = X86ISD::COMI;
8569 CC = ISD::SETLT;
8570 break;
8571 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008572 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008573 Opc = X86ISD::COMI;
8574 CC = ISD::SETLE;
8575 break;
8576 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008577 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008578 Opc = X86ISD::COMI;
8579 CC = ISD::SETGT;
8580 break;
8581 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008582 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008583 Opc = X86ISD::COMI;
8584 CC = ISD::SETGE;
8585 break;
8586 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008587 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008588 Opc = X86ISD::COMI;
8589 CC = ISD::SETNE;
8590 break;
8591 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008592 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008593 Opc = X86ISD::UCOMI;
8594 CC = ISD::SETEQ;
8595 break;
8596 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008597 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008598 Opc = X86ISD::UCOMI;
8599 CC = ISD::SETLT;
8600 break;
8601 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008602 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008603 Opc = X86ISD::UCOMI;
8604 CC = ISD::SETLE;
8605 break;
8606 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008607 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008608 Opc = X86ISD::UCOMI;
8609 CC = ISD::SETGT;
8610 break;
8611 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008612 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008613 Opc = X86ISD::UCOMI;
8614 CC = ISD::SETGE;
8615 break;
8616 case Intrinsic::x86_sse_ucomineq_ss:
8617 case Intrinsic::x86_sse2_ucomineq_sd:
8618 Opc = X86ISD::UCOMI;
8619 CC = ISD::SETNE;
8620 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008621 }
Evan Cheng734503b2006-09-11 02:19:56 +00008622
Dan Gohman475871a2008-07-27 21:46:04 +00008623 SDValue LHS = Op.getOperand(1);
8624 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008625 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008626 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008627 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8628 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8629 DAG.getConstant(X86CC, MVT::i8), Cond);
8630 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008631 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008632 // ptest and testp intrinsics. The intrinsic these come from are designed to
8633 // return an integer value, not just an instruction so lower it to the ptest
8634 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008635 case Intrinsic::x86_sse41_ptestz:
8636 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008637 case Intrinsic::x86_sse41_ptestnzc:
8638 case Intrinsic::x86_avx_ptestz_256:
8639 case Intrinsic::x86_avx_ptestc_256:
8640 case Intrinsic::x86_avx_ptestnzc_256:
8641 case Intrinsic::x86_avx_vtestz_ps:
8642 case Intrinsic::x86_avx_vtestc_ps:
8643 case Intrinsic::x86_avx_vtestnzc_ps:
8644 case Intrinsic::x86_avx_vtestz_pd:
8645 case Intrinsic::x86_avx_vtestc_pd:
8646 case Intrinsic::x86_avx_vtestnzc_pd:
8647 case Intrinsic::x86_avx_vtestz_ps_256:
8648 case Intrinsic::x86_avx_vtestc_ps_256:
8649 case Intrinsic::x86_avx_vtestnzc_ps_256:
8650 case Intrinsic::x86_avx_vtestz_pd_256:
8651 case Intrinsic::x86_avx_vtestc_pd_256:
8652 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8653 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008654 unsigned X86CC = 0;
8655 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008656 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008657 case Intrinsic::x86_avx_vtestz_ps:
8658 case Intrinsic::x86_avx_vtestz_pd:
8659 case Intrinsic::x86_avx_vtestz_ps_256:
8660 case Intrinsic::x86_avx_vtestz_pd_256:
8661 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008662 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008663 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008664 // ZF = 1
8665 X86CC = X86::COND_E;
8666 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008667 case Intrinsic::x86_avx_vtestc_ps:
8668 case Intrinsic::x86_avx_vtestc_pd:
8669 case Intrinsic::x86_avx_vtestc_ps_256:
8670 case Intrinsic::x86_avx_vtestc_pd_256:
8671 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008672 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008673 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008674 // CF = 1
8675 X86CC = X86::COND_B;
8676 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008677 case Intrinsic::x86_avx_vtestnzc_ps:
8678 case Intrinsic::x86_avx_vtestnzc_pd:
8679 case Intrinsic::x86_avx_vtestnzc_ps_256:
8680 case Intrinsic::x86_avx_vtestnzc_pd_256:
8681 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008682 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008683 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008684 // ZF and CF = 0
8685 X86CC = X86::COND_A;
8686 break;
8687 }
Eric Christopherfd179292009-08-27 18:07:15 +00008688
Eric Christopher71c67532009-07-29 00:28:05 +00008689 SDValue LHS = Op.getOperand(1);
8690 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008691 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8692 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008693 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8694 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8695 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008696 }
Evan Cheng5759f972008-05-04 09:15:50 +00008697
8698 // Fix vector shift instructions where the last operand is a non-immediate
8699 // i32 value.
8700 case Intrinsic::x86_sse2_pslli_w:
8701 case Intrinsic::x86_sse2_pslli_d:
8702 case Intrinsic::x86_sse2_pslli_q:
8703 case Intrinsic::x86_sse2_psrli_w:
8704 case Intrinsic::x86_sse2_psrli_d:
8705 case Intrinsic::x86_sse2_psrli_q:
8706 case Intrinsic::x86_sse2_psrai_w:
8707 case Intrinsic::x86_sse2_psrai_d:
8708 case Intrinsic::x86_mmx_pslli_w:
8709 case Intrinsic::x86_mmx_pslli_d:
8710 case Intrinsic::x86_mmx_pslli_q:
8711 case Intrinsic::x86_mmx_psrli_w:
8712 case Intrinsic::x86_mmx_psrli_d:
8713 case Intrinsic::x86_mmx_psrli_q:
8714 case Intrinsic::x86_mmx_psrai_w:
8715 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008716 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008717 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008718 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008719
8720 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008721 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008722 switch (IntNo) {
8723 case Intrinsic::x86_sse2_pslli_w:
8724 NewIntNo = Intrinsic::x86_sse2_psll_w;
8725 break;
8726 case Intrinsic::x86_sse2_pslli_d:
8727 NewIntNo = Intrinsic::x86_sse2_psll_d;
8728 break;
8729 case Intrinsic::x86_sse2_pslli_q:
8730 NewIntNo = Intrinsic::x86_sse2_psll_q;
8731 break;
8732 case Intrinsic::x86_sse2_psrli_w:
8733 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8734 break;
8735 case Intrinsic::x86_sse2_psrli_d:
8736 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8737 break;
8738 case Intrinsic::x86_sse2_psrli_q:
8739 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8740 break;
8741 case Intrinsic::x86_sse2_psrai_w:
8742 NewIntNo = Intrinsic::x86_sse2_psra_w;
8743 break;
8744 case Intrinsic::x86_sse2_psrai_d:
8745 NewIntNo = Intrinsic::x86_sse2_psra_d;
8746 break;
8747 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008748 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008749 switch (IntNo) {
8750 case Intrinsic::x86_mmx_pslli_w:
8751 NewIntNo = Intrinsic::x86_mmx_psll_w;
8752 break;
8753 case Intrinsic::x86_mmx_pslli_d:
8754 NewIntNo = Intrinsic::x86_mmx_psll_d;
8755 break;
8756 case Intrinsic::x86_mmx_pslli_q:
8757 NewIntNo = Intrinsic::x86_mmx_psll_q;
8758 break;
8759 case Intrinsic::x86_mmx_psrli_w:
8760 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8761 break;
8762 case Intrinsic::x86_mmx_psrli_d:
8763 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8764 break;
8765 case Intrinsic::x86_mmx_psrli_q:
8766 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8767 break;
8768 case Intrinsic::x86_mmx_psrai_w:
8769 NewIntNo = Intrinsic::x86_mmx_psra_w;
8770 break;
8771 case Intrinsic::x86_mmx_psrai_d:
8772 NewIntNo = Intrinsic::x86_mmx_psra_d;
8773 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008774 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008775 }
8776 break;
8777 }
8778 }
Mon P Wangefa42202009-09-03 19:56:25 +00008779
8780 // The vector shift intrinsics with scalars uses 32b shift amounts but
8781 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8782 // to be zero.
8783 SDValue ShOps[4];
8784 ShOps[0] = ShAmt;
8785 ShOps[1] = DAG.getConstant(0, MVT::i32);
8786 if (ShAmtVT == MVT::v4i32) {
8787 ShOps[2] = DAG.getUNDEF(MVT::i32);
8788 ShOps[3] = DAG.getUNDEF(MVT::i32);
8789 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8790 } else {
8791 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008792// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008793 }
8794
Owen Andersone50ed302009-08-10 22:56:29 +00008795 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008796 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008797 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008798 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008799 Op.getOperand(1), ShAmt);
8800 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008801 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008802}
Evan Cheng72261582005-12-20 06:22:03 +00008803
Dan Gohmand858e902010-04-17 15:26:15 +00008804SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8805 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008806 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8807 MFI->setReturnAddressIsTaken(true);
8808
Bill Wendling64e87322009-01-16 19:25:27 +00008809 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008810 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008811
8812 if (Depth > 0) {
8813 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8814 SDValue Offset =
8815 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008816 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008817 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008818 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008819 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008820 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008821 }
8822
8823 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008824 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008825 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008826 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008827}
8828
Dan Gohmand858e902010-04-17 15:26:15 +00008829SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008830 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8831 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008832
Owen Andersone50ed302009-08-10 22:56:29 +00008833 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008834 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008835 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8836 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008837 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008838 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008839 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8840 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008841 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008842 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008843}
8844
Dan Gohman475871a2008-07-27 21:46:04 +00008845SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008846 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008847 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008848}
8849
Dan Gohmand858e902010-04-17 15:26:15 +00008850SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008851 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008852 SDValue Chain = Op.getOperand(0);
8853 SDValue Offset = Op.getOperand(1);
8854 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008855 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008856
Dan Gohmand8816272010-08-11 18:14:00 +00008857 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8858 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8859 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008860 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008861
Dan Gohmand8816272010-08-11 18:14:00 +00008862 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8863 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008864 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008865 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8866 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008867 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008868 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008869
Dale Johannesene4d209d2009-02-03 20:21:25 +00008870 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008871 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008872 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008873}
8874
Dan Gohman475871a2008-07-27 21:46:04 +00008875SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008876 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008877 SDValue Root = Op.getOperand(0);
8878 SDValue Trmp = Op.getOperand(1); // trampoline
8879 SDValue FPtr = Op.getOperand(2); // nested function
8880 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008881 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008882
Dan Gohman69de1932008-02-06 22:27:42 +00008883 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008884
8885 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008886 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008887
8888 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008889 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8890 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008891
Evan Cheng0e6a0522011-07-18 20:57:22 +00008892 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
8893 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008894
8895 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8896
8897 // Load the pointer to the nested function into R11.
8898 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008899 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008900 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008901 Addr, MachinePointerInfo(TrmpAddr),
8902 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008903
Owen Anderson825b72b2009-08-11 20:47:22 +00008904 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8905 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008906 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8907 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008908 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008909
8910 // Load the 'nest' parameter value into R10.
8911 // R10 is specified in X86CallingConv.td
8912 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008913 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8914 DAG.getConstant(10, MVT::i64));
8915 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008916 Addr, MachinePointerInfo(TrmpAddr, 10),
8917 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008918
Owen Anderson825b72b2009-08-11 20:47:22 +00008919 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8920 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008921 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8922 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008923 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008924
8925 // Jump to the nested function.
8926 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008927 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8928 DAG.getConstant(20, MVT::i64));
8929 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008930 Addr, MachinePointerInfo(TrmpAddr, 20),
8931 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008932
8933 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008934 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8935 DAG.getConstant(22, MVT::i64));
8936 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008937 MachinePointerInfo(TrmpAddr, 22),
8938 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008939
Dan Gohman475871a2008-07-27 21:46:04 +00008940 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008941 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008942 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008943 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008944 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008945 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008946 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008947 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008948
8949 switch (CC) {
8950 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008951 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008952 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008953 case CallingConv::X86_StdCall: {
8954 // Pass 'nest' parameter in ECX.
8955 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008956 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008957
8958 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008959 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008960 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008961
Chris Lattner58d74912008-03-12 17:45:29 +00008962 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008963 unsigned InRegCount = 0;
8964 unsigned Idx = 1;
8965
8966 for (FunctionType::param_iterator I = FTy->param_begin(),
8967 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008968 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008969 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008970 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008971
8972 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008973 report_fatal_error("Nest register in use - reduce number of inreg"
8974 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008975 }
8976 }
8977 break;
8978 }
8979 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008980 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008981 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008982 // Pass 'nest' parameter in EAX.
8983 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008984 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008985 break;
8986 }
8987
Dan Gohman475871a2008-07-27 21:46:04 +00008988 SDValue OutChains[4];
8989 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008990
Owen Anderson825b72b2009-08-11 20:47:22 +00008991 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8992 DAG.getConstant(10, MVT::i32));
8993 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008994
Chris Lattnera62fe662010-02-05 19:20:30 +00008995 // This is storing the opcode for MOV32ri.
8996 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00008997 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008998 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008999 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009000 Trmp, MachinePointerInfo(TrmpAddr),
9001 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009002
Owen Anderson825b72b2009-08-11 20:47:22 +00009003 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9004 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009005 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9006 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009007 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009008
Chris Lattnera62fe662010-02-05 19:20:30 +00009009 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009010 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9011 DAG.getConstant(5, MVT::i32));
9012 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009013 MachinePointerInfo(TrmpAddr, 5),
9014 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009015
Owen Anderson825b72b2009-08-11 20:47:22 +00009016 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9017 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009018 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9019 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009020 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009021
Dan Gohman475871a2008-07-27 21:46:04 +00009022 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009023 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009024 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009025 }
9026}
9027
Dan Gohmand858e902010-04-17 15:26:15 +00009028SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9029 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009030 /*
9031 The rounding mode is in bits 11:10 of FPSR, and has the following
9032 settings:
9033 00 Round to nearest
9034 01 Round to -inf
9035 10 Round to +inf
9036 11 Round to 0
9037
9038 FLT_ROUNDS, on the other hand, expects the following:
9039 -1 Undefined
9040 0 Round to 0
9041 1 Round to nearest
9042 2 Round to +inf
9043 3 Round to -inf
9044
9045 To perform the conversion, we do:
9046 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9047 */
9048
9049 MachineFunction &MF = DAG.getMachineFunction();
9050 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009051 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009052 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009053 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009054 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009055
9056 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009057 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009058 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009059
Michael J. Spencerec38de22010-10-10 22:04:20 +00009060
Chris Lattner2156b792010-09-22 01:11:26 +00009061 MachineMemOperand *MMO =
9062 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9063 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009064
Chris Lattner2156b792010-09-22 01:11:26 +00009065 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9066 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9067 DAG.getVTList(MVT::Other),
9068 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009069
9070 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009071 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009072 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009073
9074 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009075 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009076 DAG.getNode(ISD::SRL, DL, MVT::i16,
9077 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009078 CWD, DAG.getConstant(0x800, MVT::i16)),
9079 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009080 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009081 DAG.getNode(ISD::SRL, DL, MVT::i16,
9082 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009083 CWD, DAG.getConstant(0x400, MVT::i16)),
9084 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009085
Dan Gohman475871a2008-07-27 21:46:04 +00009086 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009087 DAG.getNode(ISD::AND, DL, MVT::i16,
9088 DAG.getNode(ISD::ADD, DL, MVT::i16,
9089 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009090 DAG.getConstant(1, MVT::i16)),
9091 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009092
9093
Duncan Sands83ec4b62008-06-06 12:08:01 +00009094 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009095 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009096}
9097
Dan Gohmand858e902010-04-17 15:26:15 +00009098SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009099 EVT VT = Op.getValueType();
9100 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009101 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009102 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009103
9104 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009105 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009106 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009107 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009108 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009109 }
Evan Cheng18efe262007-12-14 02:13:44 +00009110
Evan Cheng152804e2007-12-14 08:30:15 +00009111 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009112 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009113 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009114
9115 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009116 SDValue Ops[] = {
9117 Op,
9118 DAG.getConstant(NumBits+NumBits-1, OpVT),
9119 DAG.getConstant(X86::COND_E, MVT::i8),
9120 Op.getValue(1)
9121 };
9122 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009123
9124 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009125 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009126
Owen Anderson825b72b2009-08-11 20:47:22 +00009127 if (VT == MVT::i8)
9128 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009129 return Op;
9130}
9131
Dan Gohmand858e902010-04-17 15:26:15 +00009132SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009133 EVT VT = Op.getValueType();
9134 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009135 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009136 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009137
9138 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009139 if (VT == MVT::i8) {
9140 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009141 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009142 }
Evan Cheng152804e2007-12-14 08:30:15 +00009143
9144 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009145 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009146 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009147
9148 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009149 SDValue Ops[] = {
9150 Op,
9151 DAG.getConstant(NumBits, OpVT),
9152 DAG.getConstant(X86::COND_E, MVT::i8),
9153 Op.getValue(1)
9154 };
9155 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009156
Owen Anderson825b72b2009-08-11 20:47:22 +00009157 if (VT == MVT::i8)
9158 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009159 return Op;
9160}
9161
Dan Gohmand858e902010-04-17 15:26:15 +00009162SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009163 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00009164 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009165 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009166
Mon P Wangaf9b9522008-12-18 21:42:19 +00009167 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9168 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9169 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9170 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9171 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9172 //
9173 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9174 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9175 // return AloBlo + AloBhi + AhiBlo;
9176
9177 SDValue A = Op.getOperand(0);
9178 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009179
Dale Johannesene4d209d2009-02-03 20:21:25 +00009180 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009181 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9182 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009183 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009184 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9185 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009186 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009187 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009188 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009189 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009190 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009191 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009192 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009193 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009194 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009195 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009196 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9197 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009198 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009199 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9200 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009201 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9202 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009203 return Res;
9204}
9205
Nadav Rotem43012222011-05-11 08:12:09 +00009206SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9207
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009208 EVT VT = Op.getValueType();
9209 DebugLoc dl = Op.getDebugLoc();
9210 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009211 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009212 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009213
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009214 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9215 return SDValue();
9216
9217 // Decompose 256-bit shifts into smaller 128-bit shifts.
9218 if (VT.getSizeInBits() == 256) {
9219 int NumElems = VT.getVectorNumElements();
9220 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9221 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9222
9223 // Extract the two vectors
9224 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9225 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9226 DAG, dl);
9227
9228 // Recreate the shift amount vectors
9229 SmallVector<SDValue, 4> Amt1Csts;
9230 SmallVector<SDValue, 4> Amt2Csts;
9231 for (int i = 0; i < NumElems/2; ++i)
9232 Amt1Csts.push_back(Amt->getOperand(i));
9233 for (int i = NumElems/2; i < NumElems; ++i)
9234 Amt2Csts.push_back(Amt->getOperand(i));
9235
9236 SDValue Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9237 &Amt1Csts[0], NumElems/2);
9238 SDValue Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9239 &Amt2Csts[0], NumElems/2);
9240
9241 // Issue new vector shifts for the smaller types
9242 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9243 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9244
9245 // Concatenate the result back
9246 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9247 }
Nate Begeman51409212010-07-28 00:21:48 +00009248
Nadav Rotem43012222011-05-11 08:12:09 +00009249 // Optimize shl/srl/sra with constant shift amount.
9250 if (isSplatVector(Amt.getNode())) {
9251 SDValue SclrAmt = Amt->getOperand(0);
9252 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9253 uint64_t ShiftAmt = C->getZExtValue();
9254
9255 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9256 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9257 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9258 R, DAG.getConstant(ShiftAmt, MVT::i32));
9259
9260 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9261 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9262 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9263 R, DAG.getConstant(ShiftAmt, MVT::i32));
9264
9265 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9266 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9267 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9268 R, DAG.getConstant(ShiftAmt, MVT::i32));
9269
9270 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9271 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9272 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9273 R, DAG.getConstant(ShiftAmt, MVT::i32));
9274
9275 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9276 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9277 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9278 R, DAG.getConstant(ShiftAmt, MVT::i32));
9279
9280 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9281 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9282 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9283 R, DAG.getConstant(ShiftAmt, MVT::i32));
9284
9285 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9286 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9287 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9288 R, DAG.getConstant(ShiftAmt, MVT::i32));
9289
9290 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9291 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9292 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9293 R, DAG.getConstant(ShiftAmt, MVT::i32));
9294 }
9295 }
9296
9297 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009298 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009299 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9300 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9301 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9302
9303 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009304
Nate Begeman51409212010-07-28 00:21:48 +00009305 std::vector<Constant*> CV(4, CI);
9306 Constant *C = ConstantVector::get(CV);
9307 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9308 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009309 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009310 false, false, 16);
9311
9312 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009313 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009314 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9315 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9316 }
Nadav Rotem43012222011-05-11 08:12:09 +00009317 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009318 // a = a << 5;
9319 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9320 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9321 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9322
9323 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9324 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9325
9326 std::vector<Constant*> CVM1(16, CM1);
9327 std::vector<Constant*> CVM2(16, CM2);
9328 Constant *C = ConstantVector::get(CVM1);
9329 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9330 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009331 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009332 false, false, 16);
9333
9334 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9335 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9336 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9337 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9338 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009339 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009340 // a += a
9341 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009342
Nate Begeman51409212010-07-28 00:21:48 +00009343 C = ConstantVector::get(CVM2);
9344 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9345 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009346 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009347 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009348
Nate Begeman51409212010-07-28 00:21:48 +00009349 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9350 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9351 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9352 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9353 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009354 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009355 // a += a
9356 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009357
Nate Begeman51409212010-07-28 00:21:48 +00009358 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009359 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009360 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9361 return R;
9362 }
9363 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009364}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009365
Dan Gohmand858e902010-04-17 15:26:15 +00009366SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009367 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9368 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009369 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9370 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009371 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009372 SDValue LHS = N->getOperand(0);
9373 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009374 unsigned BaseOp = 0;
9375 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009376 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009377 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009378 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009379 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009380 // A subtract of one will be selected as a INC. Note that INC doesn't
9381 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009382 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9383 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009384 BaseOp = X86ISD::INC;
9385 Cond = X86::COND_O;
9386 break;
9387 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009388 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009389 Cond = X86::COND_O;
9390 break;
9391 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009392 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009393 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009394 break;
9395 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009396 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9397 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009398 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9399 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009400 BaseOp = X86ISD::DEC;
9401 Cond = X86::COND_O;
9402 break;
9403 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009404 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009405 Cond = X86::COND_O;
9406 break;
9407 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009408 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009409 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009410 break;
9411 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009412 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009413 Cond = X86::COND_O;
9414 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009415 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9416 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9417 MVT::i32);
9418 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009419
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009420 SDValue SetCC =
9421 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9422 DAG.getConstant(X86::COND_O, MVT::i32),
9423 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009424
Dan Gohman6e5fda22011-07-22 18:45:15 +00009425 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009426 }
Bill Wendling74c37652008-12-09 22:08:41 +00009427 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009428
Bill Wendling61edeb52008-12-02 01:06:39 +00009429 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009430 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009431 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009432
Bill Wendling61edeb52008-12-02 01:06:39 +00009433 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009434 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9435 DAG.getConstant(Cond, MVT::i32),
9436 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009437
Dan Gohman6e5fda22011-07-22 18:45:15 +00009438 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009439}
9440
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009441SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9442 DebugLoc dl = Op.getDebugLoc();
9443 SDNode* Node = Op.getNode();
9444 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9445 EVT VT = Node->getValueType(0);
9446
9447 if (Subtarget->hasSSE2() && VT.isVector()) {
9448 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9449 ExtraVT.getScalarType().getSizeInBits();
9450 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9451
9452 unsigned SHLIntrinsicsID = 0;
9453 unsigned SRAIntrinsicsID = 0;
9454 switch (VT.getSimpleVT().SimpleTy) {
9455 default:
9456 return SDValue();
9457 case MVT::v2i64: {
9458 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9459 SRAIntrinsicsID = 0;
9460 break;
9461 }
9462 case MVT::v4i32: {
9463 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9464 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9465 break;
9466 }
9467 case MVT::v8i16: {
9468 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9469 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9470 break;
9471 }
9472 }
9473
9474 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9475 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9476 Node->getOperand(0), ShAmt);
9477
9478 // In case of 1 bit sext, no need to shr
9479 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9480
9481 if (SRAIntrinsicsID) {
9482 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9483 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9484 Tmp1, ShAmt);
9485 }
9486 return Tmp1;
9487 }
9488
9489 return SDValue();
9490}
9491
9492
Eric Christopher9a9d2752010-07-22 02:48:34 +00009493SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9494 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009495
Eric Christopher77ed1352011-07-08 00:04:56 +00009496 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9497 // There isn't any reason to disable it if the target processor supports it.
9498 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009499 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009500 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009501 SDValue Ops[] = {
9502 DAG.getRegister(X86::ESP, MVT::i32), // Base
9503 DAG.getTargetConstant(1, MVT::i8), // Scale
9504 DAG.getRegister(0, MVT::i32), // Index
9505 DAG.getTargetConstant(0, MVT::i32), // Disp
9506 DAG.getRegister(0, MVT::i32), // Segment.
9507 Zero,
9508 Chain
9509 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009510 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009511 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9512 array_lengthof(Ops));
9513 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009514 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009515
Eric Christopher9a9d2752010-07-22 02:48:34 +00009516 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009517 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009518 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009519
Chris Lattner132929a2010-08-14 17:26:09 +00009520 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9521 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9522 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9523 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009524
Chris Lattner132929a2010-08-14 17:26:09 +00009525 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9526 if (!Op1 && !Op2 && !Op3 && Op4)
9527 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009528
Chris Lattner132929a2010-08-14 17:26:09 +00009529 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9530 if (Op1 && !Op2 && !Op3 && !Op4)
9531 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009532
9533 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009534 // (MFENCE)>;
9535 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009536}
9537
Eli Friedman14648462011-07-27 22:21:52 +00009538SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9539 SelectionDAG &DAG) const {
9540 DebugLoc dl = Op.getDebugLoc();
9541 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9542 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9543 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9544 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9545
9546 // The only fence that needs an instruction is a sequentially-consistent
9547 // cross-thread fence.
9548 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9549 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9550 // no-sse2). There isn't any reason to disable it if the target processor
9551 // supports it.
9552 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9553 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9554
9555 SDValue Chain = Op.getOperand(0);
9556 SDValue Zero = DAG.getConstant(0, MVT::i32);
9557 SDValue Ops[] = {
9558 DAG.getRegister(X86::ESP, MVT::i32), // Base
9559 DAG.getTargetConstant(1, MVT::i8), // Scale
9560 DAG.getRegister(0, MVT::i32), // Index
9561 DAG.getTargetConstant(0, MVT::i32), // Disp
9562 DAG.getRegister(0, MVT::i32), // Segment.
9563 Zero,
9564 Chain
9565 };
9566 SDNode *Res =
9567 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9568 array_lengthof(Ops));
9569 return SDValue(Res, 0);
9570 }
9571
9572 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9573 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9574}
9575
9576
Dan Gohmand858e902010-04-17 15:26:15 +00009577SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009578 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009579 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009580 unsigned Reg = 0;
9581 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009582 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009583 default:
9584 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009585 case MVT::i8: Reg = X86::AL; size = 1; break;
9586 case MVT::i16: Reg = X86::AX; size = 2; break;
9587 case MVT::i32: Reg = X86::EAX; size = 4; break;
9588 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009589 assert(Subtarget->is64Bit() && "Node not type legal!");
9590 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009591 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009592 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009593 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009594 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009595 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009596 Op.getOperand(1),
9597 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009598 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009599 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009600 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009601 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9602 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9603 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009604 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009605 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009606 return cpOut;
9607}
9608
Duncan Sands1607f052008-12-01 11:39:25 +00009609SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009610 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009611 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009612 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009613 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009614 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009615 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009616 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9617 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009618 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009619 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9620 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009621 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009622 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009623 rdx.getValue(1)
9624 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009625 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009626}
9627
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009628SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009629 SelectionDAG &DAG) const {
9630 EVT SrcVT = Op.getOperand(0).getValueType();
9631 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009632 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9633 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009634 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009635 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009636 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009637 // i64 <=> MMX conversions are Legal.
9638 if (SrcVT==MVT::i64 && DstVT.isVector())
9639 return Op;
9640 if (DstVT==MVT::i64 && SrcVT.isVector())
9641 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009642 // MMX <=> MMX conversions are Legal.
9643 if (SrcVT.isVector() && DstVT.isVector())
9644 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009645 // All other conversions need to be expanded.
9646 return SDValue();
9647}
Chris Lattner5b856542010-12-20 00:59:46 +00009648
Dan Gohmand858e902010-04-17 15:26:15 +00009649SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009650 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009651 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009652 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009653 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009654 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009655 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009656 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009657 Node->getOperand(0),
9658 Node->getOperand(1), negOp,
9659 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +00009660 cast<AtomicSDNode>(Node)->getAlignment(),
9661 cast<AtomicSDNode>(Node)->getOrdering(),
9662 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +00009663}
9664
Chris Lattner5b856542010-12-20 00:59:46 +00009665static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9666 EVT VT = Op.getNode()->getValueType(0);
9667
9668 // Let legalize expand this if it isn't a legal type yet.
9669 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9670 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009671
Chris Lattner5b856542010-12-20 00:59:46 +00009672 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009673
Chris Lattner5b856542010-12-20 00:59:46 +00009674 unsigned Opc;
9675 bool ExtraOp = false;
9676 switch (Op.getOpcode()) {
9677 default: assert(0 && "Invalid code");
9678 case ISD::ADDC: Opc = X86ISD::ADD; break;
9679 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9680 case ISD::SUBC: Opc = X86ISD::SUB; break;
9681 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9682 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009683
Chris Lattner5b856542010-12-20 00:59:46 +00009684 if (!ExtraOp)
9685 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9686 Op.getOperand(1));
9687 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9688 Op.getOperand(1), Op.getOperand(2));
9689}
9690
Evan Cheng0db9fe62006-04-25 20:13:52 +00009691/// LowerOperation - Provide custom lowering hooks for some operations.
9692///
Dan Gohmand858e902010-04-17 15:26:15 +00009693SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009694 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009695 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009696 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009697 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +00009698 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009699 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9700 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009701 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009702 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009703 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9704 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9705 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009706 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009707 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009708 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9709 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9710 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009711 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009712 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009713 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009714 case ISD::SHL_PARTS:
9715 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009716 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009717 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009718 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009719 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009720 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009721 case ISD::FABS: return LowerFABS(Op, DAG);
9722 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009723 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009724 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009725 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009726 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009727 case ISD::SELECT: return LowerSELECT(Op, DAG);
9728 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009729 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009730 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009731 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009732 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009733 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009734 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9735 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009736 case ISD::FRAME_TO_ARGS_OFFSET:
9737 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009738 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009739 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009740 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009741 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009742 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9743 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009744 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009745 case ISD::SRA:
9746 case ISD::SRL:
9747 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009748 case ISD::SADDO:
9749 case ISD::UADDO:
9750 case ISD::SSUBO:
9751 case ISD::USUBO:
9752 case ISD::SMULO:
9753 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009754 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009755 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009756 case ISD::ADDC:
9757 case ISD::ADDE:
9758 case ISD::SUBC:
9759 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009760 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009761}
9762
Duncan Sands1607f052008-12-01 11:39:25 +00009763void X86TargetLowering::
9764ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009765 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009766 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009767 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009768 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009769
9770 SDValue Chain = Node->getOperand(0);
9771 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009772 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009773 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009774 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009775 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009776 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009777 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009778 SDValue Result =
9779 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9780 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009781 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009782 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009783 Results.push_back(Result.getValue(2));
9784}
9785
Duncan Sands126d9072008-07-04 11:47:58 +00009786/// ReplaceNodeResults - Replace a node with an illegal result type
9787/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009788void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9789 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009790 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009791 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009792 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009793 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009794 assert(false && "Do not know how to custom type legalize this operation!");
9795 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009796 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +00009797 case ISD::ADDC:
9798 case ISD::ADDE:
9799 case ISD::SUBC:
9800 case ISD::SUBE:
9801 // We don't want to expand or promote these.
9802 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009803 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009804 std::pair<SDValue,SDValue> Vals =
9805 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009806 SDValue FIST = Vals.first, StackSlot = Vals.second;
9807 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009808 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009809 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009810 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9811 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009812 }
9813 return;
9814 }
9815 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009816 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009817 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009818 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009819 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009820 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009821 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009822 eax.getValue(2));
9823 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9824 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009825 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009826 Results.push_back(edx.getValue(1));
9827 return;
9828 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009829 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009830 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009831 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009832 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009833 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9834 DAG.getConstant(0, MVT::i32));
9835 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9836 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009837 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9838 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009839 cpInL.getValue(1));
9840 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009841 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9842 DAG.getConstant(0, MVT::i32));
9843 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9844 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009845 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009846 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009847 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009848 swapInL.getValue(1));
9849 SDValue Ops[] = { swapInH.getValue(0),
9850 N->getOperand(1),
9851 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009852 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009853 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9854 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9855 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009856 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009857 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009858 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009859 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009860 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009861 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009862 Results.push_back(cpOutH.getValue(1));
9863 return;
9864 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009865 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009866 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9867 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009868 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009869 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9870 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009871 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009872 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9873 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009874 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009875 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9876 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009877 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009878 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9879 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009880 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009881 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9882 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009883 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009884 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9885 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009886 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009887}
9888
Evan Cheng72261582005-12-20 06:22:03 +00009889const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9890 switch (Opcode) {
9891 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009892 case X86ISD::BSF: return "X86ISD::BSF";
9893 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009894 case X86ISD::SHLD: return "X86ISD::SHLD";
9895 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009896 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009897 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009898 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009899 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009900 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009901 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009902 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9903 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9904 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009905 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009906 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009907 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009908 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009909 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009910 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009911 case X86ISD::COMI: return "X86ISD::COMI";
9912 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009913 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009914 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +00009915 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
9916 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +00009917 case X86ISD::CMOV: return "X86ISD::CMOV";
9918 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009919 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009920 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9921 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009922 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009923 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009924 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009925 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009926 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009927 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9928 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009929 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009930 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +00009931 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +00009932 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9933 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9934 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009935 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009936 case X86ISD::FMAX: return "X86ISD::FMAX";
9937 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009938 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9939 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009940 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009941 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009942 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009943 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009944 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009945 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9946 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009947 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9948 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9949 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9950 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9951 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9952 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009953 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9954 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009955 case X86ISD::VSHL: return "X86ISD::VSHL";
9956 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009957 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9958 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9959 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9960 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9961 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9962 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9963 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9964 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9965 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9966 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009967 case X86ISD::ADD: return "X86ISD::ADD";
9968 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009969 case X86ISD::ADC: return "X86ISD::ADC";
9970 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009971 case X86ISD::SMUL: return "X86ISD::SMUL";
9972 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009973 case X86ISD::INC: return "X86ISD::INC";
9974 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009975 case X86ISD::OR: return "X86ISD::OR";
9976 case X86ISD::XOR: return "X86ISD::XOR";
9977 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009978 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009979 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009980 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009981 case X86ISD::PALIGN: return "X86ISD::PALIGN";
9982 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
9983 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
9984 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
9985 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
9986 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
9987 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
9988 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
9989 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009990 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00009991 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009992 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00009993 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
9994 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009995 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
9996 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
9997 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
9998 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
9999 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10000 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10001 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10002 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10003 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010004 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010005 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10006 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10007 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10008 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10009 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10010 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10011 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10012 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10013 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10014 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010015 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10016 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10017 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10018 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010019 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010020 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010021 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010022 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +000010023 }
10024}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010025
Chris Lattnerc9addb72007-03-30 23:15:24 +000010026// isLegalAddressingMode - Return true if the addressing mode represented
10027// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010028bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010029 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010030 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010031 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010032 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010033
Chris Lattnerc9addb72007-03-30 23:15:24 +000010034 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010035 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010036 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010037
Chris Lattnerc9addb72007-03-30 23:15:24 +000010038 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010039 unsigned GVFlags =
10040 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010041
Chris Lattnerdfed4132009-07-10 07:38:24 +000010042 // If a reference to this global requires an extra load, we can't fold it.
10043 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010044 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010045
Chris Lattnerdfed4132009-07-10 07:38:24 +000010046 // If BaseGV requires a register for the PIC base, we cannot also have a
10047 // BaseReg specified.
10048 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010049 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010050
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010051 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010052 if ((M != CodeModel::Small || R != Reloc::Static) &&
10053 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010054 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010055 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010056
Chris Lattnerc9addb72007-03-30 23:15:24 +000010057 switch (AM.Scale) {
10058 case 0:
10059 case 1:
10060 case 2:
10061 case 4:
10062 case 8:
10063 // These scales always work.
10064 break;
10065 case 3:
10066 case 5:
10067 case 9:
10068 // These scales are formed with basereg+scalereg. Only accept if there is
10069 // no basereg yet.
10070 if (AM.HasBaseReg)
10071 return false;
10072 break;
10073 default: // Other stuff never works.
10074 return false;
10075 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010076
Chris Lattnerc9addb72007-03-30 23:15:24 +000010077 return true;
10078}
10079
10080
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010081bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010082 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010083 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010084 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10085 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010086 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010087 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010088 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010089}
10090
Owen Andersone50ed302009-08-10 22:56:29 +000010091bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010092 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010093 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010094 unsigned NumBits1 = VT1.getSizeInBits();
10095 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010096 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010097 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010098 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010099}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010100
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010101bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010102 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010103 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010104}
10105
Owen Andersone50ed302009-08-10 22:56:29 +000010106bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010107 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010108 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010109}
10110
Owen Andersone50ed302009-08-10 22:56:29 +000010111bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010112 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010113 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010114}
10115
Evan Cheng60c07e12006-07-05 22:17:51 +000010116/// isShuffleMaskLegal - Targets can use this to indicate that they only
10117/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10118/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10119/// are assumed to be legal.
10120bool
Eric Christopherfd179292009-08-27 18:07:15 +000010121X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010122 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010123 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010124 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010125 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010126
Nate Begemana09008b2009-10-19 02:17:23 +000010127 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010128 return (VT.getVectorNumElements() == 2 ||
10129 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10130 isMOVLMask(M, VT) ||
10131 isSHUFPMask(M, VT) ||
10132 isPSHUFDMask(M, VT) ||
10133 isPSHUFHWMask(M, VT) ||
10134 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010135 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010136 isUNPCKLMask(M, VT) ||
10137 isUNPCKHMask(M, VT) ||
10138 isUNPCKL_v_undef_Mask(M, VT) ||
10139 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010140}
10141
Dan Gohman7d8143f2008-04-09 20:09:42 +000010142bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010143X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010144 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010145 unsigned NumElts = VT.getVectorNumElements();
10146 // FIXME: This collection of masks seems suspect.
10147 if (NumElts == 2)
10148 return true;
10149 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10150 return (isMOVLMask(Mask, VT) ||
10151 isCommutedMOVLMask(Mask, VT, true) ||
10152 isSHUFPMask(Mask, VT) ||
10153 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010154 }
10155 return false;
10156}
10157
10158//===----------------------------------------------------------------------===//
10159// X86 Scheduler Hooks
10160//===----------------------------------------------------------------------===//
10161
Mon P Wang63307c32008-05-05 19:05:59 +000010162// private utility function
10163MachineBasicBlock *
10164X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10165 MachineBasicBlock *MBB,
10166 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010167 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010168 unsigned LoadOpc,
10169 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010170 unsigned notOpc,
10171 unsigned EAXreg,
10172 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010173 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010174 // For the atomic bitwise operator, we generate
10175 // thisMBB:
10176 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010177 // ld t1 = [bitinstr.addr]
10178 // op t2 = t1, [bitinstr.val]
10179 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010180 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10181 // bz newMBB
10182 // fallthrough -->nextMBB
10183 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10184 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010185 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010186 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010187
Mon P Wang63307c32008-05-05 19:05:59 +000010188 /// First build the CFG
10189 MachineFunction *F = MBB->getParent();
10190 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010191 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10192 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10193 F->insert(MBBIter, newMBB);
10194 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010195
Dan Gohman14152b42010-07-06 20:24:04 +000010196 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10197 nextMBB->splice(nextMBB->begin(), thisMBB,
10198 llvm::next(MachineBasicBlock::iterator(bInstr)),
10199 thisMBB->end());
10200 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010201
Mon P Wang63307c32008-05-05 19:05:59 +000010202 // Update thisMBB to fall through to newMBB
10203 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010204
Mon P Wang63307c32008-05-05 19:05:59 +000010205 // newMBB jumps to itself and fall through to nextMBB
10206 newMBB->addSuccessor(nextMBB);
10207 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010208
Mon P Wang63307c32008-05-05 19:05:59 +000010209 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010210 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010211 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010212 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010213 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010214 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010215 int numArgs = bInstr->getNumOperands() - 1;
10216 for (int i=0; i < numArgs; ++i)
10217 argOpers[i] = &bInstr->getOperand(i+1);
10218
10219 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010220 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010221 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010222
Dale Johannesen140be2d2008-08-19 18:47:28 +000010223 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010224 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010225 for (int i=0; i <= lastAddrIndx; ++i)
10226 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010227
Dale Johannesen140be2d2008-08-19 18:47:28 +000010228 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010229 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010230 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010231 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010232 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010233 tt = t1;
10234
Dale Johannesen140be2d2008-08-19 18:47:28 +000010235 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010236 assert((argOpers[valArgIndx]->isReg() ||
10237 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010238 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010239 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010240 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010241 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010242 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010243 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010244 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010245
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010246 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010247 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010248
Dale Johannesene4d209d2009-02-03 20:21:25 +000010249 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010250 for (int i=0; i <= lastAddrIndx; ++i)
10251 (*MIB).addOperand(*argOpers[i]);
10252 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010253 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010254 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10255 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010256
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010257 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010258 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010259
Mon P Wang63307c32008-05-05 19:05:59 +000010260 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010261 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010262
Dan Gohman14152b42010-07-06 20:24:04 +000010263 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010264 return nextMBB;
10265}
10266
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010267// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010268MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010269X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10270 MachineBasicBlock *MBB,
10271 unsigned regOpcL,
10272 unsigned regOpcH,
10273 unsigned immOpcL,
10274 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010275 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010276 // For the atomic bitwise operator, we generate
10277 // thisMBB (instructions are in pairs, except cmpxchg8b)
10278 // ld t1,t2 = [bitinstr.addr]
10279 // newMBB:
10280 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10281 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010282 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010283 // mov ECX, EBX <- t5, t6
10284 // mov EAX, EDX <- t1, t2
10285 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10286 // mov t3, t4 <- EAX, EDX
10287 // bz newMBB
10288 // result in out1, out2
10289 // fallthrough -->nextMBB
10290
10291 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10292 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010293 const unsigned NotOpc = X86::NOT32r;
10294 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10295 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10296 MachineFunction::iterator MBBIter = MBB;
10297 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010298
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010299 /// First build the CFG
10300 MachineFunction *F = MBB->getParent();
10301 MachineBasicBlock *thisMBB = MBB;
10302 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10303 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10304 F->insert(MBBIter, newMBB);
10305 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010306
Dan Gohman14152b42010-07-06 20:24:04 +000010307 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10308 nextMBB->splice(nextMBB->begin(), thisMBB,
10309 llvm::next(MachineBasicBlock::iterator(bInstr)),
10310 thisMBB->end());
10311 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010312
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010313 // Update thisMBB to fall through to newMBB
10314 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010315
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010316 // newMBB jumps to itself and fall through to nextMBB
10317 newMBB->addSuccessor(nextMBB);
10318 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010319
Dale Johannesene4d209d2009-02-03 20:21:25 +000010320 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010321 // Insert instructions into newMBB based on incoming instruction
10322 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010323 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010324 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010325 MachineOperand& dest1Oper = bInstr->getOperand(0);
10326 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010327 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10328 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010329 argOpers[i] = &bInstr->getOperand(i+2);
10330
Dan Gohman71ea4e52010-05-14 21:01:44 +000010331 // We use some of the operands multiple times, so conservatively just
10332 // clear any kill flags that might be present.
10333 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10334 argOpers[i]->setIsKill(false);
10335 }
10336
Evan Chengad5b52f2010-01-08 19:14:57 +000010337 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010338 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010339
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010340 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010341 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010342 for (int i=0; i <= lastAddrIndx; ++i)
10343 (*MIB).addOperand(*argOpers[i]);
10344 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010345 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010346 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010347 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010348 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010349 MachineOperand newOp3 = *(argOpers[3]);
10350 if (newOp3.isImm())
10351 newOp3.setImm(newOp3.getImm()+4);
10352 else
10353 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010354 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010355 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010356
10357 // t3/4 are defined later, at the bottom of the loop
10358 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10359 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010360 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010361 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010362 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010363 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10364
Evan Cheng306b4ca2010-01-08 23:41:50 +000010365 // The subsequent operations should be using the destination registers of
10366 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010367 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010368 t1 = F->getRegInfo().createVirtualRegister(RC);
10369 t2 = F->getRegInfo().createVirtualRegister(RC);
10370 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10371 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010372 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010373 t1 = dest1Oper.getReg();
10374 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010375 }
10376
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010377 int valArgIndx = lastAddrIndx + 1;
10378 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010379 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010380 "invalid operand");
10381 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10382 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010383 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010384 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010385 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010386 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010387 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010388 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010389 (*MIB).addOperand(*argOpers[valArgIndx]);
10390 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010391 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010392 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010393 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010394 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010395 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010396 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010397 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010398 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010399 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010400 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010401
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010402 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010403 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010404 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010405 MIB.addReg(t2);
10406
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010407 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010408 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010409 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010410 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010411
Dale Johannesene4d209d2009-02-03 20:21:25 +000010412 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010413 for (int i=0; i <= lastAddrIndx; ++i)
10414 (*MIB).addOperand(*argOpers[i]);
10415
10416 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010417 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10418 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010419
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010420 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010421 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010422 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010423 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010424
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010425 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010426 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010427
Dan Gohman14152b42010-07-06 20:24:04 +000010428 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010429 return nextMBB;
10430}
10431
10432// private utility function
10433MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010434X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10435 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010436 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010437 // For the atomic min/max operator, we generate
10438 // thisMBB:
10439 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010440 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010441 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010442 // cmp t1, t2
10443 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010444 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010445 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10446 // bz newMBB
10447 // fallthrough -->nextMBB
10448 //
10449 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10450 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010451 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010452 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010453
Mon P Wang63307c32008-05-05 19:05:59 +000010454 /// First build the CFG
10455 MachineFunction *F = MBB->getParent();
10456 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010457 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10458 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10459 F->insert(MBBIter, newMBB);
10460 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010461
Dan Gohman14152b42010-07-06 20:24:04 +000010462 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10463 nextMBB->splice(nextMBB->begin(), thisMBB,
10464 llvm::next(MachineBasicBlock::iterator(mInstr)),
10465 thisMBB->end());
10466 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010467
Mon P Wang63307c32008-05-05 19:05:59 +000010468 // Update thisMBB to fall through to newMBB
10469 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010470
Mon P Wang63307c32008-05-05 19:05:59 +000010471 // newMBB jumps to newMBB and fall through to nextMBB
10472 newMBB->addSuccessor(nextMBB);
10473 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010474
Dale Johannesene4d209d2009-02-03 20:21:25 +000010475 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010476 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010477 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010478 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010479 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010480 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010481 int numArgs = mInstr->getNumOperands() - 1;
10482 for (int i=0; i < numArgs; ++i)
10483 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010484
Mon P Wang63307c32008-05-05 19:05:59 +000010485 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010486 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010487 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010488
Mon P Wangab3e7472008-05-05 22:56:23 +000010489 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010490 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010491 for (int i=0; i <= lastAddrIndx; ++i)
10492 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010493
Mon P Wang63307c32008-05-05 19:05:59 +000010494 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010495 assert((argOpers[valArgIndx]->isReg() ||
10496 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010497 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010498
10499 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010500 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010501 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010502 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010503 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010504 (*MIB).addOperand(*argOpers[valArgIndx]);
10505
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010506 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010507 MIB.addReg(t1);
10508
Dale Johannesene4d209d2009-02-03 20:21:25 +000010509 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010510 MIB.addReg(t1);
10511 MIB.addReg(t2);
10512
10513 // Generate movc
10514 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010515 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010516 MIB.addReg(t2);
10517 MIB.addReg(t1);
10518
10519 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010520 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010521 for (int i=0; i <= lastAddrIndx; ++i)
10522 (*MIB).addOperand(*argOpers[i]);
10523 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010524 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010525 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10526 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010527
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010528 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010529 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010530
Mon P Wang63307c32008-05-05 19:05:59 +000010531 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010532 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010533
Dan Gohman14152b42010-07-06 20:24:04 +000010534 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010535 return nextMBB;
10536}
10537
Eric Christopherf83a5de2009-08-27 18:08:16 +000010538// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010539// or XMM0_V32I8 in AVX all of this code can be replaced with that
10540// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010541MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010542X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010543 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010544 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10545 "Target must have SSE4.2 or AVX features enabled");
10546
Eric Christopherb120ab42009-08-18 22:50:32 +000010547 DebugLoc dl = MI->getDebugLoc();
10548 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010549 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010550 if (!Subtarget->hasAVX()) {
10551 if (memArg)
10552 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10553 else
10554 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10555 } else {
10556 if (memArg)
10557 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10558 else
10559 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10560 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010561
Eric Christopher41c902f2010-11-30 08:20:21 +000010562 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010563 for (unsigned i = 0; i < numArgs; ++i) {
10564 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010565 if (!(Op.isReg() && Op.isImplicit()))
10566 MIB.addOperand(Op);
10567 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010568 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010569 .addReg(X86::XMM0);
10570
Dan Gohman14152b42010-07-06 20:24:04 +000010571 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010572 return BB;
10573}
10574
10575MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010576X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010577 DebugLoc dl = MI->getDebugLoc();
10578 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010579
Eric Christopher228232b2010-11-30 07:20:12 +000010580 // Address into RAX/EAX, other two args into ECX, EDX.
10581 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10582 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10583 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10584 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010585 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010586
Eric Christopher228232b2010-11-30 07:20:12 +000010587 unsigned ValOps = X86::AddrNumOperands;
10588 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10589 .addReg(MI->getOperand(ValOps).getReg());
10590 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10591 .addReg(MI->getOperand(ValOps+1).getReg());
10592
10593 // The instruction doesn't actually take any operands though.
10594 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010595
Eric Christopher228232b2010-11-30 07:20:12 +000010596 MI->eraseFromParent(); // The pseudo is gone now.
10597 return BB;
10598}
10599
10600MachineBasicBlock *
10601X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010602 DebugLoc dl = MI->getDebugLoc();
10603 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010604
Eric Christopher228232b2010-11-30 07:20:12 +000010605 // First arg in ECX, the second in EAX.
10606 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10607 .addReg(MI->getOperand(0).getReg());
10608 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10609 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010610
Eric Christopher228232b2010-11-30 07:20:12 +000010611 // The instruction doesn't actually take any operands though.
10612 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010613
Eric Christopher228232b2010-11-30 07:20:12 +000010614 MI->eraseFromParent(); // The pseudo is gone now.
10615 return BB;
10616}
10617
10618MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010619X86TargetLowering::EmitVAARG64WithCustomInserter(
10620 MachineInstr *MI,
10621 MachineBasicBlock *MBB) const {
10622 // Emit va_arg instruction on X86-64.
10623
10624 // Operands to this pseudo-instruction:
10625 // 0 ) Output : destination address (reg)
10626 // 1-5) Input : va_list address (addr, i64mem)
10627 // 6 ) ArgSize : Size (in bytes) of vararg type
10628 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10629 // 8 ) Align : Alignment of type
10630 // 9 ) EFLAGS (implicit-def)
10631
10632 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10633 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10634
10635 unsigned DestReg = MI->getOperand(0).getReg();
10636 MachineOperand &Base = MI->getOperand(1);
10637 MachineOperand &Scale = MI->getOperand(2);
10638 MachineOperand &Index = MI->getOperand(3);
10639 MachineOperand &Disp = MI->getOperand(4);
10640 MachineOperand &Segment = MI->getOperand(5);
10641 unsigned ArgSize = MI->getOperand(6).getImm();
10642 unsigned ArgMode = MI->getOperand(7).getImm();
10643 unsigned Align = MI->getOperand(8).getImm();
10644
10645 // Memory Reference
10646 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10647 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10648 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10649
10650 // Machine Information
10651 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10652 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10653 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10654 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10655 DebugLoc DL = MI->getDebugLoc();
10656
10657 // struct va_list {
10658 // i32 gp_offset
10659 // i32 fp_offset
10660 // i64 overflow_area (address)
10661 // i64 reg_save_area (address)
10662 // }
10663 // sizeof(va_list) = 24
10664 // alignment(va_list) = 8
10665
10666 unsigned TotalNumIntRegs = 6;
10667 unsigned TotalNumXMMRegs = 8;
10668 bool UseGPOffset = (ArgMode == 1);
10669 bool UseFPOffset = (ArgMode == 2);
10670 unsigned MaxOffset = TotalNumIntRegs * 8 +
10671 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10672
10673 /* Align ArgSize to a multiple of 8 */
10674 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10675 bool NeedsAlign = (Align > 8);
10676
10677 MachineBasicBlock *thisMBB = MBB;
10678 MachineBasicBlock *overflowMBB;
10679 MachineBasicBlock *offsetMBB;
10680 MachineBasicBlock *endMBB;
10681
10682 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10683 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10684 unsigned OffsetReg = 0;
10685
10686 if (!UseGPOffset && !UseFPOffset) {
10687 // If we only pull from the overflow region, we don't create a branch.
10688 // We don't need to alter control flow.
10689 OffsetDestReg = 0; // unused
10690 OverflowDestReg = DestReg;
10691
10692 offsetMBB = NULL;
10693 overflowMBB = thisMBB;
10694 endMBB = thisMBB;
10695 } else {
10696 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10697 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10698 // If not, pull from overflow_area. (branch to overflowMBB)
10699 //
10700 // thisMBB
10701 // | .
10702 // | .
10703 // offsetMBB overflowMBB
10704 // | .
10705 // | .
10706 // endMBB
10707
10708 // Registers for the PHI in endMBB
10709 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10710 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10711
10712 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10713 MachineFunction *MF = MBB->getParent();
10714 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10715 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10716 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10717
10718 MachineFunction::iterator MBBIter = MBB;
10719 ++MBBIter;
10720
10721 // Insert the new basic blocks
10722 MF->insert(MBBIter, offsetMBB);
10723 MF->insert(MBBIter, overflowMBB);
10724 MF->insert(MBBIter, endMBB);
10725
10726 // Transfer the remainder of MBB and its successor edges to endMBB.
10727 endMBB->splice(endMBB->begin(), thisMBB,
10728 llvm::next(MachineBasicBlock::iterator(MI)),
10729 thisMBB->end());
10730 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10731
10732 // Make offsetMBB and overflowMBB successors of thisMBB
10733 thisMBB->addSuccessor(offsetMBB);
10734 thisMBB->addSuccessor(overflowMBB);
10735
10736 // endMBB is a successor of both offsetMBB and overflowMBB
10737 offsetMBB->addSuccessor(endMBB);
10738 overflowMBB->addSuccessor(endMBB);
10739
10740 // Load the offset value into a register
10741 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10742 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10743 .addOperand(Base)
10744 .addOperand(Scale)
10745 .addOperand(Index)
10746 .addDisp(Disp, UseFPOffset ? 4 : 0)
10747 .addOperand(Segment)
10748 .setMemRefs(MMOBegin, MMOEnd);
10749
10750 // Check if there is enough room left to pull this argument.
10751 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10752 .addReg(OffsetReg)
10753 .addImm(MaxOffset + 8 - ArgSizeA8);
10754
10755 // Branch to "overflowMBB" if offset >= max
10756 // Fall through to "offsetMBB" otherwise
10757 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10758 .addMBB(overflowMBB);
10759 }
10760
10761 // In offsetMBB, emit code to use the reg_save_area.
10762 if (offsetMBB) {
10763 assert(OffsetReg != 0);
10764
10765 // Read the reg_save_area address.
10766 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10767 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10768 .addOperand(Base)
10769 .addOperand(Scale)
10770 .addOperand(Index)
10771 .addDisp(Disp, 16)
10772 .addOperand(Segment)
10773 .setMemRefs(MMOBegin, MMOEnd);
10774
10775 // Zero-extend the offset
10776 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10777 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10778 .addImm(0)
10779 .addReg(OffsetReg)
10780 .addImm(X86::sub_32bit);
10781
10782 // Add the offset to the reg_save_area to get the final address.
10783 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10784 .addReg(OffsetReg64)
10785 .addReg(RegSaveReg);
10786
10787 // Compute the offset for the next argument
10788 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10789 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10790 .addReg(OffsetReg)
10791 .addImm(UseFPOffset ? 16 : 8);
10792
10793 // Store it back into the va_list.
10794 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10795 .addOperand(Base)
10796 .addOperand(Scale)
10797 .addOperand(Index)
10798 .addDisp(Disp, UseFPOffset ? 4 : 0)
10799 .addOperand(Segment)
10800 .addReg(NextOffsetReg)
10801 .setMemRefs(MMOBegin, MMOEnd);
10802
10803 // Jump to endMBB
10804 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10805 .addMBB(endMBB);
10806 }
10807
10808 //
10809 // Emit code to use overflow area
10810 //
10811
10812 // Load the overflow_area address into a register.
10813 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10814 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10815 .addOperand(Base)
10816 .addOperand(Scale)
10817 .addOperand(Index)
10818 .addDisp(Disp, 8)
10819 .addOperand(Segment)
10820 .setMemRefs(MMOBegin, MMOEnd);
10821
10822 // If we need to align it, do so. Otherwise, just copy the address
10823 // to OverflowDestReg.
10824 if (NeedsAlign) {
10825 // Align the overflow address
10826 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10827 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10828
10829 // aligned_addr = (addr + (align-1)) & ~(align-1)
10830 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10831 .addReg(OverflowAddrReg)
10832 .addImm(Align-1);
10833
10834 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10835 .addReg(TmpReg)
10836 .addImm(~(uint64_t)(Align-1));
10837 } else {
10838 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10839 .addReg(OverflowAddrReg);
10840 }
10841
10842 // Compute the next overflow address after this argument.
10843 // (the overflow address should be kept 8-byte aligned)
10844 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10845 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10846 .addReg(OverflowDestReg)
10847 .addImm(ArgSizeA8);
10848
10849 // Store the new overflow address.
10850 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10851 .addOperand(Base)
10852 .addOperand(Scale)
10853 .addOperand(Index)
10854 .addDisp(Disp, 8)
10855 .addOperand(Segment)
10856 .addReg(NextAddrReg)
10857 .setMemRefs(MMOBegin, MMOEnd);
10858
10859 // If we branched, emit the PHI to the front of endMBB.
10860 if (offsetMBB) {
10861 BuildMI(*endMBB, endMBB->begin(), DL,
10862 TII->get(X86::PHI), DestReg)
10863 .addReg(OffsetDestReg).addMBB(offsetMBB)
10864 .addReg(OverflowDestReg).addMBB(overflowMBB);
10865 }
10866
10867 // Erase the pseudo instruction
10868 MI->eraseFromParent();
10869
10870 return endMBB;
10871}
10872
10873MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010874X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10875 MachineInstr *MI,
10876 MachineBasicBlock *MBB) const {
10877 // Emit code to save XMM registers to the stack. The ABI says that the
10878 // number of registers to save is given in %al, so it's theoretically
10879 // possible to do an indirect jump trick to avoid saving all of them,
10880 // however this code takes a simpler approach and just executes all
10881 // of the stores if %al is non-zero. It's less code, and it's probably
10882 // easier on the hardware branch predictor, and stores aren't all that
10883 // expensive anyway.
10884
10885 // Create the new basic blocks. One block contains all the XMM stores,
10886 // and one block is the final destination regardless of whether any
10887 // stores were performed.
10888 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10889 MachineFunction *F = MBB->getParent();
10890 MachineFunction::iterator MBBIter = MBB;
10891 ++MBBIter;
10892 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10893 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10894 F->insert(MBBIter, XMMSaveMBB);
10895 F->insert(MBBIter, EndMBB);
10896
Dan Gohman14152b42010-07-06 20:24:04 +000010897 // Transfer the remainder of MBB and its successor edges to EndMBB.
10898 EndMBB->splice(EndMBB->begin(), MBB,
10899 llvm::next(MachineBasicBlock::iterator(MI)),
10900 MBB->end());
10901 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10902
Dan Gohmand6708ea2009-08-15 01:38:56 +000010903 // The original block will now fall through to the XMM save block.
10904 MBB->addSuccessor(XMMSaveMBB);
10905 // The XMMSaveMBB will fall through to the end block.
10906 XMMSaveMBB->addSuccessor(EndMBB);
10907
10908 // Now add the instructions.
10909 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10910 DebugLoc DL = MI->getDebugLoc();
10911
10912 unsigned CountReg = MI->getOperand(0).getReg();
10913 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10914 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10915
10916 if (!Subtarget->isTargetWin64()) {
10917 // If %al is 0, branch around the XMM save block.
10918 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010919 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010920 MBB->addSuccessor(EndMBB);
10921 }
10922
10923 // In the XMM save block, save all the XMM argument registers.
10924 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10925 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010926 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010927 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010928 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010929 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010930 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010931 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10932 .addFrameIndex(RegSaveFrameIndex)
10933 .addImm(/*Scale=*/1)
10934 .addReg(/*IndexReg=*/0)
10935 .addImm(/*Disp=*/Offset)
10936 .addReg(/*Segment=*/0)
10937 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010938 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010939 }
10940
Dan Gohman14152b42010-07-06 20:24:04 +000010941 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010942
10943 return EndMBB;
10944}
Mon P Wang63307c32008-05-05 19:05:59 +000010945
Evan Cheng60c07e12006-07-05 22:17:51 +000010946MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010947X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010948 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010949 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10950 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010951
Chris Lattner52600972009-09-02 05:57:00 +000010952 // To "insert" a SELECT_CC instruction, we actually have to insert the
10953 // diamond control-flow pattern. The incoming instruction knows the
10954 // destination vreg to set, the condition code register to branch on, the
10955 // true/false values to select between, and a branch opcode to use.
10956 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10957 MachineFunction::iterator It = BB;
10958 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010959
Chris Lattner52600972009-09-02 05:57:00 +000010960 // thisMBB:
10961 // ...
10962 // TrueVal = ...
10963 // cmpTY ccX, r1, r2
10964 // bCC copy1MBB
10965 // fallthrough --> copy0MBB
10966 MachineBasicBlock *thisMBB = BB;
10967 MachineFunction *F = BB->getParent();
10968 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10969 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010970 F->insert(It, copy0MBB);
10971 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010972
Bill Wendling730c07e2010-06-25 20:48:10 +000010973 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10974 // live into the sink and copy blocks.
10975 const MachineFunction *MF = BB->getParent();
10976 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10977 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010978
Dan Gohman14152b42010-07-06 20:24:04 +000010979 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10980 const MachineOperand &MO = MI->getOperand(I);
10981 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000010982 unsigned Reg = MO.getReg();
10983 if (Reg != X86::EFLAGS) continue;
10984 copy0MBB->addLiveIn(Reg);
10985 sinkMBB->addLiveIn(Reg);
10986 }
10987
Dan Gohman14152b42010-07-06 20:24:04 +000010988 // Transfer the remainder of BB and its successor edges to sinkMBB.
10989 sinkMBB->splice(sinkMBB->begin(), BB,
10990 llvm::next(MachineBasicBlock::iterator(MI)),
10991 BB->end());
10992 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10993
10994 // Add the true and fallthrough blocks as its successors.
10995 BB->addSuccessor(copy0MBB);
10996 BB->addSuccessor(sinkMBB);
10997
10998 // Create the conditional branch instruction.
10999 unsigned Opc =
11000 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11001 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11002
Chris Lattner52600972009-09-02 05:57:00 +000011003 // copy0MBB:
11004 // %FalseValue = ...
11005 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011006 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011007
Chris Lattner52600972009-09-02 05:57:00 +000011008 // sinkMBB:
11009 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11010 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011011 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11012 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011013 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11014 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11015
Dan Gohman14152b42010-07-06 20:24:04 +000011016 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011017 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011018}
11019
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011020MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011021X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011022 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011023 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11024 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011025
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011026 assert(!Subtarget->isTargetEnvMacho());
11027
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011028 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11029 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011030
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011031 if (Subtarget->isTargetWin64()) {
11032 if (Subtarget->isTargetCygMing()) {
11033 // ___chkstk(Mingw64):
11034 // Clobbers R10, R11, RAX and EFLAGS.
11035 // Updates RSP.
11036 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11037 .addExternalSymbol("___chkstk")
11038 .addReg(X86::RAX, RegState::Implicit)
11039 .addReg(X86::RSP, RegState::Implicit)
11040 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11041 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11042 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11043 } else {
11044 // __chkstk(MSVCRT): does not update stack pointer.
11045 // Clobbers R10, R11 and EFLAGS.
11046 // FIXME: RAX(allocated size) might be reused and not killed.
11047 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11048 .addExternalSymbol("__chkstk")
11049 .addReg(X86::RAX, RegState::Implicit)
11050 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11051 // RAX has the offset to subtracted from RSP.
11052 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11053 .addReg(X86::RSP)
11054 .addReg(X86::RAX);
11055 }
11056 } else {
11057 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011058 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11059
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011060 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11061 .addExternalSymbol(StackProbeSymbol)
11062 .addReg(X86::EAX, RegState::Implicit)
11063 .addReg(X86::ESP, RegState::Implicit)
11064 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11065 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11066 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11067 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011068
Dan Gohman14152b42010-07-06 20:24:04 +000011069 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011070 return BB;
11071}
Chris Lattner52600972009-09-02 05:57:00 +000011072
11073MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011074X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11075 MachineBasicBlock *BB) const {
11076 // This is pretty easy. We're taking the value that we received from
11077 // our load from the relocation, sticking it in either RDI (x86-64)
11078 // or EAX and doing an indirect call. The return value will then
11079 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011080 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011081 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011082 DebugLoc DL = MI->getDebugLoc();
11083 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011084
11085 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011086 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011087
Eric Christopher30ef0e52010-06-03 04:07:48 +000011088 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011089 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11090 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011091 .addReg(X86::RIP)
11092 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011093 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011094 MI->getOperand(3).getTargetFlags())
11095 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011096 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011097 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011098 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011099 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11100 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011101 .addReg(0)
11102 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011103 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011104 MI->getOperand(3).getTargetFlags())
11105 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011106 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011107 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011108 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011109 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11110 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011111 .addReg(TII->getGlobalBaseReg(F))
11112 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011113 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011114 MI->getOperand(3).getTargetFlags())
11115 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011116 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011117 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011118 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011119
Dan Gohman14152b42010-07-06 20:24:04 +000011120 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011121 return BB;
11122}
11123
11124MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011125X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011126 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011127 switch (MI->getOpcode()) {
11128 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011129 case X86::TAILJMPd64:
11130 case X86::TAILJMPr64:
11131 case X86::TAILJMPm64:
11132 assert(!"TAILJMP64 would not be touched here.");
11133 case X86::TCRETURNdi64:
11134 case X86::TCRETURNri64:
11135 case X86::TCRETURNmi64:
11136 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11137 // On AMD64, additional defs should be added before register allocation.
11138 if (!Subtarget->isTargetWin64()) {
11139 MI->addRegisterDefined(X86::RSI);
11140 MI->addRegisterDefined(X86::RDI);
11141 MI->addRegisterDefined(X86::XMM6);
11142 MI->addRegisterDefined(X86::XMM7);
11143 MI->addRegisterDefined(X86::XMM8);
11144 MI->addRegisterDefined(X86::XMM9);
11145 MI->addRegisterDefined(X86::XMM10);
11146 MI->addRegisterDefined(X86::XMM11);
11147 MI->addRegisterDefined(X86::XMM12);
11148 MI->addRegisterDefined(X86::XMM13);
11149 MI->addRegisterDefined(X86::XMM14);
11150 MI->addRegisterDefined(X86::XMM15);
11151 }
11152 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011153 case X86::WIN_ALLOCA:
11154 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011155 case X86::TLSCall_32:
11156 case X86::TLSCall_64:
11157 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011158 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011159 case X86::CMOV_FR32:
11160 case X86::CMOV_FR64:
11161 case X86::CMOV_V4F32:
11162 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011163 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011164 case X86::CMOV_GR16:
11165 case X86::CMOV_GR32:
11166 case X86::CMOV_RFP32:
11167 case X86::CMOV_RFP64:
11168 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011169 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011170
Dale Johannesen849f2142007-07-03 00:53:03 +000011171 case X86::FP32_TO_INT16_IN_MEM:
11172 case X86::FP32_TO_INT32_IN_MEM:
11173 case X86::FP32_TO_INT64_IN_MEM:
11174 case X86::FP64_TO_INT16_IN_MEM:
11175 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011176 case X86::FP64_TO_INT64_IN_MEM:
11177 case X86::FP80_TO_INT16_IN_MEM:
11178 case X86::FP80_TO_INT32_IN_MEM:
11179 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011180 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11181 DebugLoc DL = MI->getDebugLoc();
11182
Evan Cheng60c07e12006-07-05 22:17:51 +000011183 // Change the floating point control register to use "round towards zero"
11184 // mode when truncating to an integer value.
11185 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011186 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011187 addFrameReference(BuildMI(*BB, MI, DL,
11188 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011189
11190 // Load the old value of the high byte of the control word...
11191 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011192 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011193 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011194 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011195
11196 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011197 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011198 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011199
11200 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011201 addFrameReference(BuildMI(*BB, MI, DL,
11202 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011203
11204 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011205 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011206 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011207
11208 // Get the X86 opcode to use.
11209 unsigned Opc;
11210 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011211 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011212 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11213 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11214 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11215 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11216 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11217 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011218 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11219 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11220 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011221 }
11222
11223 X86AddressMode AM;
11224 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011225 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011226 AM.BaseType = X86AddressMode::RegBase;
11227 AM.Base.Reg = Op.getReg();
11228 } else {
11229 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011230 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011231 }
11232 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011233 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011234 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011235 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011236 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011237 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011238 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011239 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011240 AM.GV = Op.getGlobal();
11241 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011242 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011243 }
Dan Gohman14152b42010-07-06 20:24:04 +000011244 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011245 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011246
11247 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011248 addFrameReference(BuildMI(*BB, MI, DL,
11249 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011250
Dan Gohman14152b42010-07-06 20:24:04 +000011251 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011252 return BB;
11253 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011254 // String/text processing lowering.
11255 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011256 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011257 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11258 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011259 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011260 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11261 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011262 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011263 return EmitPCMP(MI, BB, 5, false /* in mem */);
11264 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011265 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011266 return EmitPCMP(MI, BB, 5, true /* in mem */);
11267
Eric Christopher228232b2010-11-30 07:20:12 +000011268 // Thread synchronization.
11269 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011270 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011271 case X86::MWAIT:
11272 return EmitMwait(MI, BB);
11273
Eric Christopherb120ab42009-08-18 22:50:32 +000011274 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011275 case X86::ATOMAND32:
11276 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011277 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011278 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011279 X86::NOT32r, X86::EAX,
11280 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011281 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011282 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11283 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011284 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011285 X86::NOT32r, X86::EAX,
11286 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011287 case X86::ATOMXOR32:
11288 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011289 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011290 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011291 X86::NOT32r, X86::EAX,
11292 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011293 case X86::ATOMNAND32:
11294 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011295 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011296 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011297 X86::NOT32r, X86::EAX,
11298 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011299 case X86::ATOMMIN32:
11300 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11301 case X86::ATOMMAX32:
11302 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11303 case X86::ATOMUMIN32:
11304 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11305 case X86::ATOMUMAX32:
11306 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011307
11308 case X86::ATOMAND16:
11309 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11310 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011311 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011312 X86::NOT16r, X86::AX,
11313 X86::GR16RegisterClass);
11314 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011315 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011316 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011317 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011318 X86::NOT16r, X86::AX,
11319 X86::GR16RegisterClass);
11320 case X86::ATOMXOR16:
11321 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11322 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011323 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011324 X86::NOT16r, X86::AX,
11325 X86::GR16RegisterClass);
11326 case X86::ATOMNAND16:
11327 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11328 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011329 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011330 X86::NOT16r, X86::AX,
11331 X86::GR16RegisterClass, true);
11332 case X86::ATOMMIN16:
11333 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11334 case X86::ATOMMAX16:
11335 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11336 case X86::ATOMUMIN16:
11337 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11338 case X86::ATOMUMAX16:
11339 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11340
11341 case X86::ATOMAND8:
11342 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11343 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011344 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011345 X86::NOT8r, X86::AL,
11346 X86::GR8RegisterClass);
11347 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011348 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011349 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011350 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011351 X86::NOT8r, X86::AL,
11352 X86::GR8RegisterClass);
11353 case X86::ATOMXOR8:
11354 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11355 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011356 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011357 X86::NOT8r, X86::AL,
11358 X86::GR8RegisterClass);
11359 case X86::ATOMNAND8:
11360 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11361 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011362 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011363 X86::NOT8r, X86::AL,
11364 X86::GR8RegisterClass, true);
11365 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011366 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011367 case X86::ATOMAND64:
11368 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011369 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011370 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011371 X86::NOT64r, X86::RAX,
11372 X86::GR64RegisterClass);
11373 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011374 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11375 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011376 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011377 X86::NOT64r, X86::RAX,
11378 X86::GR64RegisterClass);
11379 case X86::ATOMXOR64:
11380 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011381 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011382 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011383 X86::NOT64r, X86::RAX,
11384 X86::GR64RegisterClass);
11385 case X86::ATOMNAND64:
11386 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11387 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011388 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011389 X86::NOT64r, X86::RAX,
11390 X86::GR64RegisterClass, true);
11391 case X86::ATOMMIN64:
11392 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11393 case X86::ATOMMAX64:
11394 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11395 case X86::ATOMUMIN64:
11396 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11397 case X86::ATOMUMAX64:
11398 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011399
11400 // This group does 64-bit operations on a 32-bit host.
11401 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011402 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011403 X86::AND32rr, X86::AND32rr,
11404 X86::AND32ri, X86::AND32ri,
11405 false);
11406 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011407 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011408 X86::OR32rr, X86::OR32rr,
11409 X86::OR32ri, X86::OR32ri,
11410 false);
11411 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011412 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011413 X86::XOR32rr, X86::XOR32rr,
11414 X86::XOR32ri, X86::XOR32ri,
11415 false);
11416 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011417 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011418 X86::AND32rr, X86::AND32rr,
11419 X86::AND32ri, X86::AND32ri,
11420 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011421 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011422 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011423 X86::ADD32rr, X86::ADC32rr,
11424 X86::ADD32ri, X86::ADC32ri,
11425 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011426 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011427 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011428 X86::SUB32rr, X86::SBB32rr,
11429 X86::SUB32ri, X86::SBB32ri,
11430 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011431 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011432 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011433 X86::MOV32rr, X86::MOV32rr,
11434 X86::MOV32ri, X86::MOV32ri,
11435 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011436 case X86::VASTART_SAVE_XMM_REGS:
11437 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011438
11439 case X86::VAARG_64:
11440 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011441 }
11442}
11443
11444//===----------------------------------------------------------------------===//
11445// X86 Optimization Hooks
11446//===----------------------------------------------------------------------===//
11447
Dan Gohman475871a2008-07-27 21:46:04 +000011448void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011449 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011450 APInt &KnownZero,
11451 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011452 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011453 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011454 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011455 assert((Opc >= ISD::BUILTIN_OP_END ||
11456 Opc == ISD::INTRINSIC_WO_CHAIN ||
11457 Opc == ISD::INTRINSIC_W_CHAIN ||
11458 Opc == ISD::INTRINSIC_VOID) &&
11459 "Should use MaskedValueIsZero if you don't know whether Op"
11460 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011461
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011462 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011463 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011464 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011465 case X86ISD::ADD:
11466 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011467 case X86ISD::ADC:
11468 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011469 case X86ISD::SMUL:
11470 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011471 case X86ISD::INC:
11472 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011473 case X86ISD::OR:
11474 case X86ISD::XOR:
11475 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011476 // These nodes' second result is a boolean.
11477 if (Op.getResNo() == 0)
11478 break;
11479 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011480 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011481 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11482 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011483 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011484 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011485}
Chris Lattner259e97c2006-01-31 19:43:35 +000011486
Owen Andersonbc146b02010-09-21 20:42:50 +000011487unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11488 unsigned Depth) const {
11489 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11490 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11491 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011492
Owen Andersonbc146b02010-09-21 20:42:50 +000011493 // Fallback case.
11494 return 1;
11495}
11496
Evan Cheng206ee9d2006-07-07 08:33:52 +000011497/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011498/// node is a GlobalAddress + offset.
11499bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011500 const GlobalValue* &GA,
11501 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011502 if (N->getOpcode() == X86ISD::Wrapper) {
11503 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011504 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011505 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011506 return true;
11507 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011508 }
Evan Chengad4196b2008-05-12 19:56:52 +000011509 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011510}
11511
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011512/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11513static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11514 TargetLowering::DAGCombinerInfo &DCI) {
11515 DebugLoc dl = N->getDebugLoc();
11516 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11517 SDValue V1 = SVOp->getOperand(0);
11518 SDValue V2 = SVOp->getOperand(1);
11519 EVT VT = SVOp->getValueType(0);
11520
11521 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11522 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11523 //
11524 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011525 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011526 // V UNDEF BUILD_VECTOR UNDEF
11527 // \ / \ /
11528 // CONCAT_VECTOR CONCAT_VECTOR
11529 // \ /
11530 // \ /
11531 // RESULT: V + zero extended
11532 //
11533 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11534 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11535 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11536 return SDValue();
11537
11538 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11539 return SDValue();
11540
11541 // To match the shuffle mask, the first half of the mask should
11542 // be exactly the first vector, and all the rest a splat with the
11543 // first element of the second one.
11544 int NumElems = VT.getVectorNumElements();
11545 for (int i = 0; i < NumElems/2; ++i)
11546 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11547 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11548 return SDValue();
11549
11550 // Emit a zeroed vector and insert the desired subvector on its
11551 // first half.
11552 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11553 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11554 DAG.getConstant(0, MVT::i32), DAG, dl);
11555 return DCI.CombineTo(N, InsV);
11556 }
11557
11558 return SDValue();
11559}
11560
11561/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011562static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011563 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011564 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011565 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011566
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011567 // Don't create instructions with illegal types after legalize types has run.
11568 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11569 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11570 return SDValue();
11571
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011572 // Only handle pure VECTOR_SHUFFLE nodes.
11573 if (VT.getSizeInBits() == 256 && N->getOpcode() == ISD::VECTOR_SHUFFLE)
11574 return PerformShuffleCombine256(N, DAG, DCI);
11575
11576 // Only handle 128 wide vector from here on.
11577 if (VT.getSizeInBits() != 128)
11578 return SDValue();
11579
11580 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11581 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11582 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011583 SmallVector<SDValue, 16> Elts;
11584 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011585 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011586
Nate Begemanfdea31a2010-03-24 20:49:50 +000011587 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011588}
Evan Chengd880b972008-05-09 21:53:03 +000011589
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011590/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11591/// generation and convert it from being a bunch of shuffles and extracts
11592/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011593static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11594 const TargetLowering &TLI) {
11595 SDValue InputVector = N->getOperand(0);
11596
11597 // Only operate on vectors of 4 elements, where the alternative shuffling
11598 // gets to be more expensive.
11599 if (InputVector.getValueType() != MVT::v4i32)
11600 return SDValue();
11601
11602 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11603 // single use which is a sign-extend or zero-extend, and all elements are
11604 // used.
11605 SmallVector<SDNode *, 4> Uses;
11606 unsigned ExtractedElements = 0;
11607 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11608 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11609 if (UI.getUse().getResNo() != InputVector.getResNo())
11610 return SDValue();
11611
11612 SDNode *Extract = *UI;
11613 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11614 return SDValue();
11615
11616 if (Extract->getValueType(0) != MVT::i32)
11617 return SDValue();
11618 if (!Extract->hasOneUse())
11619 return SDValue();
11620 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11621 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11622 return SDValue();
11623 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11624 return SDValue();
11625
11626 // Record which element was extracted.
11627 ExtractedElements |=
11628 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11629
11630 Uses.push_back(Extract);
11631 }
11632
11633 // If not all the elements were used, this may not be worthwhile.
11634 if (ExtractedElements != 15)
11635 return SDValue();
11636
11637 // Ok, we've now decided to do the transformation.
11638 DebugLoc dl = InputVector.getDebugLoc();
11639
11640 // Store the value to a temporary stack slot.
11641 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011642 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11643 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011644
11645 // Replace each use (extract) with a load of the appropriate element.
11646 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11647 UE = Uses.end(); UI != UE; ++UI) {
11648 SDNode *Extract = *UI;
11649
Nadav Rotem86694292011-05-17 08:31:57 +000011650 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011651 SDValue Idx = Extract->getOperand(1);
11652 unsigned EltSize =
11653 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11654 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11655 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11656
Nadav Rotem86694292011-05-17 08:31:57 +000011657 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011658 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011659
11660 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011661 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011662 ScalarAddr, MachinePointerInfo(),
11663 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011664
11665 // Replace the exact with the load.
11666 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11667 }
11668
11669 // The replacement was made in place; don't return anything.
11670 return SDValue();
11671}
11672
Chris Lattner83e6c992006-10-04 06:57:07 +000011673/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011674static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011675 const X86Subtarget *Subtarget) {
11676 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011677 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011678 // Get the LHS/RHS of the select.
11679 SDValue LHS = N->getOperand(1);
11680 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011681
Dan Gohman670e5392009-09-21 18:03:22 +000011682 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011683 // instructions match the semantics of the common C idiom x<y?x:y but not
11684 // x<=y?x:y, because of how they handle negative zero (which can be
11685 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011686 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011687 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011688 Cond.getOpcode() == ISD::SETCC) {
11689 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011690
Chris Lattner47b4ce82009-03-11 05:48:52 +000011691 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011692 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011693 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11694 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011695 switch (CC) {
11696 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011697 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011698 // Converting this to a min would handle NaNs incorrectly, and swapping
11699 // the operands would cause it to handle comparisons between positive
11700 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011701 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011702 if (!UnsafeFPMath &&
11703 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11704 break;
11705 std::swap(LHS, RHS);
11706 }
Dan Gohman670e5392009-09-21 18:03:22 +000011707 Opcode = X86ISD::FMIN;
11708 break;
11709 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011710 // Converting this to a min would handle comparisons between positive
11711 // and negative zero incorrectly.
11712 if (!UnsafeFPMath &&
11713 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11714 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011715 Opcode = X86ISD::FMIN;
11716 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011717 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011718 // Converting this to a min would handle both negative zeros and NaNs
11719 // incorrectly, but we can swap the operands to fix both.
11720 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011721 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011722 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011723 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011724 Opcode = X86ISD::FMIN;
11725 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011726
Dan Gohman670e5392009-09-21 18:03:22 +000011727 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011728 // Converting this to a max would handle comparisons between positive
11729 // and negative zero incorrectly.
11730 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000011731 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011732 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011733 Opcode = X86ISD::FMAX;
11734 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011735 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011736 // Converting this to a max would handle NaNs incorrectly, and swapping
11737 // the operands would cause it to handle comparisons between positive
11738 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011739 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011740 if (!UnsafeFPMath &&
11741 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11742 break;
11743 std::swap(LHS, RHS);
11744 }
Dan Gohman670e5392009-09-21 18:03:22 +000011745 Opcode = X86ISD::FMAX;
11746 break;
11747 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011748 // Converting this to a max would handle both negative zeros and NaNs
11749 // incorrectly, but we can swap the operands to fix both.
11750 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011751 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011752 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011753 case ISD::SETGE:
11754 Opcode = X86ISD::FMAX;
11755 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011756 }
Dan Gohman670e5392009-09-21 18:03:22 +000011757 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011758 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11759 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011760 switch (CC) {
11761 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011762 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011763 // Converting this to a min would handle comparisons between positive
11764 // and negative zero incorrectly, and swapping the operands would
11765 // cause it to handle NaNs incorrectly.
11766 if (!UnsafeFPMath &&
11767 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011768 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011769 break;
11770 std::swap(LHS, RHS);
11771 }
Dan Gohman670e5392009-09-21 18:03:22 +000011772 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011773 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011774 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011775 // Converting this to a min would handle NaNs incorrectly.
11776 if (!UnsafeFPMath &&
11777 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11778 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011779 Opcode = X86ISD::FMIN;
11780 break;
11781 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011782 // Converting this to a min would handle both negative zeros and NaNs
11783 // incorrectly, but we can swap the operands to fix both.
11784 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011785 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011786 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011787 case ISD::SETGE:
11788 Opcode = X86ISD::FMIN;
11789 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011790
Dan Gohman670e5392009-09-21 18:03:22 +000011791 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011792 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011793 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011794 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011795 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011796 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011797 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011798 // Converting this to a max would handle comparisons between positive
11799 // and negative zero incorrectly, and swapping the operands would
11800 // cause it to handle NaNs incorrectly.
11801 if (!UnsafeFPMath &&
11802 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011803 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011804 break;
11805 std::swap(LHS, RHS);
11806 }
Dan Gohman670e5392009-09-21 18:03:22 +000011807 Opcode = X86ISD::FMAX;
11808 break;
11809 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011810 // Converting this to a max would handle both negative zeros and NaNs
11811 // incorrectly, but we can swap the operands to fix both.
11812 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011813 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011814 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011815 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011816 Opcode = X86ISD::FMAX;
11817 break;
11818 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011819 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011820
Chris Lattner47b4ce82009-03-11 05:48:52 +000011821 if (Opcode)
11822 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011823 }
Eric Christopherfd179292009-08-27 18:07:15 +000011824
Chris Lattnerd1980a52009-03-12 06:52:53 +000011825 // If this is a select between two integer constants, try to do some
11826 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011827 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11828 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011829 // Don't do this for crazy integer types.
11830 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11831 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011832 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011833 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011834
Chris Lattnercee56e72009-03-13 05:53:31 +000011835 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011836 // Efficiently invertible.
11837 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11838 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11839 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11840 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011841 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011842 }
Eric Christopherfd179292009-08-27 18:07:15 +000011843
Chris Lattnerd1980a52009-03-12 06:52:53 +000011844 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011845 if (FalseC->getAPIntValue() == 0 &&
11846 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011847 if (NeedsCondInvert) // Invert the condition if needed.
11848 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11849 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011850
Chris Lattnerd1980a52009-03-12 06:52:53 +000011851 // Zero extend the condition if needed.
11852 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011853
Chris Lattnercee56e72009-03-13 05:53:31 +000011854 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011855 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011856 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011857 }
Eric Christopherfd179292009-08-27 18:07:15 +000011858
Chris Lattner97a29a52009-03-13 05:22:11 +000011859 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011860 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011861 if (NeedsCondInvert) // Invert the condition if needed.
11862 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11863 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011864
Chris Lattner97a29a52009-03-13 05:22:11 +000011865 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011866 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11867 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011868 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011869 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011870 }
Eric Christopherfd179292009-08-27 18:07:15 +000011871
Chris Lattnercee56e72009-03-13 05:53:31 +000011872 // Optimize cases that will turn into an LEA instruction. This requires
11873 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011874 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011875 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011876 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011877
Chris Lattnercee56e72009-03-13 05:53:31 +000011878 bool isFastMultiplier = false;
11879 if (Diff < 10) {
11880 switch ((unsigned char)Diff) {
11881 default: break;
11882 case 1: // result = add base, cond
11883 case 2: // result = lea base( , cond*2)
11884 case 3: // result = lea base(cond, cond*2)
11885 case 4: // result = lea base( , cond*4)
11886 case 5: // result = lea base(cond, cond*4)
11887 case 8: // result = lea base( , cond*8)
11888 case 9: // result = lea base(cond, cond*8)
11889 isFastMultiplier = true;
11890 break;
11891 }
11892 }
Eric Christopherfd179292009-08-27 18:07:15 +000011893
Chris Lattnercee56e72009-03-13 05:53:31 +000011894 if (isFastMultiplier) {
11895 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11896 if (NeedsCondInvert) // Invert the condition if needed.
11897 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11898 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011899
Chris Lattnercee56e72009-03-13 05:53:31 +000011900 // Zero extend the condition if needed.
11901 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11902 Cond);
11903 // Scale the condition by the difference.
11904 if (Diff != 1)
11905 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11906 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011907
Chris Lattnercee56e72009-03-13 05:53:31 +000011908 // Add the base if non-zero.
11909 if (FalseC->getAPIntValue() != 0)
11910 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11911 SDValue(FalseC, 0));
11912 return Cond;
11913 }
Eric Christopherfd179292009-08-27 18:07:15 +000011914 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011915 }
11916 }
Eric Christopherfd179292009-08-27 18:07:15 +000011917
Dan Gohman475871a2008-07-27 21:46:04 +000011918 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011919}
11920
Chris Lattnerd1980a52009-03-12 06:52:53 +000011921/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11922static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11923 TargetLowering::DAGCombinerInfo &DCI) {
11924 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011925
Chris Lattnerd1980a52009-03-12 06:52:53 +000011926 // If the flag operand isn't dead, don't touch this CMOV.
11927 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11928 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011929
Evan Chengb5a55d92011-05-24 01:48:22 +000011930 SDValue FalseOp = N->getOperand(0);
11931 SDValue TrueOp = N->getOperand(1);
11932 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11933 SDValue Cond = N->getOperand(3);
11934 if (CC == X86::COND_E || CC == X86::COND_NE) {
11935 switch (Cond.getOpcode()) {
11936 default: break;
11937 case X86ISD::BSR:
11938 case X86ISD::BSF:
11939 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11940 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11941 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11942 }
11943 }
11944
Chris Lattnerd1980a52009-03-12 06:52:53 +000011945 // If this is a select between two integer constants, try to do some
11946 // optimizations. Note that the operands are ordered the opposite of SELECT
11947 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011948 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11949 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011950 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11951 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011952 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11953 CC = X86::GetOppositeBranchCondition(CC);
11954 std::swap(TrueC, FalseC);
11955 }
Eric Christopherfd179292009-08-27 18:07:15 +000011956
Chris Lattnerd1980a52009-03-12 06:52:53 +000011957 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011958 // This is efficient for any integer data type (including i8/i16) and
11959 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011960 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011961 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11962 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011963
Chris Lattnerd1980a52009-03-12 06:52:53 +000011964 // Zero extend the condition if needed.
11965 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011966
Chris Lattnerd1980a52009-03-12 06:52:53 +000011967 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11968 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011969 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011970 if (N->getNumValues() == 2) // Dead flag value?
11971 return DCI.CombineTo(N, Cond, SDValue());
11972 return Cond;
11973 }
Eric Christopherfd179292009-08-27 18:07:15 +000011974
Chris Lattnercee56e72009-03-13 05:53:31 +000011975 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11976 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011977 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011978 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11979 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011980
Chris Lattner97a29a52009-03-13 05:22:11 +000011981 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011982 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11983 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011984 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11985 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000011986
Chris Lattner97a29a52009-03-13 05:22:11 +000011987 if (N->getNumValues() == 2) // Dead flag value?
11988 return DCI.CombineTo(N, Cond, SDValue());
11989 return Cond;
11990 }
Eric Christopherfd179292009-08-27 18:07:15 +000011991
Chris Lattnercee56e72009-03-13 05:53:31 +000011992 // Optimize cases that will turn into an LEA instruction. This requires
11993 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011994 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011995 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011996 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011997
Chris Lattnercee56e72009-03-13 05:53:31 +000011998 bool isFastMultiplier = false;
11999 if (Diff < 10) {
12000 switch ((unsigned char)Diff) {
12001 default: break;
12002 case 1: // result = add base, cond
12003 case 2: // result = lea base( , cond*2)
12004 case 3: // result = lea base(cond, cond*2)
12005 case 4: // result = lea base( , cond*4)
12006 case 5: // result = lea base(cond, cond*4)
12007 case 8: // result = lea base( , cond*8)
12008 case 9: // result = lea base(cond, cond*8)
12009 isFastMultiplier = true;
12010 break;
12011 }
12012 }
Eric Christopherfd179292009-08-27 18:07:15 +000012013
Chris Lattnercee56e72009-03-13 05:53:31 +000012014 if (isFastMultiplier) {
12015 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012016 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12017 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012018 // Zero extend the condition if needed.
12019 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12020 Cond);
12021 // Scale the condition by the difference.
12022 if (Diff != 1)
12023 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12024 DAG.getConstant(Diff, Cond.getValueType()));
12025
12026 // Add the base if non-zero.
12027 if (FalseC->getAPIntValue() != 0)
12028 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12029 SDValue(FalseC, 0));
12030 if (N->getNumValues() == 2) // Dead flag value?
12031 return DCI.CombineTo(N, Cond, SDValue());
12032 return Cond;
12033 }
Eric Christopherfd179292009-08-27 18:07:15 +000012034 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012035 }
12036 }
12037 return SDValue();
12038}
12039
12040
Evan Cheng0b0cd912009-03-28 05:57:29 +000012041/// PerformMulCombine - Optimize a single multiply with constant into two
12042/// in order to implement it with two cheaper instructions, e.g.
12043/// LEA + SHL, LEA + LEA.
12044static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12045 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012046 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12047 return SDValue();
12048
Owen Andersone50ed302009-08-10 22:56:29 +000012049 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012050 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012051 return SDValue();
12052
12053 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12054 if (!C)
12055 return SDValue();
12056 uint64_t MulAmt = C->getZExtValue();
12057 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12058 return SDValue();
12059
12060 uint64_t MulAmt1 = 0;
12061 uint64_t MulAmt2 = 0;
12062 if ((MulAmt % 9) == 0) {
12063 MulAmt1 = 9;
12064 MulAmt2 = MulAmt / 9;
12065 } else if ((MulAmt % 5) == 0) {
12066 MulAmt1 = 5;
12067 MulAmt2 = MulAmt / 5;
12068 } else if ((MulAmt % 3) == 0) {
12069 MulAmt1 = 3;
12070 MulAmt2 = MulAmt / 3;
12071 }
12072 if (MulAmt2 &&
12073 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12074 DebugLoc DL = N->getDebugLoc();
12075
12076 if (isPowerOf2_64(MulAmt2) &&
12077 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12078 // If second multiplifer is pow2, issue it first. We want the multiply by
12079 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12080 // is an add.
12081 std::swap(MulAmt1, MulAmt2);
12082
12083 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012084 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012085 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012086 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012087 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012088 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012089 DAG.getConstant(MulAmt1, VT));
12090
Eric Christopherfd179292009-08-27 18:07:15 +000012091 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012092 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012093 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012094 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012095 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012096 DAG.getConstant(MulAmt2, VT));
12097
12098 // Do not add new nodes to DAG combiner worklist.
12099 DCI.CombineTo(N, NewMul, false);
12100 }
12101 return SDValue();
12102}
12103
Evan Chengad9c0a32009-12-15 00:53:42 +000012104static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12105 SDValue N0 = N->getOperand(0);
12106 SDValue N1 = N->getOperand(1);
12107 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12108 EVT VT = N0.getValueType();
12109
12110 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12111 // since the result of setcc_c is all zero's or all ones.
12112 if (N1C && N0.getOpcode() == ISD::AND &&
12113 N0.getOperand(1).getOpcode() == ISD::Constant) {
12114 SDValue N00 = N0.getOperand(0);
12115 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12116 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12117 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12118 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12119 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12120 APInt ShAmt = N1C->getAPIntValue();
12121 Mask = Mask.shl(ShAmt);
12122 if (Mask != 0)
12123 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12124 N00, DAG.getConstant(Mask, VT));
12125 }
12126 }
12127
12128 return SDValue();
12129}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012130
Nate Begeman740ab032009-01-26 00:52:55 +000012131/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12132/// when possible.
12133static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12134 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012135 EVT VT = N->getValueType(0);
12136 if (!VT.isVector() && VT.isInteger() &&
12137 N->getOpcode() == ISD::SHL)
12138 return PerformSHLCombine(N, DAG);
12139
Nate Begeman740ab032009-01-26 00:52:55 +000012140 // On X86 with SSE2 support, we can transform this to a vector shift if
12141 // all elements are shifted by the same amount. We can't do this in legalize
12142 // because the a constant vector is typically transformed to a constant pool
12143 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000012144 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012145 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012146
Owen Anderson825b72b2009-08-11 20:47:22 +000012147 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012148 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012149
Mon P Wang3becd092009-01-28 08:12:05 +000012150 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012151 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012152 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012153 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012154 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12155 unsigned NumElts = VT.getVectorNumElements();
12156 unsigned i = 0;
12157 for (; i != NumElts; ++i) {
12158 SDValue Arg = ShAmtOp.getOperand(i);
12159 if (Arg.getOpcode() == ISD::UNDEF) continue;
12160 BaseShAmt = Arg;
12161 break;
12162 }
12163 for (; i != NumElts; ++i) {
12164 SDValue Arg = ShAmtOp.getOperand(i);
12165 if (Arg.getOpcode() == ISD::UNDEF) continue;
12166 if (Arg != BaseShAmt) {
12167 return SDValue();
12168 }
12169 }
12170 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012171 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012172 SDValue InVec = ShAmtOp.getOperand(0);
12173 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12174 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12175 unsigned i = 0;
12176 for (; i != NumElts; ++i) {
12177 SDValue Arg = InVec.getOperand(i);
12178 if (Arg.getOpcode() == ISD::UNDEF) continue;
12179 BaseShAmt = Arg;
12180 break;
12181 }
12182 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12183 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012184 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012185 if (C->getZExtValue() == SplatIdx)
12186 BaseShAmt = InVec.getOperand(1);
12187 }
12188 }
12189 if (BaseShAmt.getNode() == 0)
12190 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12191 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012192 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012193 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012194
Mon P Wangefa42202009-09-03 19:56:25 +000012195 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012196 if (EltVT.bitsGT(MVT::i32))
12197 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12198 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012199 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012200
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012201 // The shift amount is identical so we can do a vector shift.
12202 SDValue ValOp = N->getOperand(0);
12203 switch (N->getOpcode()) {
12204 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012205 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012206 break;
12207 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012208 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012209 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012210 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012211 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012212 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012213 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012214 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012215 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012216 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012217 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012218 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012219 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012220 break;
12221 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012222 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012223 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012224 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012225 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012226 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012227 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012228 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012229 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012230 break;
12231 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012232 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012233 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012234 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012235 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012236 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012237 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012238 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012239 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012240 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012241 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012242 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012243 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012244 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012245 }
12246 return SDValue();
12247}
12248
Nate Begemanb65c1752010-12-17 22:55:37 +000012249
Stuart Hastings865f0932011-06-03 23:53:54 +000012250// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12251// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12252// and friends. Likewise for OR -> CMPNEQSS.
12253static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12254 TargetLowering::DAGCombinerInfo &DCI,
12255 const X86Subtarget *Subtarget) {
12256 unsigned opcode;
12257
12258 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12259 // we're requiring SSE2 for both.
12260 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12261 SDValue N0 = N->getOperand(0);
12262 SDValue N1 = N->getOperand(1);
12263 SDValue CMP0 = N0->getOperand(1);
12264 SDValue CMP1 = N1->getOperand(1);
12265 DebugLoc DL = N->getDebugLoc();
12266
12267 // The SETCCs should both refer to the same CMP.
12268 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12269 return SDValue();
12270
12271 SDValue CMP00 = CMP0->getOperand(0);
12272 SDValue CMP01 = CMP0->getOperand(1);
12273 EVT VT = CMP00.getValueType();
12274
12275 if (VT == MVT::f32 || VT == MVT::f64) {
12276 bool ExpectingFlags = false;
12277 // Check for any users that want flags:
12278 for (SDNode::use_iterator UI = N->use_begin(),
12279 UE = N->use_end();
12280 !ExpectingFlags && UI != UE; ++UI)
12281 switch (UI->getOpcode()) {
12282 default:
12283 case ISD::BR_CC:
12284 case ISD::BRCOND:
12285 case ISD::SELECT:
12286 ExpectingFlags = true;
12287 break;
12288 case ISD::CopyToReg:
12289 case ISD::SIGN_EXTEND:
12290 case ISD::ZERO_EXTEND:
12291 case ISD::ANY_EXTEND:
12292 break;
12293 }
12294
12295 if (!ExpectingFlags) {
12296 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12297 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12298
12299 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12300 X86::CondCode tmp = cc0;
12301 cc0 = cc1;
12302 cc1 = tmp;
12303 }
12304
12305 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12306 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12307 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12308 X86ISD::NodeType NTOperator = is64BitFP ?
12309 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12310 // FIXME: need symbolic constants for these magic numbers.
12311 // See X86ATTInstPrinter.cpp:printSSECC().
12312 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12313 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12314 DAG.getConstant(x86cc, MVT::i8));
12315 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12316 OnesOrZeroesF);
12317 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12318 DAG.getConstant(1, MVT::i32));
12319 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12320 return OneBitOfTruth;
12321 }
12322 }
12323 }
12324 }
12325 return SDValue();
12326}
12327
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012328/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12329/// so it can be folded inside ANDNP.
12330static bool CanFoldXORWithAllOnes(const SDNode *N) {
12331 EVT VT = N->getValueType(0);
12332
12333 // Match direct AllOnes for 128 and 256-bit vectors
12334 if (ISD::isBuildVectorAllOnes(N))
12335 return true;
12336
12337 // Look through a bit convert.
12338 if (N->getOpcode() == ISD::BITCAST)
12339 N = N->getOperand(0).getNode();
12340
12341 // Sometimes the operand may come from a insert_subvector building a 256-bit
12342 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012343 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000012344 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
12345 SDValue V1 = N->getOperand(0);
12346 SDValue V2 = N->getOperand(1);
12347
12348 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12349 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12350 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12351 ISD::isBuildVectorAllOnes(V2.getNode()))
12352 return true;
12353 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012354
12355 return false;
12356}
12357
Nate Begemanb65c1752010-12-17 22:55:37 +000012358static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12359 TargetLowering::DAGCombinerInfo &DCI,
12360 const X86Subtarget *Subtarget) {
12361 if (DCI.isBeforeLegalizeOps())
12362 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012363
Stuart Hastings865f0932011-06-03 23:53:54 +000012364 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12365 if (R.getNode())
12366 return R;
12367
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012368 // Want to form ANDNP nodes:
12369 // 1) In the hopes of then easily combining them with OR and AND nodes
12370 // to form PBLEND/PSIGN.
12371 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012372 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012373 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012374 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012375
Nate Begemanb65c1752010-12-17 22:55:37 +000012376 SDValue N0 = N->getOperand(0);
12377 SDValue N1 = N->getOperand(1);
12378 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012379
Nate Begemanb65c1752010-12-17 22:55:37 +000012380 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012381 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012382 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12383 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012384 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012385
12386 // Check RHS for vnot
12387 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012388 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12389 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012390 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012391
Nate Begemanb65c1752010-12-17 22:55:37 +000012392 return SDValue();
12393}
12394
Evan Cheng760d1942010-01-04 21:22:48 +000012395static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012396 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012397 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012398 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012399 return SDValue();
12400
Stuart Hastings865f0932011-06-03 23:53:54 +000012401 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12402 if (R.getNode())
12403 return R;
12404
Evan Cheng760d1942010-01-04 21:22:48 +000012405 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012406 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012407 return SDValue();
12408
Evan Cheng760d1942010-01-04 21:22:48 +000012409 SDValue N0 = N->getOperand(0);
12410 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012411
Nate Begemanb65c1752010-12-17 22:55:37 +000012412 // look for psign/blend
12413 if (Subtarget->hasSSSE3()) {
12414 if (VT == MVT::v2i64) {
12415 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012416 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012417 std::swap(N0, N1);
12418 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012419 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012420 SDValue Mask = N1.getOperand(0);
12421 SDValue X = N1.getOperand(1);
12422 SDValue Y;
12423 if (N0.getOperand(0) == Mask)
12424 Y = N0.getOperand(1);
12425 if (N0.getOperand(1) == Mask)
12426 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012427
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012428 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012429 if (!Y.getNode())
12430 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012431
Nate Begemanb65c1752010-12-17 22:55:37 +000012432 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12433 if (Mask.getOpcode() != ISD::BITCAST ||
12434 X.getOpcode() != ISD::BITCAST ||
12435 Y.getOpcode() != ISD::BITCAST)
12436 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012437
Nate Begemanb65c1752010-12-17 22:55:37 +000012438 // Look through mask bitcast.
12439 Mask = Mask.getOperand(0);
12440 EVT MaskVT = Mask.getValueType();
12441
12442 // Validate that the Mask operand is a vector sra node. The sra node
12443 // will be an intrinsic.
12444 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12445 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012446
Nate Begemanb65c1752010-12-17 22:55:37 +000012447 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12448 // there is no psrai.b
12449 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12450 case Intrinsic::x86_sse2_psrai_w:
12451 case Intrinsic::x86_sse2_psrai_d:
12452 break;
12453 default: return SDValue();
12454 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012455
Nate Begemanb65c1752010-12-17 22:55:37 +000012456 // Check that the SRA is all signbits.
12457 SDValue SraC = Mask.getOperand(2);
12458 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12459 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12460 if ((SraAmt + 1) != EltBits)
12461 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012462
Nate Begemanb65c1752010-12-17 22:55:37 +000012463 DebugLoc DL = N->getDebugLoc();
12464
12465 // Now we know we at least have a plendvb with the mask val. See if
12466 // we can form a psignb/w/d.
12467 // psign = x.type == y.type == mask.type && y = sub(0, x);
12468 X = X.getOperand(0);
12469 Y = Y.getOperand(0);
12470 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12471 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12472 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12473 unsigned Opc = 0;
12474 switch (EltBits) {
12475 case 8: Opc = X86ISD::PSIGNB; break;
12476 case 16: Opc = X86ISD::PSIGNW; break;
12477 case 32: Opc = X86ISD::PSIGND; break;
12478 default: break;
12479 }
12480 if (Opc) {
12481 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12482 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12483 }
12484 }
12485 // PBLENDVB only available on SSE 4.1
12486 if (!Subtarget->hasSSE41())
12487 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012488
Nate Begemanb65c1752010-12-17 22:55:37 +000012489 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12490 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12491 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012492 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012493 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12494 }
12495 }
12496 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012497
Nate Begemanb65c1752010-12-17 22:55:37 +000012498 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012499 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12500 std::swap(N0, N1);
12501 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12502 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012503 if (!N0.hasOneUse() || !N1.hasOneUse())
12504 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012505
12506 SDValue ShAmt0 = N0.getOperand(1);
12507 if (ShAmt0.getValueType() != MVT::i8)
12508 return SDValue();
12509 SDValue ShAmt1 = N1.getOperand(1);
12510 if (ShAmt1.getValueType() != MVT::i8)
12511 return SDValue();
12512 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12513 ShAmt0 = ShAmt0.getOperand(0);
12514 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12515 ShAmt1 = ShAmt1.getOperand(0);
12516
12517 DebugLoc DL = N->getDebugLoc();
12518 unsigned Opc = X86ISD::SHLD;
12519 SDValue Op0 = N0.getOperand(0);
12520 SDValue Op1 = N1.getOperand(0);
12521 if (ShAmt0.getOpcode() == ISD::SUB) {
12522 Opc = X86ISD::SHRD;
12523 std::swap(Op0, Op1);
12524 std::swap(ShAmt0, ShAmt1);
12525 }
12526
Evan Cheng8b1190a2010-04-28 01:18:01 +000012527 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012528 if (ShAmt1.getOpcode() == ISD::SUB) {
12529 SDValue Sum = ShAmt1.getOperand(0);
12530 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012531 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12532 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12533 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12534 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012535 return DAG.getNode(Opc, DL, VT,
12536 Op0, Op1,
12537 DAG.getNode(ISD::TRUNCATE, DL,
12538 MVT::i8, ShAmt0));
12539 }
12540 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12541 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12542 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012543 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012544 return DAG.getNode(Opc, DL, VT,
12545 N0.getOperand(0), N1.getOperand(0),
12546 DAG.getNode(ISD::TRUNCATE, DL,
12547 MVT::i8, ShAmt0));
12548 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012549
Evan Cheng760d1942010-01-04 21:22:48 +000012550 return SDValue();
12551}
12552
Chris Lattner149a4e52008-02-22 02:09:43 +000012553/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012554static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012555 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000012556 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12557 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012558 // A preferable solution to the general problem is to figure out the right
12559 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012560
12561 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000012562 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000012563 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000012564 if (VT.getSizeInBits() != 64)
12565 return SDValue();
12566
Devang Patel578efa92009-06-05 21:57:13 +000012567 const Function *F = DAG.getMachineFunction().getFunction();
12568 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000012569 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000012570 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000012571 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000012572 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000012573 isa<LoadSDNode>(St->getValue()) &&
12574 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12575 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012576 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012577 LoadSDNode *Ld = 0;
12578 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000012579 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000012580 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012581 // Must be a store of a load. We currently handle two cases: the load
12582 // is a direct child, and it's under an intervening TokenFactor. It is
12583 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000012584 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000012585 Ld = cast<LoadSDNode>(St->getChain());
12586 else if (St->getValue().hasOneUse() &&
12587 ChainVal->getOpcode() == ISD::TokenFactor) {
12588 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012589 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000012590 TokenFactorIndex = i;
12591 Ld = cast<LoadSDNode>(St->getValue());
12592 } else
12593 Ops.push_back(ChainVal->getOperand(i));
12594 }
12595 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000012596
Evan Cheng536e6672009-03-12 05:59:15 +000012597 if (!Ld || !ISD::isNormalLoad(Ld))
12598 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012599
Evan Cheng536e6672009-03-12 05:59:15 +000012600 // If this is not the MMX case, i.e. we are just turning i64 load/store
12601 // into f64 load/store, avoid the transformation if there are multiple
12602 // uses of the loaded value.
12603 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12604 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012605
Evan Cheng536e6672009-03-12 05:59:15 +000012606 DebugLoc LdDL = Ld->getDebugLoc();
12607 DebugLoc StDL = N->getDebugLoc();
12608 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
12609 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
12610 // pair instead.
12611 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012612 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000012613 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
12614 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012615 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012616 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000012617 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000012618 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000012619 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000012620 Ops.size());
12621 }
Evan Cheng536e6672009-03-12 05:59:15 +000012622 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012623 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012624 St->isVolatile(), St->isNonTemporal(),
12625 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000012626 }
Evan Cheng536e6672009-03-12 05:59:15 +000012627
12628 // Otherwise, lower to two pairs of 32-bit loads / stores.
12629 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012630 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
12631 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012632
Owen Anderson825b72b2009-08-11 20:47:22 +000012633 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012634 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012635 Ld->isVolatile(), Ld->isNonTemporal(),
12636 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000012637 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012638 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000012639 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012640 MinAlign(Ld->getAlignment(), 4));
12641
12642 SDValue NewChain = LoLd.getValue(1);
12643 if (TokenFactorIndex != -1) {
12644 Ops.push_back(LoLd);
12645 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000012646 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000012647 Ops.size());
12648 }
12649
12650 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012651 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
12652 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012653
12654 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012655 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012656 St->isVolatile(), St->isNonTemporal(),
12657 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012658 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012659 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000012660 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012661 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012662 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000012663 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000012664 }
Dan Gohman475871a2008-07-27 21:46:04 +000012665 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000012666}
12667
Chris Lattner6cf73262008-01-25 06:14:17 +000012668/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12669/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012670static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000012671 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12672 // F[X]OR(0.0, x) -> x
12673 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000012674 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12675 if (C->getValueAPF().isPosZero())
12676 return N->getOperand(1);
12677 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12678 if (C->getValueAPF().isPosZero())
12679 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000012680 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012681}
12682
12683/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012684static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000012685 // FAND(0.0, x) -> 0.0
12686 // FAND(x, 0.0) -> 0.0
12687 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12688 if (C->getValueAPF().isPosZero())
12689 return N->getOperand(0);
12690 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12691 if (C->getValueAPF().isPosZero())
12692 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000012693 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012694}
12695
Dan Gohmane5af2d32009-01-29 01:59:02 +000012696static SDValue PerformBTCombine(SDNode *N,
12697 SelectionDAG &DAG,
12698 TargetLowering::DAGCombinerInfo &DCI) {
12699 // BT ignores high bits in the bit index operand.
12700 SDValue Op1 = N->getOperand(1);
12701 if (Op1.hasOneUse()) {
12702 unsigned BitWidth = Op1.getValueSizeInBits();
12703 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12704 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012705 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12706 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012707 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012708 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12709 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12710 DCI.CommitTargetLoweringOpt(TLO);
12711 }
12712 return SDValue();
12713}
Chris Lattner83e6c992006-10-04 06:57:07 +000012714
Eli Friedman7a5e5552009-06-07 06:52:44 +000012715static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12716 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012717 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012718 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012719 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012720 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012721 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012722 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012723 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012724 }
12725 return SDValue();
12726}
12727
Evan Cheng2e489c42009-12-16 00:53:11 +000012728static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12729 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12730 // (and (i32 x86isd::setcc_carry), 1)
12731 // This eliminates the zext. This transformation is necessary because
12732 // ISD::SETCC is always legalized to i8.
12733 DebugLoc dl = N->getDebugLoc();
12734 SDValue N0 = N->getOperand(0);
12735 EVT VT = N->getValueType(0);
12736 if (N0.getOpcode() == ISD::AND &&
12737 N0.hasOneUse() &&
12738 N0.getOperand(0).hasOneUse()) {
12739 SDValue N00 = N0.getOperand(0);
12740 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12741 return SDValue();
12742 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12743 if (!C || C->getZExtValue() != 1)
12744 return SDValue();
12745 return DAG.getNode(ISD::AND, dl, VT,
12746 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12747 N00.getOperand(0), N00.getOperand(1)),
12748 DAG.getConstant(1, VT));
12749 }
12750
12751 return SDValue();
12752}
12753
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012754// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12755static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12756 unsigned X86CC = N->getConstantOperandVal(0);
12757 SDValue EFLAG = N->getOperand(1);
12758 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012759
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012760 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12761 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12762 // cases.
12763 if (X86CC == X86::COND_B)
12764 return DAG.getNode(ISD::AND, DL, MVT::i8,
12765 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12766 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12767 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012768
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012769 return SDValue();
12770}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012771
Benjamin Kramer1396c402011-06-18 11:09:41 +000012772static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
12773 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012774 SDValue Op0 = N->getOperand(0);
12775 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
12776 // a 32-bit target where SSE doesn't support i64->FP operations.
12777 if (Op0.getOpcode() == ISD::LOAD) {
12778 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
12779 EVT VT = Ld->getValueType(0);
12780 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
12781 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
12782 !XTLI->getSubtarget()->is64Bit() &&
12783 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000012784 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
12785 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012786 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
12787 return FILDChain;
12788 }
12789 }
12790 return SDValue();
12791}
12792
Chris Lattner23a01992010-12-20 01:37:09 +000012793// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12794static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12795 X86TargetLowering::DAGCombinerInfo &DCI) {
12796 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12797 // the result is either zero or one (depending on the input carry bit).
12798 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12799 if (X86::isZeroNode(N->getOperand(0)) &&
12800 X86::isZeroNode(N->getOperand(1)) &&
12801 // We don't have a good way to replace an EFLAGS use, so only do this when
12802 // dead right now.
12803 SDValue(N, 1).use_empty()) {
12804 DebugLoc DL = N->getDebugLoc();
12805 EVT VT = N->getValueType(0);
12806 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12807 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12808 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12809 DAG.getConstant(X86::COND_B,MVT::i8),
12810 N->getOperand(2)),
12811 DAG.getConstant(1, VT));
12812 return DCI.CombineTo(N, Res1, CarryOut);
12813 }
12814
12815 return SDValue();
12816}
12817
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012818// fold (add Y, (sete X, 0)) -> adc 0, Y
12819// (add Y, (setne X, 0)) -> sbb -1, Y
12820// (sub (sete X, 0), Y) -> sbb 0, Y
12821// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012822static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012823 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012824
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012825 // Look through ZExts.
12826 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12827 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12828 return SDValue();
12829
12830 SDValue SetCC = Ext.getOperand(0);
12831 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12832 return SDValue();
12833
12834 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12835 if (CC != X86::COND_E && CC != X86::COND_NE)
12836 return SDValue();
12837
12838 SDValue Cmp = SetCC.getOperand(1);
12839 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012840 !X86::isZeroNode(Cmp.getOperand(1)) ||
12841 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012842 return SDValue();
12843
12844 SDValue CmpOp0 = Cmp.getOperand(0);
12845 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12846 DAG.getConstant(1, CmpOp0.getValueType()));
12847
12848 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12849 if (CC == X86::COND_NE)
12850 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12851 DL, OtherVal.getValueType(), OtherVal,
12852 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12853 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12854 DL, OtherVal.getValueType(), OtherVal,
12855 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12856}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012857
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012858static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
12859 SDValue Op0 = N->getOperand(0);
12860 SDValue Op1 = N->getOperand(1);
12861
12862 // X86 can't encode an immediate LHS of a sub. See if we can push the
12863 // negation into a preceding instruction.
12864 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
12865 uint64_t Op0C = C->getSExtValue();
12866
12867 // If the RHS of the sub is a XOR with one use and a constant, invert the
12868 // immediate. Then add one to the LHS of the sub so we can turn
12869 // X-Y -> X+~Y+1, saving one register.
12870 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
12871 isa<ConstantSDNode>(Op1.getOperand(1))) {
12872 uint64_t XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getSExtValue();
12873 EVT VT = Op0.getValueType();
12874 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
12875 Op1.getOperand(0),
12876 DAG.getConstant(~XorC, VT));
12877 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
12878 DAG.getConstant(Op0C+1, VT));
12879 }
12880 }
12881
12882 return OptimizeConditionalInDecrement(N, DAG);
12883}
12884
Dan Gohman475871a2008-07-27 21:46:04 +000012885SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012886 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012887 SelectionDAG &DAG = DCI.DAG;
12888 switch (N->getOpcode()) {
12889 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012890 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012891 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012892 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012893 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012894 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
12895 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012896 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012897 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012898 case ISD::SHL:
12899 case ISD::SRA:
12900 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012901 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000012902 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000012903 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012904 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000012905 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000012906 case X86ISD::FOR: return PerformFORCombine(N, DAG);
12907 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000012908 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012909 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000012910 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012911 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012912 case X86ISD::SHUFPS: // Handle all target specific shuffles
12913 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000012914 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012915 case X86ISD::PUNPCKHBW:
12916 case X86ISD::PUNPCKHWD:
12917 case X86ISD::PUNPCKHDQ:
12918 case X86ISD::PUNPCKHQDQ:
12919 case X86ISD::UNPCKHPS:
12920 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000012921 case X86ISD::VUNPCKHPSY:
12922 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012923 case X86ISD::PUNPCKLBW:
12924 case X86ISD::PUNPCKLWD:
12925 case X86ISD::PUNPCKLDQ:
12926 case X86ISD::PUNPCKLQDQ:
12927 case X86ISD::UNPCKLPS:
12928 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000012929 case X86ISD::VUNPCKLPSY:
12930 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012931 case X86ISD::MOVHLPS:
12932 case X86ISD::MOVLHPS:
12933 case X86ISD::PSHUFD:
12934 case X86ISD::PSHUFHW:
12935 case X86ISD::PSHUFLW:
12936 case X86ISD::MOVSS:
12937 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000012938 case X86ISD::VPERMILPS:
12939 case X86ISD::VPERMILPSY:
12940 case X86ISD::VPERMILPD:
12941 case X86ISD::VPERMILPDY:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012942 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012943 }
12944
Dan Gohman475871a2008-07-27 21:46:04 +000012945 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012946}
12947
Evan Chenge5b51ac2010-04-17 06:13:15 +000012948/// isTypeDesirableForOp - Return true if the target has native support for
12949/// the specified value type and it is 'desirable' to use the type for the
12950/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12951/// instruction encodings are longer and some i16 instructions are slow.
12952bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12953 if (!isTypeLegal(VT))
12954 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012955 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012956 return true;
12957
12958 switch (Opc) {
12959 default:
12960 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012961 case ISD::LOAD:
12962 case ISD::SIGN_EXTEND:
12963 case ISD::ZERO_EXTEND:
12964 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012965 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012966 case ISD::SRL:
12967 case ISD::SUB:
12968 case ISD::ADD:
12969 case ISD::MUL:
12970 case ISD::AND:
12971 case ISD::OR:
12972 case ISD::XOR:
12973 return false;
12974 }
12975}
12976
12977/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000012978/// beneficial for dag combiner to promote the specified node. If true, it
12979/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000012980bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012981 EVT VT = Op.getValueType();
12982 if (VT != MVT::i16)
12983 return false;
12984
Evan Cheng4c26e932010-04-19 19:29:22 +000012985 bool Promote = false;
12986 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012987 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000012988 default: break;
12989 case ISD::LOAD: {
12990 LoadSDNode *LD = cast<LoadSDNode>(Op);
12991 // If the non-extending load has a single use and it's not live out, then it
12992 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012993 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12994 Op.hasOneUse()*/) {
12995 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12996 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12997 // The only case where we'd want to promote LOAD (rather then it being
12998 // promoted as an operand is when it's only use is liveout.
12999 if (UI->getOpcode() != ISD::CopyToReg)
13000 return false;
13001 }
13002 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013003 Promote = true;
13004 break;
13005 }
13006 case ISD::SIGN_EXTEND:
13007 case ISD::ZERO_EXTEND:
13008 case ISD::ANY_EXTEND:
13009 Promote = true;
13010 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013011 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013012 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013013 SDValue N0 = Op.getOperand(0);
13014 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013015 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013016 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013017 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013018 break;
13019 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013020 case ISD::ADD:
13021 case ISD::MUL:
13022 case ISD::AND:
13023 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013024 case ISD::XOR:
13025 Commute = true;
13026 // fallthrough
13027 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013028 SDValue N0 = Op.getOperand(0);
13029 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000013030 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013031 return false;
13032 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000013033 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013034 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000013035 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013036 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013037 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013038 }
13039 }
13040
13041 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013042 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013043}
13044
Evan Cheng60c07e12006-07-05 22:17:51 +000013045//===----------------------------------------------------------------------===//
13046// X86 Inline Assembly Support
13047//===----------------------------------------------------------------------===//
13048
Chris Lattnerb8105652009-07-20 17:51:36 +000013049bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13050 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013051
13052 std::string AsmStr = IA->getAsmString();
13053
13054 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013055 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013056 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013057
13058 switch (AsmPieces.size()) {
13059 default: return false;
13060 case 1:
13061 AsmStr = AsmPieces[0];
13062 AsmPieces.clear();
13063 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13064
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013065 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013066 // we will turn this bswap into something that will be lowered to logical ops
13067 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13068 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013069 // bswap $0
13070 if (AsmPieces.size() == 2 &&
13071 (AsmPieces[0] == "bswap" ||
13072 AsmPieces[0] == "bswapq" ||
13073 AsmPieces[0] == "bswapl") &&
13074 (AsmPieces[1] == "$0" ||
13075 AsmPieces[1] == "${0:q}")) {
13076 // No need to check constraints, nothing other than the equivalent of
13077 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013078 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013079 if (!Ty || Ty->getBitWidth() % 16 != 0)
13080 return false;
13081 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013082 }
13083 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013084 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013085 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013086 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013087 AsmPieces[1] == "$$8," &&
13088 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013089 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13090 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013091 const std::string &ConstraintsStr = IA->getConstraintString();
13092 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013093 std::sort(AsmPieces.begin(), AsmPieces.end());
13094 if (AsmPieces.size() == 4 &&
13095 AsmPieces[0] == "~{cc}" &&
13096 AsmPieces[1] == "~{dirflag}" &&
13097 AsmPieces[2] == "~{flags}" &&
13098 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013099 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013100 if (!Ty || Ty->getBitWidth() % 16 != 0)
13101 return false;
13102 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013103 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013104 }
13105 break;
13106 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013107 if (CI->getType()->isIntegerTy(32) &&
13108 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13109 SmallVector<StringRef, 4> Words;
13110 SplitString(AsmPieces[0], Words, " \t,");
13111 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13112 Words[2] == "${0:w}") {
13113 Words.clear();
13114 SplitString(AsmPieces[1], Words, " \t,");
13115 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13116 Words[2] == "$0") {
13117 Words.clear();
13118 SplitString(AsmPieces[2], Words, " \t,");
13119 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13120 Words[2] == "${0:w}") {
13121 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013122 const std::string &ConstraintsStr = IA->getConstraintString();
13123 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013124 std::sort(AsmPieces.begin(), AsmPieces.end());
13125 if (AsmPieces.size() == 4 &&
13126 AsmPieces[0] == "~{cc}" &&
13127 AsmPieces[1] == "~{dirflag}" &&
13128 AsmPieces[2] == "~{flags}" &&
13129 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013130 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013131 if (!Ty || Ty->getBitWidth() % 16 != 0)
13132 return false;
13133 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013134 }
13135 }
13136 }
13137 }
13138 }
Evan Cheng55d42002011-01-08 01:24:27 +000013139
13140 if (CI->getType()->isIntegerTy(64)) {
13141 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13142 if (Constraints.size() >= 2 &&
13143 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13144 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13145 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13146 SmallVector<StringRef, 4> Words;
13147 SplitString(AsmPieces[0], Words, " \t");
13148 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013149 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013150 SplitString(AsmPieces[1], Words, " \t");
13151 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13152 Words.clear();
13153 SplitString(AsmPieces[2], Words, " \t,");
13154 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13155 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013156 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013157 if (!Ty || Ty->getBitWidth() % 16 != 0)
13158 return false;
13159 return IntrinsicLowering::LowerToByteSwap(CI);
13160 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013161 }
13162 }
13163 }
13164 }
13165 break;
13166 }
13167 return false;
13168}
13169
13170
13171
Chris Lattnerf4dff842006-07-11 02:54:03 +000013172/// getConstraintType - Given a constraint letter, return the type of
13173/// constraint it is for this target.
13174X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013175X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13176 if (Constraint.size() == 1) {
13177 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013178 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013179 case 'q':
13180 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013181 case 'f':
13182 case 't':
13183 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013184 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013185 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013186 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013187 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013188 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013189 case 'a':
13190 case 'b':
13191 case 'c':
13192 case 'd':
13193 case 'S':
13194 case 'D':
13195 case 'A':
13196 return C_Register;
13197 case 'I':
13198 case 'J':
13199 case 'K':
13200 case 'L':
13201 case 'M':
13202 case 'N':
13203 case 'G':
13204 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013205 case 'e':
13206 case 'Z':
13207 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013208 default:
13209 break;
13210 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013211 }
Chris Lattner4234f572007-03-25 02:14:49 +000013212 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013213}
13214
John Thompson44ab89e2010-10-29 17:29:13 +000013215/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013216/// This object must already have been set up with the operand type
13217/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013218TargetLowering::ConstraintWeight
13219 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013220 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013221 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013222 Value *CallOperandVal = info.CallOperandVal;
13223 // If we don't have a value, we can't do a match,
13224 // but allow it at the lowest weight.
13225 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013226 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013227 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013228 // Look at the constraint type.
13229 switch (*constraint) {
13230 default:
John Thompson44ab89e2010-10-29 17:29:13 +000013231 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13232 case 'R':
13233 case 'q':
13234 case 'Q':
13235 case 'a':
13236 case 'b':
13237 case 'c':
13238 case 'd':
13239 case 'S':
13240 case 'D':
13241 case 'A':
13242 if (CallOperandVal->getType()->isIntegerTy())
13243 weight = CW_SpecificReg;
13244 break;
13245 case 'f':
13246 case 't':
13247 case 'u':
13248 if (type->isFloatingPointTy())
13249 weight = CW_SpecificReg;
13250 break;
13251 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000013252 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000013253 weight = CW_SpecificReg;
13254 break;
13255 case 'x':
13256 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013257 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000013258 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013259 break;
13260 case 'I':
13261 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13262 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000013263 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013264 }
13265 break;
John Thompson44ab89e2010-10-29 17:29:13 +000013266 case 'J':
13267 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13268 if (C->getZExtValue() <= 63)
13269 weight = CW_Constant;
13270 }
13271 break;
13272 case 'K':
13273 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13274 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13275 weight = CW_Constant;
13276 }
13277 break;
13278 case 'L':
13279 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13280 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13281 weight = CW_Constant;
13282 }
13283 break;
13284 case 'M':
13285 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13286 if (C->getZExtValue() <= 3)
13287 weight = CW_Constant;
13288 }
13289 break;
13290 case 'N':
13291 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13292 if (C->getZExtValue() <= 0xff)
13293 weight = CW_Constant;
13294 }
13295 break;
13296 case 'G':
13297 case 'C':
13298 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13299 weight = CW_Constant;
13300 }
13301 break;
13302 case 'e':
13303 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13304 if ((C->getSExtValue() >= -0x80000000LL) &&
13305 (C->getSExtValue() <= 0x7fffffffLL))
13306 weight = CW_Constant;
13307 }
13308 break;
13309 case 'Z':
13310 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13311 if (C->getZExtValue() <= 0xffffffff)
13312 weight = CW_Constant;
13313 }
13314 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013315 }
13316 return weight;
13317}
13318
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013319/// LowerXConstraint - try to replace an X constraint, which matches anything,
13320/// with another that has more specific requirements based on the type of the
13321/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013322const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013323LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013324 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13325 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013326 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013327 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013328 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013329 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013330 return "x";
13331 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013332
Chris Lattner5e764232008-04-26 23:02:14 +000013333 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013334}
13335
Chris Lattner48884cd2007-08-25 00:47:38 +000013336/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13337/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013338void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013339 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013340 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013341 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013342 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013343
Eric Christopher100c8332011-06-02 23:16:42 +000013344 // Only support length 1 constraints for now.
13345 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013346
Eric Christopher100c8332011-06-02 23:16:42 +000013347 char ConstraintLetter = Constraint[0];
13348 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013349 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013350 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013351 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013352 if (C->getZExtValue() <= 31) {
13353 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013354 break;
13355 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013356 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013357 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013358 case 'J':
13359 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013360 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013361 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13362 break;
13363 }
13364 }
13365 return;
13366 case 'K':
13367 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013368 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013369 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13370 break;
13371 }
13372 }
13373 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013374 case 'N':
13375 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013376 if (C->getZExtValue() <= 255) {
13377 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013378 break;
13379 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013380 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013381 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013382 case 'e': {
13383 // 32-bit signed value
13384 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013385 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13386 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013387 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013388 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013389 break;
13390 }
13391 // FIXME gcc accepts some relocatable values here too, but only in certain
13392 // memory models; it's complicated.
13393 }
13394 return;
13395 }
13396 case 'Z': {
13397 // 32-bit unsigned value
13398 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013399 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13400 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013401 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13402 break;
13403 }
13404 }
13405 // FIXME gcc accepts some relocatable values here too, but only in certain
13406 // memory models; it's complicated.
13407 return;
13408 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013409 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013410 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013411 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013412 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013413 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013414 break;
13415 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013416
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013417 // In any sort of PIC mode addresses need to be computed at runtime by
13418 // adding in a register or some sort of table lookup. These can't
13419 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013420 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013421 return;
13422
Chris Lattnerdc43a882007-05-03 16:52:29 +000013423 // If we are in non-pic codegen mode, we allow the address of a global (with
13424 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013425 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013426 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013427
Chris Lattner49921962009-05-08 18:23:14 +000013428 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13429 while (1) {
13430 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13431 Offset += GA->getOffset();
13432 break;
13433 } else if (Op.getOpcode() == ISD::ADD) {
13434 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13435 Offset += C->getZExtValue();
13436 Op = Op.getOperand(0);
13437 continue;
13438 }
13439 } else if (Op.getOpcode() == ISD::SUB) {
13440 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13441 Offset += -C->getZExtValue();
13442 Op = Op.getOperand(0);
13443 continue;
13444 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013445 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013446
Chris Lattner49921962009-05-08 18:23:14 +000013447 // Otherwise, this isn't something we can handle, reject it.
13448 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013449 }
Eric Christopherfd179292009-08-27 18:07:15 +000013450
Dan Gohman46510a72010-04-15 01:51:59 +000013451 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013452 // If we require an extra load to get this address, as in PIC mode, we
13453 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013454 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13455 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013456 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013457
Devang Patel0d881da2010-07-06 22:08:15 +000013458 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13459 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013460 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013461 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013462 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013463
Gabor Greifba36cb52008-08-28 21:40:38 +000013464 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013465 Ops.push_back(Result);
13466 return;
13467 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013468 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013469}
13470
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013471std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013472X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013473 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013474 // First, see if this is a constraint that directly corresponds to an LLVM
13475 // register class.
13476 if (Constraint.size() == 1) {
13477 // GCC Constraint Letters
13478 switch (Constraint[0]) {
13479 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013480 // TODO: Slight differences here in allocation order and leaving
13481 // RIP in the class. Do they matter any more here than they do
13482 // in the normal allocation?
13483 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13484 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013485 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013486 return std::make_pair(0U, X86::GR32RegisterClass);
13487 else if (VT == MVT::i16)
13488 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013489 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013490 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013491 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013492 return std::make_pair(0U, X86::GR64RegisterClass);
13493 break;
13494 }
13495 // 32-bit fallthrough
13496 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013497 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013498 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13499 else if (VT == MVT::i16)
13500 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013501 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013502 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13503 else if (VT == MVT::i64)
13504 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13505 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013506 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013507 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013508 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013509 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013510 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013511 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013512 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013513 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013514 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013515 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013516 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013517 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13518 if (VT == MVT::i16)
13519 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13520 if (VT == MVT::i32 || !Subtarget->is64Bit())
13521 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13522 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013523 case 'f': // FP Stack registers.
13524 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13525 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013526 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013527 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013528 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013529 return std::make_pair(0U, X86::RFP64RegisterClass);
13530 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013531 case 'y': // MMX_REGS if MMX allowed.
13532 if (!Subtarget->hasMMX()) break;
13533 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013534 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013535 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013536 // FALL THROUGH.
13537 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013538 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013539
Owen Anderson825b72b2009-08-11 20:47:22 +000013540 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013541 default: break;
13542 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013543 case MVT::f32:
13544 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013545 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013546 case MVT::f64:
13547 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013548 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013549 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013550 case MVT::v16i8:
13551 case MVT::v8i16:
13552 case MVT::v4i32:
13553 case MVT::v2i64:
13554 case MVT::v4f32:
13555 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013556 return std::make_pair(0U, X86::VR128RegisterClass);
13557 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013558 break;
13559 }
13560 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013561
Chris Lattnerf76d1802006-07-31 23:26:50 +000013562 // Use the default implementation in TargetLowering to convert the register
13563 // constraint into a member of a register class.
13564 std::pair<unsigned, const TargetRegisterClass*> Res;
13565 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013566
13567 // Not found as a standard register?
13568 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013569 // Map st(0) -> st(7) -> ST0
13570 if (Constraint.size() == 7 && Constraint[0] == '{' &&
13571 tolower(Constraint[1]) == 's' &&
13572 tolower(Constraint[2]) == 't' &&
13573 Constraint[3] == '(' &&
13574 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13575 Constraint[5] == ')' &&
13576 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000013577
Chris Lattner56d77c72009-09-13 22:41:48 +000013578 Res.first = X86::ST0+Constraint[4]-'0';
13579 Res.second = X86::RFP80RegisterClass;
13580 return Res;
13581 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013582
Chris Lattner56d77c72009-09-13 22:41:48 +000013583 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013584 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000013585 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000013586 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013587 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000013588 }
Chris Lattner56d77c72009-09-13 22:41:48 +000013589
13590 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013591 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013592 Res.first = X86::EFLAGS;
13593 Res.second = X86::CCRRegisterClass;
13594 return Res;
13595 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013596
Dale Johannesen330169f2008-11-13 21:52:36 +000013597 // 'A' means EAX + EDX.
13598 if (Constraint == "A") {
13599 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000013600 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013601 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000013602 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000013603 return Res;
13604 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013605
Chris Lattnerf76d1802006-07-31 23:26:50 +000013606 // Otherwise, check to see if this is a register class of the wrong value
13607 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
13608 // turn into {ax},{dx}.
13609 if (Res.second->hasType(VT))
13610 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013611
Chris Lattnerf76d1802006-07-31 23:26:50 +000013612 // All of the single-register GCC register classes map their values onto
13613 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
13614 // really want an 8-bit or 32-bit register, map to the appropriate register
13615 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000013616 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013617 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013618 unsigned DestReg = 0;
13619 switch (Res.first) {
13620 default: break;
13621 case X86::AX: DestReg = X86::AL; break;
13622 case X86::DX: DestReg = X86::DL; break;
13623 case X86::CX: DestReg = X86::CL; break;
13624 case X86::BX: DestReg = X86::BL; break;
13625 }
13626 if (DestReg) {
13627 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013628 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013629 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013630 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013631 unsigned DestReg = 0;
13632 switch (Res.first) {
13633 default: break;
13634 case X86::AX: DestReg = X86::EAX; break;
13635 case X86::DX: DestReg = X86::EDX; break;
13636 case X86::CX: DestReg = X86::ECX; break;
13637 case X86::BX: DestReg = X86::EBX; break;
13638 case X86::SI: DestReg = X86::ESI; break;
13639 case X86::DI: DestReg = X86::EDI; break;
13640 case X86::BP: DestReg = X86::EBP; break;
13641 case X86::SP: DestReg = X86::ESP; break;
13642 }
13643 if (DestReg) {
13644 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013645 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013646 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013647 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013648 unsigned DestReg = 0;
13649 switch (Res.first) {
13650 default: break;
13651 case X86::AX: DestReg = X86::RAX; break;
13652 case X86::DX: DestReg = X86::RDX; break;
13653 case X86::CX: DestReg = X86::RCX; break;
13654 case X86::BX: DestReg = X86::RBX; break;
13655 case X86::SI: DestReg = X86::RSI; break;
13656 case X86::DI: DestReg = X86::RDI; break;
13657 case X86::BP: DestReg = X86::RBP; break;
13658 case X86::SP: DestReg = X86::RSP; break;
13659 }
13660 if (DestReg) {
13661 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013662 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013663 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000013664 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000013665 } else if (Res.second == X86::FR32RegisterClass ||
13666 Res.second == X86::FR64RegisterClass ||
13667 Res.second == X86::VR128RegisterClass) {
13668 // Handle references to XMM physical registers that got mapped into the
13669 // wrong class. This can happen with constraints like {xmm0} where the
13670 // target independent register mapper will just pick the first match it can
13671 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000013672 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013673 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000013674 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013675 Res.second = X86::FR64RegisterClass;
13676 else if (X86::VR128RegisterClass->hasType(VT))
13677 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000013678 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013679
Chris Lattnerf76d1802006-07-31 23:26:50 +000013680 return Res;
13681}