blob: d2b7690489380289230cdc4b6b1a6b6558971fa8 [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
Craig Toppera5347802011-08-23 04:36:33 +0000992 setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
993 setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +0000994 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
995 setOperationAction(ISD::VSETCC, MVT::v4i64, Custom);
996
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +0000997 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
998 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
999 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1000
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001001 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001002 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001003 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1004 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1005 EVT VT = SVT;
1006
1007 // Extract subvector is special because the value type
1008 // (result) is 128-bit but the source is 256-bit wide.
1009 if (VT.is128BitVector())
1010 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1011
1012 // Do not attempt to custom lower other non-256-bit vectors
1013 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001014 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001015
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001016 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1017 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1018 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1019 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001020 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001021 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001022 }
1023
David Greene54d8eba2011-01-27 22:38:56 +00001024 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001025 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1026 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1027 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001028
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001029 // Do not attempt to promote non-256-bit vectors
1030 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001031 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001032
1033 setOperationAction(ISD::AND, SVT, Promote);
1034 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1035 setOperationAction(ISD::OR, SVT, Promote);
1036 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1037 setOperationAction(ISD::XOR, SVT, Promote);
1038 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1039 setOperationAction(ISD::LOAD, SVT, Promote);
1040 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1041 setOperationAction(ISD::SELECT, SVT, Promote);
1042 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001043 }
David Greene9b9838d2009-06-29 16:47:10 +00001044 }
1045
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001046 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1047 // of this type with custom code.
1048 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1049 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1050 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1051 }
1052
Evan Cheng6be2c582006-04-05 23:38:46 +00001053 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001054 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001055
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001056
Eli Friedman962f5492010-06-02 19:35:46 +00001057 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1058 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001059 //
Eli Friedman962f5492010-06-02 19:35:46 +00001060 // FIXME: We really should do custom legalization for addition and
1061 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1062 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001063 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1064 // Add/Sub/Mul with overflow operations are custom lowered.
1065 MVT VT = IntVTs[i];
1066 setOperationAction(ISD::SADDO, VT, Custom);
1067 setOperationAction(ISD::UADDO, VT, Custom);
1068 setOperationAction(ISD::SSUBO, VT, Custom);
1069 setOperationAction(ISD::USUBO, VT, Custom);
1070 setOperationAction(ISD::SMULO, VT, Custom);
1071 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001072 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001073
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001074 // There are no 8-bit 3-address imul/mul instructions
1075 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1076 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001077
Evan Chengd54f2d52009-03-31 19:38:51 +00001078 if (!Subtarget->is64Bit()) {
1079 // These libcalls are not available in 32-bit.
1080 setLibcallName(RTLIB::SHL_I128, 0);
1081 setLibcallName(RTLIB::SRL_I128, 0);
1082 setLibcallName(RTLIB::SRA_I128, 0);
1083 }
1084
Evan Cheng206ee9d2006-07-07 08:33:52 +00001085 // We have target-specific dag combine patterns for the following nodes:
1086 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001087 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001088 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001089 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001090 setTargetDAGCombine(ISD::SHL);
1091 setTargetDAGCombine(ISD::SRA);
1092 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001093 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001094 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001095 setTargetDAGCombine(ISD::ADD);
1096 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001097 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001098 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001099 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001100 if (Subtarget->is64Bit())
1101 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001102
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001103 computeRegisterProperties();
1104
Evan Cheng05219282011-01-06 06:52:41 +00001105 // On Darwin, -Os means optimize for size without hurting performance,
1106 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001107 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001108 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001109 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001110 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1111 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1112 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001113 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001114 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001115
1116 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001117}
1118
Scott Michel5b8f82e2008-03-10 15:42:14 +00001119
Owen Anderson825b72b2009-08-11 20:47:22 +00001120MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1121 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001122}
1123
1124
Evan Cheng29286502008-01-23 23:17:41 +00001125/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1126/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001127static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001128 if (MaxAlign == 16)
1129 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001130 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001131 if (VTy->getBitWidth() == 128)
1132 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001133 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001134 unsigned EltAlign = 0;
1135 getMaxByValAlign(ATy->getElementType(), EltAlign);
1136 if (EltAlign > MaxAlign)
1137 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001138 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001139 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1140 unsigned EltAlign = 0;
1141 getMaxByValAlign(STy->getElementType(i), EltAlign);
1142 if (EltAlign > MaxAlign)
1143 MaxAlign = EltAlign;
1144 if (MaxAlign == 16)
1145 break;
1146 }
1147 }
1148 return;
1149}
1150
1151/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1152/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001153/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1154/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001155unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001156 if (Subtarget->is64Bit()) {
1157 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001158 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001159 if (TyAlign > 8)
1160 return TyAlign;
1161 return 8;
1162 }
1163
Evan Cheng29286502008-01-23 23:17:41 +00001164 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001165 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001166 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001167 return Align;
1168}
Chris Lattner2b02a442007-02-25 08:29:00 +00001169
Evan Chengf0df0312008-05-15 08:39:06 +00001170/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001171/// and store operations as a result of memset, memcpy, and memmove
1172/// lowering. If DstAlign is zero that means it's safe to destination
1173/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1174/// means there isn't a need to check it against alignment requirement,
1175/// probably because the source does not need to be loaded. If
1176/// 'NonScalarIntSafe' is true, that means it's safe to return a
1177/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1178/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1179/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001180/// It returns EVT::Other if the type should be determined using generic
1181/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001182EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001183X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1184 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001185 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001186 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001187 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001188 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1189 // linux. This is because the stack realignment code can't handle certain
1190 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001191 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001192 if (NonScalarIntSafe &&
1193 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001194 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001195 (Subtarget->isUnalignedMemAccessFast() ||
1196 ((DstAlign == 0 || DstAlign >= 16) &&
1197 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001198 Subtarget->getStackAlignment() >= 16) {
1199 if (Subtarget->hasSSE2())
1200 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001201 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001202 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001203 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001204 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001205 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001206 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001207 // Do not use f64 to lower memcpy if source is string constant. It's
1208 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001209 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001210 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001211 }
Evan Chengf0df0312008-05-15 08:39:06 +00001212 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001213 return MVT::i64;
1214 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001215}
1216
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001217/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1218/// current function. The returned value is a member of the
1219/// MachineJumpTableInfo::JTEntryKind enum.
1220unsigned X86TargetLowering::getJumpTableEncoding() const {
1221 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1222 // symbol.
1223 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1224 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001225 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001226
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001227 // Otherwise, use the normal jump table encoding heuristics.
1228 return TargetLowering::getJumpTableEncoding();
1229}
1230
Chris Lattnerc64daab2010-01-26 05:02:42 +00001231const MCExpr *
1232X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1233 const MachineBasicBlock *MBB,
1234 unsigned uid,MCContext &Ctx) const{
1235 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1236 Subtarget->isPICStyleGOT());
1237 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1238 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001239 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1240 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001241}
1242
Evan Chengcc415862007-11-09 01:32:10 +00001243/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1244/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001245SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001246 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001247 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001248 // This doesn't have DebugLoc associated with it, but is not really the
1249 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001250 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001251 return Table;
1252}
1253
Chris Lattner589c6f62010-01-26 06:28:43 +00001254/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1255/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1256/// MCExpr.
1257const MCExpr *X86TargetLowering::
1258getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1259 MCContext &Ctx) const {
1260 // X86-64 uses RIP relative addressing based on the jump table label.
1261 if (Subtarget->isPICStyleRIPRel())
1262 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1263
1264 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001265 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001266}
1267
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001268// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001269std::pair<const TargetRegisterClass*, uint8_t>
1270X86TargetLowering::findRepresentativeClass(EVT VT) const{
1271 const TargetRegisterClass *RRC = 0;
1272 uint8_t Cost = 1;
1273 switch (VT.getSimpleVT().SimpleTy) {
1274 default:
1275 return TargetLowering::findRepresentativeClass(VT);
1276 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1277 RRC = (Subtarget->is64Bit()
1278 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1279 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001280 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001281 RRC = X86::VR64RegisterClass;
1282 break;
1283 case MVT::f32: case MVT::f64:
1284 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1285 case MVT::v4f32: case MVT::v2f64:
1286 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1287 case MVT::v4f64:
1288 RRC = X86::VR128RegisterClass;
1289 break;
1290 }
1291 return std::make_pair(RRC, Cost);
1292}
1293
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001294bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1295 unsigned &Offset) const {
1296 if (!Subtarget->isTargetLinux())
1297 return false;
1298
1299 if (Subtarget->is64Bit()) {
1300 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1301 Offset = 0x28;
1302 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1303 AddressSpace = 256;
1304 else
1305 AddressSpace = 257;
1306 } else {
1307 // %gs:0x14 on i386
1308 Offset = 0x14;
1309 AddressSpace = 256;
1310 }
1311 return true;
1312}
1313
1314
Chris Lattner2b02a442007-02-25 08:29:00 +00001315//===----------------------------------------------------------------------===//
1316// Return Value Calling Convention Implementation
1317//===----------------------------------------------------------------------===//
1318
Chris Lattner59ed56b2007-02-28 04:55:35 +00001319#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001320
Michael J. Spencerec38de22010-10-10 22:04:20 +00001321bool
Eric Christopher471e4222011-06-08 23:55:35 +00001322X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1323 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001324 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001325 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001326 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001327 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001328 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001329 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001330}
1331
Dan Gohman98ca4f22009-08-05 01:29:28 +00001332SDValue
1333X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001334 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001335 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001336 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001337 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001338 MachineFunction &MF = DAG.getMachineFunction();
1339 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001340
Chris Lattner9774c912007-02-27 05:28:59 +00001341 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001342 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001343 RVLocs, *DAG.getContext());
1344 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001345
Evan Chengdcea1632010-02-04 02:40:39 +00001346 // Add the regs to the liveout set for the function.
1347 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1348 for (unsigned i = 0; i != RVLocs.size(); ++i)
1349 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1350 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001351
Dan Gohman475871a2008-07-27 21:46:04 +00001352 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001353
Dan Gohman475871a2008-07-27 21:46:04 +00001354 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001355 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1356 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001357 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1358 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001359
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001360 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001361 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1362 CCValAssign &VA = RVLocs[i];
1363 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001364 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001365 EVT ValVT = ValToCopy.getValueType();
1366
Dale Johannesenc4510512010-09-24 19:05:48 +00001367 // If this is x86-64, and we disabled SSE, we can't return FP values,
1368 // or SSE or MMX vectors.
1369 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1370 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001371 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001372 report_fatal_error("SSE register return with SSE disabled");
1373 }
1374 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1375 // llvm-gcc has never done it right and no one has noticed, so this
1376 // should be OK for now.
1377 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001378 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001379 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001380
Chris Lattner447ff682008-03-11 03:23:40 +00001381 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1382 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001383 if (VA.getLocReg() == X86::ST0 ||
1384 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001385 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1386 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001387 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001388 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001389 RetOps.push_back(ValToCopy);
1390 // Don't emit a copytoreg.
1391 continue;
1392 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001393
Evan Cheng242b38b2009-02-23 09:03:22 +00001394 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1395 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001396 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001397 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001398 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001399 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001400 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1401 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001402 // If we don't have SSE2 available, convert to v4f32 so the generated
1403 // register is legal.
1404 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001405 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001406 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001407 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001408 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001409
Dale Johannesendd64c412009-02-04 00:33:20 +00001410 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001411 Flag = Chain.getValue(1);
1412 }
Dan Gohman61a92132008-04-21 23:59:07 +00001413
1414 // The x86-64 ABI for returning structs by value requires that we copy
1415 // the sret argument into %rax for the return. We saved the argument into
1416 // a virtual register in the entry block, so now we copy the value out
1417 // and into %rax.
1418 if (Subtarget->is64Bit() &&
1419 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1420 MachineFunction &MF = DAG.getMachineFunction();
1421 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1422 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001423 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001424 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001425 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001426
Dale Johannesendd64c412009-02-04 00:33:20 +00001427 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001428 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001429
1430 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001431 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001432 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001433
Chris Lattner447ff682008-03-11 03:23:40 +00001434 RetOps[0] = Chain; // Update chain.
1435
1436 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001437 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001438 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001439
1440 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001441 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001442}
1443
Evan Cheng3d2125c2010-11-30 23:55:39 +00001444bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1445 if (N->getNumValues() != 1)
1446 return false;
1447 if (!N->hasNUsesOfValue(1, 0))
1448 return false;
1449
1450 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001451 if (Copy->getOpcode() != ISD::CopyToReg &&
1452 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001453 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001454
1455 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001456 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001457 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001458 if (UI->getOpcode() != X86ISD::RET_FLAG)
1459 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001460 HasRet = true;
1461 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001462
Evan Cheng1bf891a2010-12-01 22:59:46 +00001463 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001464}
1465
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001466EVT
1467X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001468 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001469 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001470 // TODO: Is this also valid on 32-bit?
1471 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001472 ReturnMVT = MVT::i8;
1473 else
1474 ReturnMVT = MVT::i32;
1475
1476 EVT MinVT = getRegisterType(Context, ReturnMVT);
1477 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001478}
1479
Dan Gohman98ca4f22009-08-05 01:29:28 +00001480/// LowerCallResult - Lower the result values of a call into the
1481/// appropriate copies out of appropriate physical registers.
1482///
1483SDValue
1484X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001485 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001486 const SmallVectorImpl<ISD::InputArg> &Ins,
1487 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001488 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001489
Chris Lattnere32bbf62007-02-28 07:09:55 +00001490 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001491 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001492 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001493 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1494 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001495 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001496
Chris Lattner3085e152007-02-25 08:59:22 +00001497 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001498 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001499 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001500 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001501
Torok Edwin3f142c32009-02-01 18:15:56 +00001502 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001503 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001504 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001505 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001506 }
1507
Evan Cheng79fb3b42009-02-20 20:43:02 +00001508 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001509
1510 // If this is a call to a function that returns an fp value on the floating
1511 // point stack, we must guarantee the the value is popped from the stack, so
1512 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001513 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001514 // instead.
1515 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1516 // If we prefer to use the value in xmm registers, copy it out as f80 and
1517 // use a truncate to move it from fp stack reg to xmm reg.
1518 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001519 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001520 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1521 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001522 Val = Chain.getValue(0);
1523
1524 // Round the f80 to the right size, which also moves it to the appropriate
1525 // xmm register.
1526 if (CopyVT != VA.getValVT())
1527 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1528 // This truncation won't change the value.
1529 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001530 } else {
1531 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1532 CopyVT, InFlag).getValue(1);
1533 Val = Chain.getValue(0);
1534 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001535 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001536 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001537 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001538
Dan Gohman98ca4f22009-08-05 01:29:28 +00001539 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001540}
1541
1542
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001543//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001544// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001545//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001546// StdCall calling convention seems to be standard for many Windows' API
1547// routines and around. It differs from C calling convention just a little:
1548// callee should clean up the stack, not caller. Symbols should be also
1549// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001550// For info on fast calling convention see Fast Calling Convention (tail call)
1551// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001552
Dan Gohman98ca4f22009-08-05 01:29:28 +00001553/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001554/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001555static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1556 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001557 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001558
Dan Gohman98ca4f22009-08-05 01:29:28 +00001559 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001560}
1561
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001562/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001563/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001564static bool
1565ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1566 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001567 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001568
Dan Gohman98ca4f22009-08-05 01:29:28 +00001569 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001570}
1571
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001572/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1573/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001574/// the specific parameter attribute. The copy will be passed as a byval
1575/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001576static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001577CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001578 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1579 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001580 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001581
Dale Johannesendd64c412009-02-04 00:33:20 +00001582 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001583 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001584 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001585}
1586
Chris Lattner29689432010-03-11 00:22:57 +00001587/// IsTailCallConvention - Return true if the calling convention is one that
1588/// supports tail call optimization.
1589static bool IsTailCallConvention(CallingConv::ID CC) {
1590 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1591}
1592
Evan Cheng485fafc2011-03-21 01:19:09 +00001593bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1594 if (!CI->isTailCall())
1595 return false;
1596
1597 CallSite CS(CI);
1598 CallingConv::ID CalleeCC = CS.getCallingConv();
1599 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1600 return false;
1601
1602 return true;
1603}
1604
Evan Cheng0c439eb2010-01-27 00:07:07 +00001605/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1606/// a tailcall target by changing its ABI.
1607static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001608 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001609}
1610
Dan Gohman98ca4f22009-08-05 01:29:28 +00001611SDValue
1612X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001613 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001614 const SmallVectorImpl<ISD::InputArg> &Ins,
1615 DebugLoc dl, SelectionDAG &DAG,
1616 const CCValAssign &VA,
1617 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001618 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001619 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001620 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001621 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001622 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001623 EVT ValVT;
1624
1625 // If value is passed by pointer we have address passed instead of the value
1626 // itself.
1627 if (VA.getLocInfo() == CCValAssign::Indirect)
1628 ValVT = VA.getLocVT();
1629 else
1630 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001631
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001632 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001633 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001634 // In case of tail call optimization mark all arguments mutable. Since they
1635 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001636 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001637 unsigned Bytes = Flags.getByValSize();
1638 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1639 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001640 return DAG.getFrameIndex(FI, getPointerTy());
1641 } else {
1642 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001643 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001644 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1645 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001646 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001647 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001648 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001649}
1650
Dan Gohman475871a2008-07-27 21:46:04 +00001651SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001652X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001653 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001654 bool isVarArg,
1655 const SmallVectorImpl<ISD::InputArg> &Ins,
1656 DebugLoc dl,
1657 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001658 SmallVectorImpl<SDValue> &InVals)
1659 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001660 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001661 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001662
Gordon Henriksen86737662008-01-05 16:56:59 +00001663 const Function* Fn = MF.getFunction();
1664 if (Fn->hasExternalLinkage() &&
1665 Subtarget->isTargetCygMing() &&
1666 Fn->getName() == "main")
1667 FuncInfo->setForceFramePointer(true);
1668
Evan Cheng1bc78042006-04-26 01:20:17 +00001669 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001670 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001671 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001672
Chris Lattner29689432010-03-11 00:22:57 +00001673 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1674 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001675
Chris Lattner638402b2007-02-28 07:00:42 +00001676 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001677 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001678 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001679 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001680
1681 // Allocate shadow area for Win64
1682 if (IsWin64) {
1683 CCInfo.AllocateStack(32, 8);
1684 }
1685
Duncan Sands45907662010-10-31 13:21:44 +00001686 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001687
Chris Lattnerf39f7712007-02-28 05:46:49 +00001688 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001689 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001690 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1691 CCValAssign &VA = ArgLocs[i];
1692 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1693 // places.
1694 assert(VA.getValNo() != LastVal &&
1695 "Don't support value assigned to multiple locs yet");
1696 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001697
Chris Lattnerf39f7712007-02-28 05:46:49 +00001698 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001699 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001700 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001701 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001702 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001703 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001704 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001705 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001706 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001707 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001708 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001709 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1710 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001711 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001712 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001713 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001714 RC = X86::VR64RegisterClass;
1715 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001716 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001717
Devang Patel68e6bee2011-02-21 23:21:26 +00001718 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001719 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001720
Chris Lattnerf39f7712007-02-28 05:46:49 +00001721 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1722 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1723 // right size.
1724 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001725 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001726 DAG.getValueType(VA.getValVT()));
1727 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001728 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001729 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001730 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001731 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001732
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001733 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001734 // Handle MMX values passed in XMM regs.
1735 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001736 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1737 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001738 } else
1739 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001740 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001741 } else {
1742 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001743 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001744 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001745
1746 // If value is passed via pointer - do a load.
1747 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001748 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1749 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001750
Dan Gohman98ca4f22009-08-05 01:29:28 +00001751 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001752 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001753
Dan Gohman61a92132008-04-21 23:59:07 +00001754 // The x86-64 ABI for returning structs by value requires that we copy
1755 // the sret argument into %rax for the return. Save the argument into
1756 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001757 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001758 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1759 unsigned Reg = FuncInfo->getSRetReturnReg();
1760 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001761 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001762 FuncInfo->setSRetReturnReg(Reg);
1763 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001764 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001765 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001766 }
1767
Chris Lattnerf39f7712007-02-28 05:46:49 +00001768 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001769 // Align stack specially for tail calls.
1770 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001771 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001772
Evan Cheng1bc78042006-04-26 01:20:17 +00001773 // If the function takes variable number of arguments, make a frame index for
1774 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001775 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001776 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1777 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001778 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001779 }
1780 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001781 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1782
1783 // FIXME: We should really autogenerate these arrays
1784 static const unsigned GPR64ArgRegsWin64[] = {
1785 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001786 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001787 static const unsigned GPR64ArgRegs64Bit[] = {
1788 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1789 };
1790 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001791 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1792 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1793 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001794 const unsigned *GPR64ArgRegs;
1795 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001796
1797 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001798 // The XMM registers which might contain var arg parameters are shadowed
1799 // in their paired GPR. So we only need to save the GPR to their home
1800 // slots.
1801 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001802 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001803 } else {
1804 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1805 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001806
1807 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001808 }
1809 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1810 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001811
Devang Patel578efa92009-06-05 21:57:13 +00001812 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001813 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001814 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001815 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001816 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001817 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001818 // Kernel mode asks for SSE to be disabled, so don't push them
1819 // on the stack.
1820 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001821
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001822 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001823 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001824 // Get to the caller-allocated home save location. Add 8 to account
1825 // for the return address.
1826 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001827 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001828 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001829 // Fixup to set vararg frame on shadow area (4 x i64).
1830 if (NumIntRegs < 4)
1831 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001832 } else {
1833 // For X86-64, if there are vararg parameters that are passed via
1834 // registers, then we must store them to their spots on the stack so they
1835 // may be loaded by deferencing the result of va_next.
1836 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1837 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1838 FuncInfo->setRegSaveFrameIndex(
1839 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001840 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001841 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001842
Gordon Henriksen86737662008-01-05 16:56:59 +00001843 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001844 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001845 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1846 getPointerTy());
1847 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001848 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001849 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1850 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001851 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001852 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001853 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001854 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001855 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001856 MachinePointerInfo::getFixedStack(
1857 FuncInfo->getRegSaveFrameIndex(), Offset),
1858 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001859 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001860 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001861 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001862
Dan Gohmanface41a2009-08-16 21:24:25 +00001863 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1864 // Now store the XMM (fp + vector) parameter registers.
1865 SmallVector<SDValue, 11> SaveXMMOps;
1866 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001867
Devang Patel68e6bee2011-02-21 23:21:26 +00001868 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001869 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1870 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001871
Dan Gohman1e93df62010-04-17 14:41:14 +00001872 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1873 FuncInfo->getRegSaveFrameIndex()));
1874 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1875 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001876
Dan Gohmanface41a2009-08-16 21:24:25 +00001877 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001878 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001879 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001880 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1881 SaveXMMOps.push_back(Val);
1882 }
1883 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1884 MVT::Other,
1885 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001886 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001887
1888 if (!MemOps.empty())
1889 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1890 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001891 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001892 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001893
Gordon Henriksen86737662008-01-05 16:56:59 +00001894 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001895 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001896 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001897 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001898 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001899 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001900 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001901 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001902 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001903
Gordon Henriksen86737662008-01-05 16:56:59 +00001904 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001905 // RegSaveFrameIndex is X86-64 only.
1906 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001907 if (CallConv == CallingConv::X86_FastCall ||
1908 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001909 // fastcc functions can't have varargs.
1910 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001911 }
Evan Cheng25caf632006-05-23 21:06:34 +00001912
Dan Gohman98ca4f22009-08-05 01:29:28 +00001913 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001914}
1915
Dan Gohman475871a2008-07-27 21:46:04 +00001916SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001917X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1918 SDValue StackPtr, SDValue Arg,
1919 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001920 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001921 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001922 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001923 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001924 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001925 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001926 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001927
1928 return DAG.getStore(Chain, dl, Arg, PtrOff,
1929 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001930 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001931}
1932
Bill Wendling64e87322009-01-16 19:25:27 +00001933/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001934/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001935SDValue
1936X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001937 SDValue &OutRetAddr, SDValue Chain,
1938 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001939 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001940 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001941 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001942 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001943
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001944 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001945 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1946 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001947 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001948}
1949
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001950/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001951/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001952static SDValue
1953EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001954 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001955 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001956 // Store the return address to the appropriate stack slot.
1957 if (!FPDiff) return Chain;
1958 // Calculate the new stack slot for the return address.
1959 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001960 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001961 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001962 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001963 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001964 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001965 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001966 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001967 return Chain;
1968}
1969
Dan Gohman98ca4f22009-08-05 01:29:28 +00001970SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001971X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001972 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001973 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001974 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001975 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001976 const SmallVectorImpl<ISD::InputArg> &Ins,
1977 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001978 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001979 MachineFunction &MF = DAG.getMachineFunction();
1980 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001981 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001982 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001983 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001984
Evan Cheng5f941932010-02-05 02:21:12 +00001985 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001986 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001987 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1988 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001989 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001990
1991 // Sibcalls are automatically detected tailcalls which do not require
1992 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001993 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001994 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001995
1996 if (isTailCall)
1997 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001998 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001999
Chris Lattner29689432010-03-11 00:22:57 +00002000 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2001 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002002
Chris Lattner638402b2007-02-28 07:00:42 +00002003 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002004 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002005 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002006 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002007
2008 // Allocate shadow area for Win64
2009 if (IsWin64) {
2010 CCInfo.AllocateStack(32, 8);
2011 }
2012
Duncan Sands45907662010-10-31 13:21:44 +00002013 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002014
Chris Lattner423c5f42007-02-28 05:31:48 +00002015 // Get a count of how many bytes are to be pushed on the stack.
2016 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002017 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002018 // This is a sibcall. The memory operands are available in caller's
2019 // own caller's stack.
2020 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002021 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002022 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002023
Gordon Henriksen86737662008-01-05 16:56:59 +00002024 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002025 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002026 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002027 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002028 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2029 FPDiff = NumBytesCallerPushed - NumBytes;
2030
2031 // Set the delta of movement of the returnaddr stackslot.
2032 // But only set if delta is greater than previous delta.
2033 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2034 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2035 }
2036
Evan Chengf22f9b32010-02-06 03:28:46 +00002037 if (!IsSibcall)
2038 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002039
Dan Gohman475871a2008-07-27 21:46:04 +00002040 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002041 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002042 if (isTailCall && FPDiff)
2043 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2044 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002045
Dan Gohman475871a2008-07-27 21:46:04 +00002046 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2047 SmallVector<SDValue, 8> MemOpChains;
2048 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002049
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002050 // Walk the register/memloc assignments, inserting copies/loads. In the case
2051 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002052 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2053 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002054 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002055 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002056 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002057 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002058
Chris Lattner423c5f42007-02-28 05:31:48 +00002059 // Promote the value if needed.
2060 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002061 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002062 case CCValAssign::Full: break;
2063 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002064 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002065 break;
2066 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002067 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002068 break;
2069 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002070 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2071 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002072 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002073 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2074 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002075 } else
2076 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2077 break;
2078 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002079 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002080 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002081 case CCValAssign::Indirect: {
2082 // Store the argument.
2083 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002084 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002085 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002086 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002087 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002088 Arg = SpillSlot;
2089 break;
2090 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002091 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002092
Chris Lattner423c5f42007-02-28 05:31:48 +00002093 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002094 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2095 if (isVarArg && IsWin64) {
2096 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2097 // shadow reg if callee is a varargs function.
2098 unsigned ShadowReg = 0;
2099 switch (VA.getLocReg()) {
2100 case X86::XMM0: ShadowReg = X86::RCX; break;
2101 case X86::XMM1: ShadowReg = X86::RDX; break;
2102 case X86::XMM2: ShadowReg = X86::R8; break;
2103 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002104 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002105 if (ShadowReg)
2106 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002107 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002108 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002109 assert(VA.isMemLoc());
2110 if (StackPtr.getNode() == 0)
2111 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2112 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2113 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002114 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002115 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002116
Evan Cheng32fe1032006-05-25 00:59:30 +00002117 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002118 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002119 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002120
Evan Cheng347d5f72006-04-28 21:29:37 +00002121 // Build a sequence of copy-to-reg nodes chained together with token chain
2122 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002123 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002124 // Tail call byval lowering might overwrite argument registers so in case of
2125 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002126 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002127 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002128 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002129 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002130 InFlag = Chain.getValue(1);
2131 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002132
Chris Lattner88e1fd52009-07-09 04:24:46 +00002133 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002134 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2135 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002136 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002137 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2138 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002139 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002140 InFlag);
2141 InFlag = Chain.getValue(1);
2142 } else {
2143 // If we are tail calling and generating PIC/GOT style code load the
2144 // address of the callee into ECX. The value in ecx is used as target of
2145 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2146 // for tail calls on PIC/GOT architectures. Normally we would just put the
2147 // address of GOT into ebx and then call target@PLT. But for tail calls
2148 // ebx would be restored (since ebx is callee saved) before jumping to the
2149 // target@PLT.
2150
2151 // Note: The actual moving to ECX is done further down.
2152 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2153 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2154 !G->getGlobal()->hasProtectedVisibility())
2155 Callee = LowerGlobalAddress(Callee, DAG);
2156 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002157 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002158 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002159 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002160
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002161 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002162 // From AMD64 ABI document:
2163 // For calls that may call functions that use varargs or stdargs
2164 // (prototype-less calls or calls to functions containing ellipsis (...) in
2165 // the declaration) %al is used as hidden argument to specify the number
2166 // of SSE registers used. The contents of %al do not need to match exactly
2167 // the number of registers, but must be an ubound on the number of SSE
2168 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002169
Gordon Henriksen86737662008-01-05 16:56:59 +00002170 // Count the number of XMM registers allocated.
2171 static const unsigned XMMArgRegs[] = {
2172 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2173 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2174 };
2175 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002176 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002177 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002178
Dale Johannesendd64c412009-02-04 00:33:20 +00002179 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002180 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002181 InFlag = Chain.getValue(1);
2182 }
2183
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002184
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002185 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002186 if (isTailCall) {
2187 // Force all the incoming stack arguments to be loaded from the stack
2188 // before any new outgoing arguments are stored to the stack, because the
2189 // outgoing stack slots may alias the incoming argument stack slots, and
2190 // the alias isn't otherwise explicit. This is slightly more conservative
2191 // than necessary, because it means that each store effectively depends
2192 // on every argument instead of just those arguments it would clobber.
2193 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2194
Dan Gohman475871a2008-07-27 21:46:04 +00002195 SmallVector<SDValue, 8> MemOpChains2;
2196 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002197 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002198 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002199 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002200 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002201 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2202 CCValAssign &VA = ArgLocs[i];
2203 if (VA.isRegLoc())
2204 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002205 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002206 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002207 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002208 // Create frame index.
2209 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002210 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002211 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002212 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002213
Duncan Sands276dcbd2008-03-21 09:14:45 +00002214 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002215 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002216 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002217 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002218 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002219 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002220 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002221
Dan Gohman98ca4f22009-08-05 01:29:28 +00002222 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2223 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002224 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002225 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002226 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002227 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002228 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002229 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002230 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002231 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002232 }
2233 }
2234
2235 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002236 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002237 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002238
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002239 // Copy arguments to their registers.
2240 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002241 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002242 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002243 InFlag = Chain.getValue(1);
2244 }
Dan Gohman475871a2008-07-27 21:46:04 +00002245 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002246
Gordon Henriksen86737662008-01-05 16:56:59 +00002247 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002248 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002249 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002250 }
2251
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002252 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2253 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2254 // In the 64-bit large code model, we have to make all calls
2255 // through a register, since the call instruction's 32-bit
2256 // pc-relative offset may not be large enough to hold the whole
2257 // address.
2258 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002259 // If the callee is a GlobalAddress node (quite common, every direct call
2260 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2261 // it.
2262
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002263 // We should use extra load for direct calls to dllimported functions in
2264 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002265 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002266 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002267 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002268 bool ExtraLoad = false;
2269 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002270
Chris Lattner48a7d022009-07-09 05:02:21 +00002271 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2272 // external symbols most go through the PLT in PIC mode. If the symbol
2273 // has hidden or protected visibility, or if it is static or local, then
2274 // we don't need to use the PLT - we can directly call it.
2275 if (Subtarget->isTargetELF() &&
2276 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002277 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002278 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002279 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002280 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002281 (!Subtarget->getTargetTriple().isMacOSX() ||
2282 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002283 // PC-relative references to external symbols should go through $stub,
2284 // unless we're building with the leopard linker or later, which
2285 // automatically synthesizes these stubs.
2286 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002287 } else if (Subtarget->isPICStyleRIPRel() &&
2288 isa<Function>(GV) &&
2289 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2290 // If the function is marked as non-lazy, generate an indirect call
2291 // which loads from the GOT directly. This avoids runtime overhead
2292 // at the cost of eager binding (and one extra byte of encoding).
2293 OpFlags = X86II::MO_GOTPCREL;
2294 WrapperKind = X86ISD::WrapperRIP;
2295 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002296 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002297
Devang Patel0d881da2010-07-06 22:08:15 +00002298 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002299 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002300
2301 // Add a wrapper if needed.
2302 if (WrapperKind != ISD::DELETED_NODE)
2303 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2304 // Add extra indirection if needed.
2305 if (ExtraLoad)
2306 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2307 MachinePointerInfo::getGOT(),
2308 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002309 }
Bill Wendling056292f2008-09-16 21:48:12 +00002310 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002311 unsigned char OpFlags = 0;
2312
Evan Cheng1bf891a2010-12-01 22:59:46 +00002313 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2314 // external symbols should go through the PLT.
2315 if (Subtarget->isTargetELF() &&
2316 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2317 OpFlags = X86II::MO_PLT;
2318 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002319 (!Subtarget->getTargetTriple().isMacOSX() ||
2320 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002321 // PC-relative references to external symbols should go through $stub,
2322 // unless we're building with the leopard linker or later, which
2323 // automatically synthesizes these stubs.
2324 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002325 }
Eric Christopherfd179292009-08-27 18:07:15 +00002326
Chris Lattner48a7d022009-07-09 05:02:21 +00002327 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2328 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002329 }
2330
Chris Lattnerd96d0722007-02-25 06:40:16 +00002331 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002332 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002333 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002334
Evan Chengf22f9b32010-02-06 03:28:46 +00002335 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002336 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2337 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002338 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002339 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002340
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002341 Ops.push_back(Chain);
2342 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002343
Dan Gohman98ca4f22009-08-05 01:29:28 +00002344 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002345 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002346
Gordon Henriksen86737662008-01-05 16:56:59 +00002347 // Add argument registers to the end of the list so that they are known live
2348 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002349 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2350 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2351 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002352
Evan Cheng586ccac2008-03-18 23:36:35 +00002353 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002354 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002355 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2356
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002357 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002358 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002359 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002360
Gabor Greifba36cb52008-08-28 21:40:38 +00002361 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002362 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002363
Dan Gohman98ca4f22009-08-05 01:29:28 +00002364 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002365 // We used to do:
2366 //// If this is the first return lowered for this function, add the regs
2367 //// to the liveout set for the function.
2368 // This isn't right, although it's probably harmless on x86; liveouts
2369 // should be computed from returns not tail calls. Consider a void
2370 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002371 return DAG.getNode(X86ISD::TC_RETURN, dl,
2372 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002373 }
2374
Dale Johannesenace16102009-02-03 19:33:06 +00002375 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002376 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002377
Chris Lattner2d297092006-05-23 18:50:38 +00002378 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002379 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002380 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002381 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002382 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002383 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002384 // pops the hidden struct pointer, so we have to push it back.
2385 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002386 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002387 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002388 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002389
Gordon Henriksenae636f82008-01-03 16:47:34 +00002390 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002391 if (!IsSibcall) {
2392 Chain = DAG.getCALLSEQ_END(Chain,
2393 DAG.getIntPtrConstant(NumBytes, true),
2394 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2395 true),
2396 InFlag);
2397 InFlag = Chain.getValue(1);
2398 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002399
Chris Lattner3085e152007-02-25 08:59:22 +00002400 // Handle result values, copying them out of physregs into vregs that we
2401 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002402 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2403 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002404}
2405
Evan Cheng25ab6902006-09-08 06:48:29 +00002406
2407//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002408// Fast Calling Convention (tail call) implementation
2409//===----------------------------------------------------------------------===//
2410
2411// Like std call, callee cleans arguments, convention except that ECX is
2412// reserved for storing the tail called function address. Only 2 registers are
2413// free for argument passing (inreg). Tail call optimization is performed
2414// provided:
2415// * tailcallopt is enabled
2416// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002417// On X86_64 architecture with GOT-style position independent code only local
2418// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002419// To keep the stack aligned according to platform abi the function
2420// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2421// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002422// If a tail called function callee has more arguments than the caller the
2423// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002424// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002425// original REtADDR, but before the saved framepointer or the spilled registers
2426// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2427// stack layout:
2428// arg1
2429// arg2
2430// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002431// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002432// move area ]
2433// (possible EBP)
2434// ESI
2435// EDI
2436// local1 ..
2437
2438/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2439/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002440unsigned
2441X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2442 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002443 MachineFunction &MF = DAG.getMachineFunction();
2444 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002445 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002446 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002447 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002448 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002449 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002450 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2451 // Number smaller than 12 so just add the difference.
2452 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2453 } else {
2454 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002455 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002456 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002457 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002458 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002459}
2460
Evan Cheng5f941932010-02-05 02:21:12 +00002461/// MatchingStackOffset - Return true if the given stack call argument is
2462/// already available in the same position (relatively) of the caller's
2463/// incoming argument stack.
2464static
2465bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2466 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2467 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002468 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2469 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002470 if (Arg.getOpcode() == ISD::CopyFromReg) {
2471 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002472 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002473 return false;
2474 MachineInstr *Def = MRI->getVRegDef(VR);
2475 if (!Def)
2476 return false;
2477 if (!Flags.isByVal()) {
2478 if (!TII->isLoadFromStackSlot(Def, FI))
2479 return false;
2480 } else {
2481 unsigned Opcode = Def->getOpcode();
2482 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2483 Def->getOperand(1).isFI()) {
2484 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002485 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002486 } else
2487 return false;
2488 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002489 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2490 if (Flags.isByVal())
2491 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002492 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002493 // define @foo(%struct.X* %A) {
2494 // tail call @bar(%struct.X* byval %A)
2495 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002496 return false;
2497 SDValue Ptr = Ld->getBasePtr();
2498 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2499 if (!FINode)
2500 return false;
2501 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002502 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002503 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002504 FI = FINode->getIndex();
2505 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002506 } else
2507 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002508
Evan Cheng4cae1332010-03-05 08:38:04 +00002509 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002510 if (!MFI->isFixedObjectIndex(FI))
2511 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002512 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002513}
2514
Dan Gohman98ca4f22009-08-05 01:29:28 +00002515/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2516/// for tail call optimization. Targets which want to do tail call
2517/// optimization should implement this function.
2518bool
2519X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002520 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002521 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002522 bool isCalleeStructRet,
2523 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002524 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002525 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002526 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002527 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002528 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002529 CalleeCC != CallingConv::C)
2530 return false;
2531
Evan Cheng7096ae42010-01-29 06:45:59 +00002532 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002533 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002534 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002535 CallingConv::ID CallerCC = CallerF->getCallingConv();
2536 bool CCMatch = CallerCC == CalleeCC;
2537
Dan Gohman1797ed52010-02-08 20:27:50 +00002538 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002539 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002540 return true;
2541 return false;
2542 }
2543
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002544 // Look for obvious safe cases to perform tail call optimization that do not
2545 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002546
Evan Cheng2c12cb42010-03-26 16:26:03 +00002547 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2548 // emit a special epilogue.
2549 if (RegInfo->needsStackRealignment(MF))
2550 return false;
2551
Evan Chenga375d472010-03-15 18:54:48 +00002552 // Also avoid sibcall optimization if either caller or callee uses struct
2553 // return semantics.
2554 if (isCalleeStructRet || isCallerStructRet)
2555 return false;
2556
Chad Rosier2416da32011-06-24 21:15:36 +00002557 // An stdcall caller is expected to clean up its arguments; the callee
2558 // isn't going to do that.
2559 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2560 return false;
2561
Chad Rosier871f6642011-05-18 19:59:50 +00002562 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002563 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002564 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002565
2566 // Optimizing for varargs on Win64 is unlikely to be safe without
2567 // additional testing.
2568 if (Subtarget->isTargetWin64())
2569 return false;
2570
Chad Rosier871f6642011-05-18 19:59:50 +00002571 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002572 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2573 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002574
Chad Rosier871f6642011-05-18 19:59:50 +00002575 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2576 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2577 if (!ArgLocs[i].isRegLoc())
2578 return false;
2579 }
2580
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002581 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2582 // Therefore if it's not used by the call it is not safe to optimize this into
2583 // a sibcall.
2584 bool Unused = false;
2585 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2586 if (!Ins[i].Used) {
2587 Unused = true;
2588 break;
2589 }
2590 }
2591 if (Unused) {
2592 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002593 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2594 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002595 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002596 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002597 CCValAssign &VA = RVLocs[i];
2598 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2599 return false;
2600 }
2601 }
2602
Evan Cheng13617962010-04-30 01:12:32 +00002603 // If the calling conventions do not match, then we'd better make sure the
2604 // results are returned in the same way as what the caller expects.
2605 if (!CCMatch) {
2606 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002607 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2608 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002609 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2610
2611 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002612 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2613 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002614 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2615
2616 if (RVLocs1.size() != RVLocs2.size())
2617 return false;
2618 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2619 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2620 return false;
2621 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2622 return false;
2623 if (RVLocs1[i].isRegLoc()) {
2624 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2625 return false;
2626 } else {
2627 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2628 return false;
2629 }
2630 }
2631 }
2632
Evan Chenga6bff982010-01-30 01:22:00 +00002633 // If the callee takes no arguments then go on to check the results of the
2634 // call.
2635 if (!Outs.empty()) {
2636 // Check if stack adjustment is needed. For now, do not do this if any
2637 // argument is passed on the stack.
2638 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002639 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2640 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002641
2642 // Allocate shadow area for Win64
2643 if (Subtarget->isTargetWin64()) {
2644 CCInfo.AllocateStack(32, 8);
2645 }
2646
Duncan Sands45907662010-10-31 13:21:44 +00002647 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002648 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002649 MachineFunction &MF = DAG.getMachineFunction();
2650 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2651 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002652
2653 // Check if the arguments are already laid out in the right way as
2654 // the caller's fixed stack objects.
2655 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002656 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2657 const X86InstrInfo *TII =
2658 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002659 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2660 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002661 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002662 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002663 if (VA.getLocInfo() == CCValAssign::Indirect)
2664 return false;
2665 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002666 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2667 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002668 return false;
2669 }
2670 }
2671 }
Evan Cheng9c044672010-05-29 01:35:22 +00002672
2673 // If the tailcall address may be in a register, then make sure it's
2674 // possible to register allocate for it. In 32-bit, the call address can
2675 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002676 // callee-saved registers are restored. These happen to be the same
2677 // registers used to pass 'inreg' arguments so watch out for those.
2678 if (!Subtarget->is64Bit() &&
2679 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002680 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002681 unsigned NumInRegs = 0;
2682 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2683 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002684 if (!VA.isRegLoc())
2685 continue;
2686 unsigned Reg = VA.getLocReg();
2687 switch (Reg) {
2688 default: break;
2689 case X86::EAX: case X86::EDX: case X86::ECX:
2690 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002691 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002692 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002693 }
2694 }
2695 }
Evan Chenga6bff982010-01-30 01:22:00 +00002696 }
Evan Chengb1712452010-01-27 06:25:16 +00002697
Evan Cheng86809cc2010-02-03 03:28:02 +00002698 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002699}
2700
Dan Gohman3df24e62008-09-03 23:12:08 +00002701FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002702X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2703 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002704}
2705
2706
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002707//===----------------------------------------------------------------------===//
2708// Other Lowering Hooks
2709//===----------------------------------------------------------------------===//
2710
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002711static bool MayFoldLoad(SDValue Op) {
2712 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2713}
2714
2715static bool MayFoldIntoStore(SDValue Op) {
2716 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2717}
2718
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002719static bool isTargetShuffle(unsigned Opcode) {
2720 switch(Opcode) {
2721 default: return false;
2722 case X86ISD::PSHUFD:
2723 case X86ISD::PSHUFHW:
2724 case X86ISD::PSHUFLW:
2725 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002726 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002727 case X86ISD::SHUFPS:
2728 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002729 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002730 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002731 case X86ISD::MOVLPS:
2732 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002733 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002734 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002735 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002736 case X86ISD::MOVSS:
2737 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002738 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002739 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002740 case X86ISD::VUNPCKLPSY:
2741 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002742 case X86ISD::PUNPCKLWD:
2743 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002744 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002745 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002746 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002747 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002748 case X86ISD::VUNPCKHPSY:
2749 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002750 case X86ISD::PUNPCKHWD:
2751 case X86ISD::PUNPCKHBW:
2752 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002753 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002754 case X86ISD::VPERMILPS:
2755 case X86ISD::VPERMILPSY:
2756 case X86ISD::VPERMILPD:
2757 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002758 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002759 return true;
2760 }
2761 return false;
2762}
2763
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002764static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002765 SDValue V1, SelectionDAG &DAG) {
2766 switch(Opc) {
2767 default: llvm_unreachable("Unknown x86 shuffle node");
2768 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002769 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002770 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002771 return DAG.getNode(Opc, dl, VT, V1);
2772 }
2773
2774 return SDValue();
2775}
2776
2777static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002778 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002779 switch(Opc) {
2780 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002781 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002782 case X86ISD::PSHUFHW:
2783 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002784 case X86ISD::VPERMILPS:
2785 case X86ISD::VPERMILPSY:
2786 case X86ISD::VPERMILPD:
2787 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002788 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2789 }
2790
2791 return SDValue();
2792}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002793
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002794static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2795 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2796 switch(Opc) {
2797 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002798 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002799 case X86ISD::SHUFPD:
2800 case X86ISD::SHUFPS:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002801 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002802 return DAG.getNode(Opc, dl, VT, V1, V2,
2803 DAG.getConstant(TargetMask, MVT::i8));
2804 }
2805 return SDValue();
2806}
2807
2808static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2809 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2810 switch(Opc) {
2811 default: llvm_unreachable("Unknown x86 shuffle node");
2812 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002813 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002814 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002815 case X86ISD::MOVLPS:
2816 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002817 case X86ISD::MOVSS:
2818 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002819 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002820 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002821 case X86ISD::VUNPCKLPSY:
2822 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002823 case X86ISD::PUNPCKLWD:
2824 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002825 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002826 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002827 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002828 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002829 case X86ISD::VUNPCKHPSY:
2830 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002831 case X86ISD::PUNPCKHWD:
2832 case X86ISD::PUNPCKHBW:
2833 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002834 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002835 return DAG.getNode(Opc, dl, VT, V1, V2);
2836 }
2837 return SDValue();
2838}
2839
Dan Gohmand858e902010-04-17 15:26:15 +00002840SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002841 MachineFunction &MF = DAG.getMachineFunction();
2842 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2843 int ReturnAddrIndex = FuncInfo->getRAIndex();
2844
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002845 if (ReturnAddrIndex == 0) {
2846 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002847 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002848 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002849 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002850 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002851 }
2852
Evan Cheng25ab6902006-09-08 06:48:29 +00002853 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002854}
2855
2856
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002857bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2858 bool hasSymbolicDisplacement) {
2859 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002860 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002861 return false;
2862
2863 // If we don't have a symbolic displacement - we don't have any extra
2864 // restrictions.
2865 if (!hasSymbolicDisplacement)
2866 return true;
2867
2868 // FIXME: Some tweaks might be needed for medium code model.
2869 if (M != CodeModel::Small && M != CodeModel::Kernel)
2870 return false;
2871
2872 // For small code model we assume that latest object is 16MB before end of 31
2873 // bits boundary. We may also accept pretty large negative constants knowing
2874 // that all objects are in the positive half of address space.
2875 if (M == CodeModel::Small && Offset < 16*1024*1024)
2876 return true;
2877
2878 // For kernel code model we know that all object resist in the negative half
2879 // of 32bits address space. We may not accept negative offsets, since they may
2880 // be just off and we may accept pretty large positive ones.
2881 if (M == CodeModel::Kernel && Offset > 0)
2882 return true;
2883
2884 return false;
2885}
2886
Evan Chengef41ff62011-06-23 17:54:54 +00002887/// isCalleePop - Determines whether the callee is required to pop its
2888/// own arguments. Callee pop is necessary to support tail calls.
2889bool X86::isCalleePop(CallingConv::ID CallingConv,
2890 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2891 if (IsVarArg)
2892 return false;
2893
2894 switch (CallingConv) {
2895 default:
2896 return false;
2897 case CallingConv::X86_StdCall:
2898 return !is64Bit;
2899 case CallingConv::X86_FastCall:
2900 return !is64Bit;
2901 case CallingConv::X86_ThisCall:
2902 return !is64Bit;
2903 case CallingConv::Fast:
2904 return TailCallOpt;
2905 case CallingConv::GHC:
2906 return TailCallOpt;
2907 }
2908}
2909
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002910/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2911/// specific condition code, returning the condition code and the LHS/RHS of the
2912/// comparison to make.
2913static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2914 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002915 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002916 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2917 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2918 // X > -1 -> X == 0, jump !sign.
2919 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002920 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002921 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2922 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002923 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002924 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002925 // X < 1 -> X <= 0
2926 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002927 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002928 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002929 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002930
Evan Chengd9558e02006-01-06 00:43:03 +00002931 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002932 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002933 case ISD::SETEQ: return X86::COND_E;
2934 case ISD::SETGT: return X86::COND_G;
2935 case ISD::SETGE: return X86::COND_GE;
2936 case ISD::SETLT: return X86::COND_L;
2937 case ISD::SETLE: return X86::COND_LE;
2938 case ISD::SETNE: return X86::COND_NE;
2939 case ISD::SETULT: return X86::COND_B;
2940 case ISD::SETUGT: return X86::COND_A;
2941 case ISD::SETULE: return X86::COND_BE;
2942 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002943 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002944 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002945
Chris Lattner4c78e022008-12-23 23:42:27 +00002946 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002947
Chris Lattner4c78e022008-12-23 23:42:27 +00002948 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002949 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2950 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002951 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2952 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002953 }
2954
Chris Lattner4c78e022008-12-23 23:42:27 +00002955 switch (SetCCOpcode) {
2956 default: break;
2957 case ISD::SETOLT:
2958 case ISD::SETOLE:
2959 case ISD::SETUGT:
2960 case ISD::SETUGE:
2961 std::swap(LHS, RHS);
2962 break;
2963 }
2964
2965 // On a floating point condition, the flags are set as follows:
2966 // ZF PF CF op
2967 // 0 | 0 | 0 | X > Y
2968 // 0 | 0 | 1 | X < Y
2969 // 1 | 0 | 0 | X == Y
2970 // 1 | 1 | 1 | unordered
2971 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002972 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002973 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002974 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002975 case ISD::SETOLT: // flipped
2976 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002977 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002978 case ISD::SETOLE: // flipped
2979 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002980 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002981 case ISD::SETUGT: // flipped
2982 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002983 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002984 case ISD::SETUGE: // flipped
2985 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002986 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002987 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002988 case ISD::SETNE: return X86::COND_NE;
2989 case ISD::SETUO: return X86::COND_P;
2990 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002991 case ISD::SETOEQ:
2992 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002993 }
Evan Chengd9558e02006-01-06 00:43:03 +00002994}
2995
Evan Cheng4a460802006-01-11 00:33:36 +00002996/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2997/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002998/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002999static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003000 switch (X86CC) {
3001 default:
3002 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003003 case X86::COND_B:
3004 case X86::COND_BE:
3005 case X86::COND_E:
3006 case X86::COND_P:
3007 case X86::COND_A:
3008 case X86::COND_AE:
3009 case X86::COND_NE:
3010 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003011 return true;
3012 }
3013}
3014
Evan Chengeb2f9692009-10-27 19:56:55 +00003015/// isFPImmLegal - Returns true if the target can instruction select the
3016/// specified FP immediate natively. If false, the legalizer will
3017/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003018bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003019 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3020 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3021 return true;
3022 }
3023 return false;
3024}
3025
Nate Begeman9008ca62009-04-27 18:41:29 +00003026/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3027/// the specified range (L, H].
3028static bool isUndefOrInRange(int Val, int Low, int Hi) {
3029 return (Val < 0) || (Val >= Low && Val < Hi);
3030}
3031
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00003032/// isUndefOrInRange - Return true if every element in Mask, begining
3033/// from position Pos and ending in Pos+Size, falls within the specified
3034/// range (L, L+Pos]. or is undef.
3035static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3036 int Pos, int Size, int Low, int Hi) {
3037 for (int i = Pos, e = Pos+Size; i != e; ++i)
3038 if (!isUndefOrInRange(Mask[i], Low, Hi))
3039 return false;
3040 return true;
3041}
3042
Nate Begeman9008ca62009-04-27 18:41:29 +00003043/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3044/// specified value.
3045static bool isUndefOrEqual(int Val, int CmpVal) {
3046 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003047 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003048 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003049}
3050
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003051/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3052/// from position Pos and ending in Pos+Size, falls within the specified
3053/// sequential range (L, L+Pos]. or is undef.
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003054static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3055 int Pos, int Size, int Low) {
3056 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3057 if (!isUndefOrEqual(Mask[i], Low))
3058 return false;
3059 return true;
3060}
3061
Nate Begeman9008ca62009-04-27 18:41:29 +00003062/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3063/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3064/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003065static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003066 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003067 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003068 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003069 return (Mask[0] < 2 && Mask[1] < 2);
3070 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003071}
3072
Nate Begeman9008ca62009-04-27 18:41:29 +00003073bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003074 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003075 N->getMask(M);
3076 return ::isPSHUFDMask(M, N->getValueType(0));
3077}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003078
Nate Begeman9008ca62009-04-27 18:41:29 +00003079/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3080/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003081static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003082 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003083 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003084
Nate Begeman9008ca62009-04-27 18:41:29 +00003085 // Lower quadword copied in order or undef.
3086 for (int i = 0; i != 4; ++i)
3087 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003088 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003089
Evan Cheng506d3df2006-03-29 23:07:14 +00003090 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003091 for (int i = 4; i != 8; ++i)
3092 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003093 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003094
Evan Cheng506d3df2006-03-29 23:07:14 +00003095 return true;
3096}
3097
Nate Begeman9008ca62009-04-27 18:41:29 +00003098bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003099 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003100 N->getMask(M);
3101 return ::isPSHUFHWMask(M, N->getValueType(0));
3102}
Evan Cheng506d3df2006-03-29 23:07:14 +00003103
Nate Begeman9008ca62009-04-27 18:41:29 +00003104/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3105/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003106static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003107 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003108 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003109
Rafael Espindola15684b22009-04-24 12:40:33 +00003110 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003111 for (int i = 4; i != 8; ++i)
3112 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003113 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003114
Rafael Espindola15684b22009-04-24 12:40:33 +00003115 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003116 for (int i = 0; i != 4; ++i)
3117 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003118 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003119
Rafael Espindola15684b22009-04-24 12:40:33 +00003120 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003121}
3122
Nate Begeman9008ca62009-04-27 18:41:29 +00003123bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003124 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003125 N->getMask(M);
3126 return ::isPSHUFLWMask(M, N->getValueType(0));
3127}
3128
Nate Begemana09008b2009-10-19 02:17:23 +00003129/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3130/// is suitable for input to PALIGNR.
3131static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3132 bool hasSSSE3) {
3133 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003134 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3135 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003136
Nate Begemana09008b2009-10-19 02:17:23 +00003137 // Do not handle v2i64 / v2f64 shuffles with palignr.
3138 if (e < 4 || !hasSSSE3)
3139 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003140
Nate Begemana09008b2009-10-19 02:17:23 +00003141 for (i = 0; i != e; ++i)
3142 if (Mask[i] >= 0)
3143 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003144
Nate Begemana09008b2009-10-19 02:17:23 +00003145 // All undef, not a palignr.
3146 if (i == e)
3147 return false;
3148
Eli Friedman63f8dde2011-07-25 21:36:45 +00003149 // Make sure we're shifting in the right direction.
3150 if (Mask[i] <= i)
3151 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003152
3153 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003154
Nate Begemana09008b2009-10-19 02:17:23 +00003155 // Check the rest of the elements to see if they are consecutive.
3156 for (++i; i != e; ++i) {
3157 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003158 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003159 return false;
3160 }
3161 return true;
3162}
3163
Evan Cheng14aed5e2006-03-24 01:18:28 +00003164/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3165/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003166static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003167 int NumElems = VT.getVectorNumElements();
3168 if (NumElems != 2 && NumElems != 4)
3169 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003170
Nate Begeman9008ca62009-04-27 18:41:29 +00003171 int Half = NumElems / 2;
3172 for (int i = 0; i < Half; ++i)
3173 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003174 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003175 for (int i = Half; i < NumElems; ++i)
3176 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003177 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003178
Evan Cheng14aed5e2006-03-24 01:18:28 +00003179 return true;
3180}
3181
Nate Begeman9008ca62009-04-27 18:41:29 +00003182bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3183 SmallVector<int, 8> M;
3184 N->getMask(M);
3185 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003186}
3187
Evan Cheng213d2cf2007-05-17 18:45:50 +00003188/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003189/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3190/// half elements to come from vector 1 (which would equal the dest.) and
3191/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003192static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003193 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003194
3195 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003196 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003197
Nate Begeman9008ca62009-04-27 18:41:29 +00003198 int Half = NumElems / 2;
3199 for (int i = 0; i < Half; ++i)
3200 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003201 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003202 for (int i = Half; i < NumElems; ++i)
3203 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003204 return false;
3205 return true;
3206}
3207
Nate Begeman9008ca62009-04-27 18:41:29 +00003208static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3209 SmallVector<int, 8> M;
3210 N->getMask(M);
3211 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003212}
3213
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003214/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3215/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003216bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003217 EVT VT = N->getValueType(0);
3218 unsigned NumElems = VT.getVectorNumElements();
3219
3220 if (VT.getSizeInBits() != 128)
3221 return false;
3222
3223 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003224 return false;
3225
Evan Cheng2064a2b2006-03-28 06:50:32 +00003226 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003227 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3228 isUndefOrEqual(N->getMaskElt(1), 7) &&
3229 isUndefOrEqual(N->getMaskElt(2), 2) &&
3230 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003231}
3232
Nate Begeman0b10b912009-11-07 23:17:15 +00003233/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3234/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3235/// <2, 3, 2, 3>
3236bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003237 EVT VT = N->getValueType(0);
3238 unsigned NumElems = VT.getVectorNumElements();
3239
3240 if (VT.getSizeInBits() != 128)
3241 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003242
Nate Begeman0b10b912009-11-07 23:17:15 +00003243 if (NumElems != 4)
3244 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003245
Nate Begeman0b10b912009-11-07 23:17:15 +00003246 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003247 isUndefOrEqual(N->getMaskElt(1), 3) &&
3248 isUndefOrEqual(N->getMaskElt(2), 2) &&
3249 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003250}
3251
Evan Cheng5ced1d82006-04-06 23:23:56 +00003252/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3253/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003254bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3255 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003256
Evan Cheng5ced1d82006-04-06 23:23:56 +00003257 if (NumElems != 2 && NumElems != 4)
3258 return false;
3259
Evan Chengc5cdff22006-04-07 21:53:05 +00003260 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003261 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003262 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003263
Evan Chengc5cdff22006-04-07 21:53:05 +00003264 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003265 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003266 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003267
3268 return true;
3269}
3270
Nate Begeman0b10b912009-11-07 23:17:15 +00003271/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3272/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3273bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003274 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003275
David Greenea20244d2011-03-02 17:23:43 +00003276 if ((NumElems != 2 && NumElems != 4)
3277 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003278 return false;
3279
Evan Chengc5cdff22006-04-07 21:53:05 +00003280 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003281 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003282 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003283
Nate Begeman9008ca62009-04-27 18:41:29 +00003284 for (unsigned i = 0; i < NumElems/2; ++i)
3285 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003286 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003287
3288 return true;
3289}
3290
Evan Cheng0038e592006-03-28 00:39:58 +00003291/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3292/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003293static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003294 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003295 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003296
3297 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3298 "Unsupported vector type for unpckh");
3299
3300 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003301 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003302
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003303 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3304 // independently on 128-bit lanes.
3305 unsigned NumLanes = VT.getSizeInBits()/128;
3306 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003307
3308 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003309 unsigned End = NumLaneElts;
3310 for (unsigned s = 0; s < NumLanes; ++s) {
3311 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003312 i != End;
3313 i += 2, ++j) {
3314 int BitI = Mask[i];
3315 int BitI1 = Mask[i+1];
3316 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003317 return false;
David Greenea20244d2011-03-02 17:23:43 +00003318 if (V2IsSplat) {
3319 if (!isUndefOrEqual(BitI1, NumElts))
3320 return false;
3321 } else {
3322 if (!isUndefOrEqual(BitI1, j + NumElts))
3323 return false;
3324 }
Evan Cheng39623da2006-04-20 08:58:49 +00003325 }
David Greenea20244d2011-03-02 17:23:43 +00003326 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003327 Start += NumLaneElts;
3328 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003329 }
David Greenea20244d2011-03-02 17:23:43 +00003330
Evan Cheng0038e592006-03-28 00:39:58 +00003331 return true;
3332}
3333
Nate Begeman9008ca62009-04-27 18:41:29 +00003334bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3335 SmallVector<int, 8> M;
3336 N->getMask(M);
3337 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003338}
3339
Evan Cheng4fcb9222006-03-28 02:43:26 +00003340/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3341/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003342static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003343 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003344 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003345
3346 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3347 "Unsupported vector type for unpckh");
3348
3349 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003350 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003351
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003352 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3353 // independently on 128-bit lanes.
3354 unsigned NumLanes = VT.getSizeInBits()/128;
3355 unsigned NumLaneElts = NumElts/NumLanes;
3356
3357 unsigned Start = 0;
3358 unsigned End = NumLaneElts;
3359 for (unsigned l = 0; l != NumLanes; ++l) {
3360 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3361 i != End; i += 2, ++j) {
3362 int BitI = Mask[i];
3363 int BitI1 = Mask[i+1];
3364 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003365 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003366 if (V2IsSplat) {
3367 if (isUndefOrEqual(BitI1, NumElts))
3368 return false;
3369 } else {
3370 if (!isUndefOrEqual(BitI1, j+NumElts))
3371 return false;
3372 }
Evan Cheng39623da2006-04-20 08:58:49 +00003373 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003374 // Process the next 128 bits.
3375 Start += NumLaneElts;
3376 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003377 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003378 return true;
3379}
3380
Nate Begeman9008ca62009-04-27 18:41:29 +00003381bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3382 SmallVector<int, 8> M;
3383 N->getMask(M);
3384 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003385}
3386
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003387/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3388/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3389/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003390static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003391 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003392 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003393 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003394
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003395 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3396 // independently on 128-bit lanes.
3397 unsigned NumLanes = VT.getSizeInBits() / 128;
3398 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003399
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003400 for (unsigned s = 0; s < NumLanes; ++s) {
3401 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3402 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003403 i += 2, ++j) {
3404 int BitI = Mask[i];
3405 int BitI1 = Mask[i+1];
3406
3407 if (!isUndefOrEqual(BitI, j))
3408 return false;
3409 if (!isUndefOrEqual(BitI1, j))
3410 return false;
3411 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003412 }
David Greenea20244d2011-03-02 17:23:43 +00003413
Rafael Espindola15684b22009-04-24 12:40:33 +00003414 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003415}
3416
Nate Begeman9008ca62009-04-27 18:41:29 +00003417bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3418 SmallVector<int, 8> M;
3419 N->getMask(M);
3420 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3421}
3422
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003423/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3424/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3425/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003426static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003427 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003428 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3429 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003430
Nate Begeman9008ca62009-04-27 18:41:29 +00003431 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3432 int BitI = Mask[i];
3433 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003434 if (!isUndefOrEqual(BitI, j))
3435 return false;
3436 if (!isUndefOrEqual(BitI1, j))
3437 return false;
3438 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003439 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003440}
3441
Nate Begeman9008ca62009-04-27 18:41:29 +00003442bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3443 SmallVector<int, 8> M;
3444 N->getMask(M);
3445 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3446}
3447
Evan Cheng017dcc62006-04-21 01:05:10 +00003448/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3449/// specifies a shuffle of elements that is suitable for input to MOVSS,
3450/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003451static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003452 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003453 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003454
3455 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003456
Nate Begeman9008ca62009-04-27 18:41:29 +00003457 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003458 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003459
Nate Begeman9008ca62009-04-27 18:41:29 +00003460 for (int i = 1; i < NumElts; ++i)
3461 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003462 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003463
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003464 return true;
3465}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003466
Nate Begeman9008ca62009-04-27 18:41:29 +00003467bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3468 SmallVector<int, 8> M;
3469 N->getMask(M);
3470 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003471}
3472
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003473/// isVPERM2F128Mask - Match 256-bit shuffles where the elements are considered
3474/// as permutations between 128-bit chunks or halves. As an example: this
3475/// shuffle bellow:
3476/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3477/// The first half comes from the second half of V1 and the second half from the
3478/// the second half of V2.
3479static bool isVPERM2F128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3480 const X86Subtarget *Subtarget) {
3481 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3482 return false;
3483
3484 // The shuffle result is divided into half A and half B. In total the two
3485 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3486 // B must come from C, D, E or F.
3487 int HalfSize = VT.getVectorNumElements()/2;
3488 bool MatchA = false, MatchB = false;
3489
3490 // Check if A comes from one of C, D, E, F.
3491 for (int Half = 0; Half < 4; ++Half) {
3492 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3493 MatchA = true;
3494 break;
3495 }
3496 }
3497
3498 // Check if B comes from one of C, D, E, F.
3499 for (int Half = 0; Half < 4; ++Half) {
3500 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3501 MatchB = true;
3502 break;
3503 }
3504 }
3505
3506 return MatchA && MatchB;
3507}
3508
3509/// getShuffleVPERM2F128Immediate - Return the appropriate immediate to shuffle
3510/// the specified VECTOR_MASK mask with VPERM2F128 instructions.
3511static unsigned getShuffleVPERM2F128Immediate(SDNode *N) {
3512 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3513 EVT VT = SVOp->getValueType(0);
3514
3515 int HalfSize = VT.getVectorNumElements()/2;
3516
3517 int FstHalf = 0, SndHalf = 0;
3518 for (int i = 0; i < HalfSize; ++i) {
3519 if (SVOp->getMaskElt(i) > 0) {
3520 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3521 break;
3522 }
3523 }
3524 for (int i = HalfSize; i < HalfSize*2; ++i) {
3525 if (SVOp->getMaskElt(i) > 0) {
3526 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3527 break;
3528 }
3529 }
3530
3531 return (FstHalf | (SndHalf << 4));
3532}
3533
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003534/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3535/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3536/// Note that VPERMIL mask matching is different depending whether theunderlying
3537/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3538/// to the same elements of the low, but to the higher half of the source.
3539/// In VPERMILPD the two lanes could be shuffled independently of each other
3540/// with the same restriction that lanes can't be crossed.
3541static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3542 const X86Subtarget *Subtarget) {
3543 int NumElts = VT.getVectorNumElements();
3544 int NumLanes = VT.getSizeInBits()/128;
3545
3546 if (!Subtarget->hasAVX())
3547 return false;
3548
3549 // Match any permutation of 128-bit vector with 64-bit types
3550 if (NumLanes == 1 && NumElts != 2)
3551 return false;
3552
3553 // Only match 256-bit with 32 types
3554 if (VT.getSizeInBits() == 256 && NumElts != 4)
3555 return false;
3556
3557 // The mask on the high lane is independent of the low. Both can match
3558 // any element in inside its own lane, but can't cross.
3559 int LaneSize = NumElts/NumLanes;
3560 for (int l = 0; l < NumLanes; ++l)
3561 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3562 int LaneStart = l*LaneSize;
3563 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3564 return false;
3565 }
3566
3567 return true;
3568}
3569
3570/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3571/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3572/// Note that VPERMIL mask matching is different depending whether theunderlying
3573/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3574/// to the same elements of the low, but to the higher half of the source.
3575/// In VPERMILPD the two lanes could be shuffled independently of each other
3576/// with the same restriction that lanes can't be crossed.
3577static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3578 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003579 unsigned NumElts = VT.getVectorNumElements();
3580 unsigned NumLanes = VT.getSizeInBits()/128;
3581
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003582 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003583 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003584
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003585 // Match any permutation of 128-bit vector with 32-bit types
3586 if (NumLanes == 1 && NumElts != 4)
3587 return false;
3588
3589 // Only match 256-bit with 32 types
3590 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003591 return false;
3592
3593 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003594 // they can differ if any of the corresponding index in a lane is undef
3595 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003596 int LaneSize = NumElts/NumLanes;
3597 for (int i = 0; i < LaneSize; ++i) {
3598 int HighElt = i+LaneSize;
Bruno Cardoso Lopes155a92a2011-08-10 01:54:17 +00003599 bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3600 bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3601
3602 if (!HighValid || !LowValid)
3603 return false;
3604 if (Mask[i] < 0 || Mask[HighElt] < 0)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003605 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003606 if (Mask[HighElt]-Mask[i] != LaneSize)
3607 return false;
3608 }
3609
3610 return true;
3611}
3612
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003613/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3614/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3615static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003616 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3617 EVT VT = SVOp->getValueType(0);
3618
3619 int NumElts = VT.getVectorNumElements();
3620 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003621 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003622
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003623 // Although the mask is equal for both lanes do it twice to get the cases
3624 // where a mask will match because the same mask element is undef on the
3625 // first half but valid on the second. This would get pathological cases
3626 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003627 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003628 for (int l = 0; l < NumLanes; ++l) {
3629 for (int i = 0; i < LaneSize; ++i) {
3630 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3631 if (MaskElt < 0)
3632 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003633 if (MaskElt >= LaneSize)
3634 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003635 Mask |= MaskElt << (i*2);
3636 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003637 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003638
3639 return Mask;
3640}
3641
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003642/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3643/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3644static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3645 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3646 EVT VT = SVOp->getValueType(0);
3647
3648 int NumElts = VT.getVectorNumElements();
3649 int NumLanes = VT.getSizeInBits()/128;
3650
3651 unsigned Mask = 0;
3652 int LaneSize = NumElts/NumLanes;
3653 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003654 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3655 int MaskElt = SVOp->getMaskElt(i);
3656 if (MaskElt < 0)
3657 continue;
3658 Mask |= (MaskElt-l*LaneSize) << i;
3659 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003660
3661 return Mask;
3662}
3663
Evan Cheng017dcc62006-04-21 01:05:10 +00003664/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3665/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003666/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003667static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003668 bool V2IsSplat = false, bool V2IsUndef = false) {
3669 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003670 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003671 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003672
Nate Begeman9008ca62009-04-27 18:41:29 +00003673 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003674 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003675
Nate Begeman9008ca62009-04-27 18:41:29 +00003676 for (int i = 1; i < NumOps; ++i)
3677 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3678 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3679 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003680 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003681
Evan Cheng39623da2006-04-20 08:58:49 +00003682 return true;
3683}
3684
Nate Begeman9008ca62009-04-27 18:41:29 +00003685static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003686 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003687 SmallVector<int, 8> M;
3688 N->getMask(M);
3689 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003690}
3691
Evan Chengd9539472006-04-14 21:59:03 +00003692/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3693/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003694/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3695bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3696 const X86Subtarget *Subtarget) {
3697 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003698 return false;
3699
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003700 // The second vector must be undef
3701 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3702 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003703
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003704 EVT VT = N->getValueType(0);
3705 unsigned NumElems = VT.getVectorNumElements();
3706
3707 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3708 (VT.getSizeInBits() == 256 && NumElems != 8))
3709 return false;
3710
3711 // "i+1" is the value the indexed mask element must have
3712 for (unsigned i = 0; i < NumElems; i += 2)
3713 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3714 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003715 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003716
3717 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003718}
3719
3720/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3721/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003722/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3723bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3724 const X86Subtarget *Subtarget) {
3725 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003726 return false;
3727
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003728 // The second vector must be undef
3729 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3730 return false;
3731
3732 EVT VT = N->getValueType(0);
3733 unsigned NumElems = VT.getVectorNumElements();
3734
3735 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3736 (VT.getSizeInBits() == 256 && NumElems != 8))
3737 return false;
3738
3739 // "i" is the value the indexed mask element must have
3740 for (unsigned i = 0; i < NumElems; i += 2)
3741 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3742 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003743 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003744
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003745 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003746}
3747
Evan Cheng0b457f02008-09-25 20:50:48 +00003748/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3749/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003750bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3751 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003752
Nate Begeman9008ca62009-04-27 18:41:29 +00003753 for (int i = 0; i < e; ++i)
3754 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003755 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003756 for (int i = 0; i < e; ++i)
3757 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003758 return false;
3759 return true;
3760}
3761
David Greenec38a03e2011-02-03 15:50:00 +00003762/// isVEXTRACTF128Index - Return true if the specified
3763/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3764/// suitable for input to VEXTRACTF128.
3765bool X86::isVEXTRACTF128Index(SDNode *N) {
3766 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3767 return false;
3768
3769 // The index should be aligned on a 128-bit boundary.
3770 uint64_t Index =
3771 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3772
3773 unsigned VL = N->getValueType(0).getVectorNumElements();
3774 unsigned VBits = N->getValueType(0).getSizeInBits();
3775 unsigned ElSize = VBits / VL;
3776 bool Result = (Index * ElSize) % 128 == 0;
3777
3778 return Result;
3779}
3780
David Greeneccacdc12011-02-04 16:08:29 +00003781/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3782/// operand specifies a subvector insert that is suitable for input to
3783/// VINSERTF128.
3784bool X86::isVINSERTF128Index(SDNode *N) {
3785 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3786 return false;
3787
3788 // The index should be aligned on a 128-bit boundary.
3789 uint64_t Index =
3790 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3791
3792 unsigned VL = N->getValueType(0).getVectorNumElements();
3793 unsigned VBits = N->getValueType(0).getSizeInBits();
3794 unsigned ElSize = VBits / VL;
3795 bool Result = (Index * ElSize) % 128 == 0;
3796
3797 return Result;
3798}
3799
Evan Cheng63d33002006-03-22 08:01:21 +00003800/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003801/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003802unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003803 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3804 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3805
Evan Chengb9df0ca2006-03-22 02:53:00 +00003806 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3807 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003808 for (int i = 0; i < NumOperands; ++i) {
3809 int Val = SVOp->getMaskElt(NumOperands-i-1);
3810 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003811 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003812 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003813 if (i != NumOperands - 1)
3814 Mask <<= Shift;
3815 }
Evan Cheng63d33002006-03-22 08:01:21 +00003816 return Mask;
3817}
3818
Evan Cheng506d3df2006-03-29 23:07:14 +00003819/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003820/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003821unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003822 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003823 unsigned Mask = 0;
3824 // 8 nodes, but we only care about the last 4.
3825 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003826 int Val = SVOp->getMaskElt(i);
3827 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003828 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003829 if (i != 4)
3830 Mask <<= 2;
3831 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003832 return Mask;
3833}
3834
3835/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003836/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003837unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003838 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003839 unsigned Mask = 0;
3840 // 8 nodes, but we only care about the first 4.
3841 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003842 int Val = SVOp->getMaskElt(i);
3843 if (Val >= 0)
3844 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003845 if (i != 0)
3846 Mask <<= 2;
3847 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003848 return Mask;
3849}
3850
Nate Begemana09008b2009-10-19 02:17:23 +00003851/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3852/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3853unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3854 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3855 EVT VVT = N->getValueType(0);
3856 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3857 int Val = 0;
3858
3859 unsigned i, e;
3860 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3861 Val = SVOp->getMaskElt(i);
3862 if (Val >= 0)
3863 break;
3864 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003865 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003866 return (Val - i) * EltSize;
3867}
3868
David Greenec38a03e2011-02-03 15:50:00 +00003869/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3870/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3871/// instructions.
3872unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3873 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3874 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3875
3876 uint64_t Index =
3877 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3878
3879 EVT VecVT = N->getOperand(0).getValueType();
3880 EVT ElVT = VecVT.getVectorElementType();
3881
3882 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003883 return Index / NumElemsPerChunk;
3884}
3885
David Greeneccacdc12011-02-04 16:08:29 +00003886/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3887/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3888/// instructions.
3889unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3890 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3891 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3892
3893 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003894 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003895
3896 EVT VecVT = N->getValueType(0);
3897 EVT ElVT = VecVT.getVectorElementType();
3898
3899 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003900 return Index / NumElemsPerChunk;
3901}
3902
Evan Cheng37b73872009-07-30 08:33:02 +00003903/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3904/// constant +0.0.
3905bool X86::isZeroNode(SDValue Elt) {
3906 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003907 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003908 (isa<ConstantFPSDNode>(Elt) &&
3909 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3910}
3911
Nate Begeman9008ca62009-04-27 18:41:29 +00003912/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3913/// their permute mask.
3914static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3915 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003916 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003917 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003918 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003919
Nate Begeman5a5ca152009-04-29 05:20:52 +00003920 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003921 int idx = SVOp->getMaskElt(i);
3922 if (idx < 0)
3923 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003924 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003925 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003926 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003927 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003928 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003929 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3930 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003931}
3932
Evan Cheng779ccea2007-12-07 21:30:01 +00003933/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3934/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003935static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003936 unsigned NumElems = VT.getVectorNumElements();
3937 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003938 int idx = Mask[i];
3939 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003940 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003941 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003942 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003943 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003944 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003945 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003946}
3947
Evan Cheng533a0aa2006-04-19 20:35:22 +00003948/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3949/// match movhlps. The lower half elements should come from upper half of
3950/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003951/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003952static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00003953 EVT VT = Op->getValueType(0);
3954 if (VT.getSizeInBits() != 128)
3955 return false;
3956 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003957 return false;
3958 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003959 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003960 return false;
3961 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003962 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003963 return false;
3964 return true;
3965}
3966
Evan Cheng5ced1d82006-04-06 23:23:56 +00003967/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003968/// is promoted to a vector. It also returns the LoadSDNode by reference if
3969/// required.
3970static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003971 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3972 return false;
3973 N = N->getOperand(0).getNode();
3974 if (!ISD::isNON_EXTLoad(N))
3975 return false;
3976 if (LD)
3977 *LD = cast<LoadSDNode>(N);
3978 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003979}
3980
Evan Cheng533a0aa2006-04-19 20:35:22 +00003981/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3982/// match movlp{s|d}. The lower half elements should come from lower half of
3983/// V1 (and in order), and the upper half elements should come from the upper
3984/// half of V2 (and in order). And since V1 will become the source of the
3985/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003986static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3987 ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00003988 EVT VT = Op->getValueType(0);
3989 if (VT.getSizeInBits() != 128)
3990 return false;
3991
Evan Cheng466685d2006-10-09 20:57:25 +00003992 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003993 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003994 // Is V2 is a vector load, don't do this transformation. We will try to use
3995 // load folding shufps op.
3996 if (ISD::isNON_EXTLoad(V2))
3997 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003998
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00003999 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004000
Evan Cheng533a0aa2006-04-19 20:35:22 +00004001 if (NumElems != 2 && NumElems != 4)
4002 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004003 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004004 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004005 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004006 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004007 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004008 return false;
4009 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004010}
4011
Evan Cheng39623da2006-04-20 08:58:49 +00004012/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4013/// all the same.
4014static bool isSplatVector(SDNode *N) {
4015 if (N->getOpcode() != ISD::BUILD_VECTOR)
4016 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004017
Dan Gohman475871a2008-07-27 21:46:04 +00004018 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004019 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4020 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004021 return false;
4022 return true;
4023}
4024
Evan Cheng213d2cf2007-05-17 18:45:50 +00004025/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004026/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004027/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004028static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004029 SDValue V1 = N->getOperand(0);
4030 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004031 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4032 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004033 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004034 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004035 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004036 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4037 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004038 if (Opc != ISD::BUILD_VECTOR ||
4039 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004040 return false;
4041 } else if (Idx >= 0) {
4042 unsigned Opc = V1.getOpcode();
4043 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4044 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004045 if (Opc != ISD::BUILD_VECTOR ||
4046 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004047 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004048 }
4049 }
4050 return true;
4051}
4052
4053/// getZeroVector - Returns a vector of specified type with all zero elements.
4054///
Owen Andersone50ed302009-08-10 22:56:29 +00004055static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004056 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004057 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004058
Dale Johannesen0488fb62010-09-30 23:57:10 +00004059 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004060 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004061 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00004062 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004063 if (HasSSE2) { // SSE2
4064 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4065 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4066 } else { // SSE1
4067 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4068 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4069 }
4070 } else if (VT.getSizeInBits() == 256) { // AVX
4071 // 256-bit logic and arithmetic instructions in AVX are
4072 // all floating-point, no support for integer ops. Default
4073 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00004074 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004075 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4076 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00004077 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004078 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004079}
4080
Chris Lattner8a594482007-11-25 00:24:49 +00004081/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004082/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
4083/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
4084/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00004085static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004086 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004087 assert((VT.is128BitVector() || VT.is256BitVector())
4088 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004089
Owen Anderson825b72b2009-08-11 20:47:22 +00004090 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004091 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
4092 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004093
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004094 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004095 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4096 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4097 Vec = Insert128BitVector(InsV, Vec,
4098 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4099 }
4100
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004101 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004102}
4103
Evan Cheng39623da2006-04-20 08:58:49 +00004104/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4105/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004106static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004107 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004108 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004109
Evan Cheng39623da2006-04-20 08:58:49 +00004110 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004111 SmallVector<int, 8> MaskVec;
4112 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004113
Nate Begeman5a5ca152009-04-29 05:20:52 +00004114 for (unsigned i = 0; i != NumElems; ++i) {
4115 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004116 MaskVec[i] = NumElems;
4117 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004118 }
Evan Cheng39623da2006-04-20 08:58:49 +00004119 }
Evan Cheng39623da2006-04-20 08:58:49 +00004120 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004121 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4122 SVOp->getOperand(1), &MaskVec[0]);
4123 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004124}
4125
Evan Cheng017dcc62006-04-21 01:05:10 +00004126/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4127/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004128static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004129 SDValue V2) {
4130 unsigned NumElems = VT.getVectorNumElements();
4131 SmallVector<int, 8> Mask;
4132 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004133 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004134 Mask.push_back(i);
4135 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004136}
4137
Nate Begeman9008ca62009-04-27 18:41:29 +00004138/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004139static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004140 SDValue V2) {
4141 unsigned NumElems = VT.getVectorNumElements();
4142 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004143 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004144 Mask.push_back(i);
4145 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004146 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004147 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004148}
4149
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004150/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004151static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004152 SDValue V2) {
4153 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004154 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004155 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004156 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004157 Mask.push_back(i + Half);
4158 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004159 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004160 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004161}
4162
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004163// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004164// a generic shuffle instruction because the target has no such instructions.
4165// Generate shuffles which repeat i16 and i8 several times until they can be
4166// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004167static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004168 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004169 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004170 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004171
Nate Begeman9008ca62009-04-27 18:41:29 +00004172 while (NumElems > 4) {
4173 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004174 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004175 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004176 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004177 EltNo -= NumElems/2;
4178 }
4179 NumElems >>= 1;
4180 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004181 return V;
4182}
Eric Christopherfd179292009-08-27 18:07:15 +00004183
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004184/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4185static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4186 EVT VT = V.getValueType();
4187 DebugLoc dl = V.getDebugLoc();
4188 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4189 && "Vector size not supported");
4190
4191 bool Is128 = VT.getSizeInBits() == 128;
4192 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
4193 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
4194
4195 if (Is128) {
4196 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4197 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4198 } else {
4199 // The second half of indicies refer to the higher part, which is a
4200 // duplication of the lower one. This makes this shuffle a perfect match
4201 // for the VPERM instruction.
4202 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4203 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4204 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4205 }
4206
4207 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4208}
4209
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004210/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004211static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4212 EVT SrcVT = SV->getValueType(0);
4213 SDValue V1 = SV->getOperand(0);
4214 DebugLoc dl = SV->getDebugLoc();
4215
4216 int EltNo = SV->getSplatIndex();
4217 int NumElems = SrcVT.getVectorNumElements();
4218 unsigned Size = SrcVT.getSizeInBits();
4219
4220 // Extract the 128-bit part containing the splat element and update
4221 // the splat element index when it refers to the higher register.
4222 if (Size == 256) {
4223 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4224 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4225 if (Idx > 0)
4226 EltNo -= NumElems/2;
4227 }
4228
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004229 // All i16 and i8 vector types can't be used directly by a generic shuffle
4230 // instruction because the target has no such instruction. Generate shuffles
4231 // which repeat i16 and i8 several times until they fit in i32, and then can
4232 // be manipulated by target suported shuffles. After the insertion of the
4233 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004234 EVT EltVT = SrcVT.getVectorElementType();
4235 if (NumElems > 4 && (EltVT == MVT::i8 || EltVT == MVT::i16))
4236 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004237
4238 // Recreate the 256-bit vector and place the same 128-bit vector
4239 // into the low and high part. This is necessary because we want
4240 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4241 // inside each separate v4f32 lane.
4242 if (Size == 256) {
4243 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4244 DAG.getConstant(0, MVT::i32), DAG, dl);
4245 V1 = Insert128BitVector(InsV, V1,
4246 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4247 }
4248
4249 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004250}
4251
Evan Chengba05f722006-04-21 23:03:30 +00004252/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004253/// vector of zero or undef vector. This produces a shuffle where the low
4254/// element of V2 is swizzled into the zero/undef vector, landing at element
4255/// 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 +00004256static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004257 bool isZero, bool HasSSE2,
4258 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004259 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004260 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004261 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4262 unsigned NumElems = VT.getVectorNumElements();
4263 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004264 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004265 // If this is the insertion idx, put the low elt of V2 here.
4266 MaskVec.push_back(i == Idx ? NumElems : i);
4267 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004268}
4269
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004270/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4271/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004272static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4273 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004274 if (Depth == 6)
4275 return SDValue(); // Limit search depth.
4276
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004277 SDValue V = SDValue(N, 0);
4278 EVT VT = V.getValueType();
4279 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004280
4281 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4282 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4283 Index = SV->getMaskElt(Index);
4284
4285 if (Index < 0)
4286 return DAG.getUNDEF(VT.getVectorElementType());
4287
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004288 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004289 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004290 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004291 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004292
4293 // Recurse into target specific vector shuffles to find scalars.
4294 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004295 int NumElems = VT.getVectorNumElements();
4296 SmallVector<unsigned, 16> ShuffleMask;
4297 SDValue ImmN;
4298
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004299 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004300 case X86ISD::SHUFPS:
4301 case X86ISD::SHUFPD:
4302 ImmN = N->getOperand(N->getNumOperands()-1);
4303 DecodeSHUFPSMask(NumElems,
4304 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4305 ShuffleMask);
4306 break;
4307 case X86ISD::PUNPCKHBW:
4308 case X86ISD::PUNPCKHWD:
4309 case X86ISD::PUNPCKHDQ:
4310 case X86ISD::PUNPCKHQDQ:
4311 DecodePUNPCKHMask(NumElems, ShuffleMask);
4312 break;
4313 case X86ISD::UNPCKHPS:
4314 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004315 case X86ISD::VUNPCKHPSY:
4316 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004317 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4318 break;
4319 case X86ISD::PUNPCKLBW:
4320 case X86ISD::PUNPCKLWD:
4321 case X86ISD::PUNPCKLDQ:
4322 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004323 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004324 break;
4325 case X86ISD::UNPCKLPS:
4326 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004327 case X86ISD::VUNPCKLPSY:
4328 case X86ISD::VUNPCKLPDY:
4329 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004330 break;
4331 case X86ISD::MOVHLPS:
4332 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4333 break;
4334 case X86ISD::MOVLHPS:
4335 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4336 break;
4337 case X86ISD::PSHUFD:
4338 ImmN = N->getOperand(N->getNumOperands()-1);
4339 DecodePSHUFMask(NumElems,
4340 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4341 ShuffleMask);
4342 break;
4343 case X86ISD::PSHUFHW:
4344 ImmN = N->getOperand(N->getNumOperands()-1);
4345 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4346 ShuffleMask);
4347 break;
4348 case X86ISD::PSHUFLW:
4349 ImmN = N->getOperand(N->getNumOperands()-1);
4350 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4351 ShuffleMask);
4352 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004353 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004354 case X86ISD::MOVSD: {
4355 // The index 0 always comes from the first element of the second source,
4356 // this is why MOVSS and MOVSD are used in the first place. The other
4357 // elements come from the other positions of the first source vector.
4358 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004359 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4360 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004361 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004362 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004363 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004364 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004365 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004366 break;
4367 case X86ISD::VPERMILPSY:
4368 ImmN = N->getOperand(N->getNumOperands()-1);
4369 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4370 ShuffleMask);
4371 break;
4372 case X86ISD::VPERMILPD:
4373 ImmN = N->getOperand(N->getNumOperands()-1);
4374 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4375 ShuffleMask);
4376 break;
4377 case X86ISD::VPERMILPDY:
4378 ImmN = N->getOperand(N->getNumOperands()-1);
4379 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4380 ShuffleMask);
4381 break;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004382 case X86ISD::VPERM2F128:
4383 ImmN = N->getOperand(N->getNumOperands()-1);
4384 DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4385 ShuffleMask);
4386 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004387 default:
4388 assert("not implemented for target shuffle node");
4389 return SDValue();
4390 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004391
4392 Index = ShuffleMask[Index];
4393 if (Index < 0)
4394 return DAG.getUNDEF(VT.getVectorElementType());
4395
4396 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4397 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4398 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004399 }
4400
4401 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004402 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004403 V = V.getOperand(0);
4404 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004405 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004406
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004407 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004408 return SDValue();
4409 }
4410
4411 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4412 return (Index == 0) ? V.getOperand(0)
4413 : DAG.getUNDEF(VT.getVectorElementType());
4414
4415 if (V.getOpcode() == ISD::BUILD_VECTOR)
4416 return V.getOperand(Index);
4417
4418 return SDValue();
4419}
4420
4421/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4422/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004423/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004424static
4425unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4426 bool ZerosFromLeft, SelectionDAG &DAG) {
4427 int i = 0;
4428
4429 while (i < NumElems) {
4430 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004431 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004432 if (!(Elt.getNode() &&
4433 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4434 break;
4435 ++i;
4436 }
4437
4438 return i;
4439}
4440
4441/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4442/// MaskE correspond consecutively to elements from one of the vector operands,
4443/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4444static
4445bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4446 int OpIdx, int NumElems, unsigned &OpNum) {
4447 bool SeenV1 = false;
4448 bool SeenV2 = false;
4449
4450 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4451 int Idx = SVOp->getMaskElt(i);
4452 // Ignore undef indicies
4453 if (Idx < 0)
4454 continue;
4455
4456 if (Idx < NumElems)
4457 SeenV1 = true;
4458 else
4459 SeenV2 = true;
4460
4461 // Only accept consecutive elements from the same vector
4462 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4463 return false;
4464 }
4465
4466 OpNum = SeenV1 ? 0 : 1;
4467 return true;
4468}
4469
4470/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4471/// logical left shift of a vector.
4472static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4473 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4474 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4475 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4476 false /* check zeros from right */, DAG);
4477 unsigned OpSrc;
4478
4479 if (!NumZeros)
4480 return false;
4481
4482 // Considering the elements in the mask that are not consecutive zeros,
4483 // check if they consecutively come from only one of the source vectors.
4484 //
4485 // V1 = {X, A, B, C} 0
4486 // \ \ \ /
4487 // vector_shuffle V1, V2 <1, 2, 3, X>
4488 //
4489 if (!isShuffleMaskConsecutive(SVOp,
4490 0, // Mask Start Index
4491 NumElems-NumZeros-1, // Mask End Index
4492 NumZeros, // Where to start looking in the src vector
4493 NumElems, // Number of elements in vector
4494 OpSrc)) // Which source operand ?
4495 return false;
4496
4497 isLeft = false;
4498 ShAmt = NumZeros;
4499 ShVal = SVOp->getOperand(OpSrc);
4500 return true;
4501}
4502
4503/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4504/// logical left shift of a vector.
4505static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4506 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4507 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4508 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4509 true /* check zeros from left */, DAG);
4510 unsigned OpSrc;
4511
4512 if (!NumZeros)
4513 return false;
4514
4515 // Considering the elements in the mask that are not consecutive zeros,
4516 // check if they consecutively come from only one of the source vectors.
4517 //
4518 // 0 { A, B, X, X } = V2
4519 // / \ / /
4520 // vector_shuffle V1, V2 <X, X, 4, 5>
4521 //
4522 if (!isShuffleMaskConsecutive(SVOp,
4523 NumZeros, // Mask Start Index
4524 NumElems-1, // Mask End Index
4525 0, // Where to start looking in the src vector
4526 NumElems, // Number of elements in vector
4527 OpSrc)) // Which source operand ?
4528 return false;
4529
4530 isLeft = true;
4531 ShAmt = NumZeros;
4532 ShVal = SVOp->getOperand(OpSrc);
4533 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004534}
4535
4536/// isVectorShift - Returns true if the shuffle can be implemented as a
4537/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004538static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004539 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004540 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4541 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4542 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004543
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004544 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004545}
4546
Evan Chengc78d3b42006-04-24 18:01:45 +00004547/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4548///
Dan Gohman475871a2008-07-27 21:46:04 +00004549static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004550 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004551 SelectionDAG &DAG,
4552 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004553 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004554 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004555
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004556 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004557 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004558 bool First = true;
4559 for (unsigned i = 0; i < 16; ++i) {
4560 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4561 if (ThisIsNonZero && First) {
4562 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004563 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004564 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004565 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004566 First = false;
4567 }
4568
4569 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004570 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004571 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4572 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004573 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004574 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004575 }
4576 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004577 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4578 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4579 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004580 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004581 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004582 } else
4583 ThisElt = LastElt;
4584
Gabor Greifba36cb52008-08-28 21:40:38 +00004585 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004586 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004587 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004588 }
4589 }
4590
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004591 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004592}
4593
Bill Wendlinga348c562007-03-22 18:42:45 +00004594/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004595///
Dan Gohman475871a2008-07-27 21:46:04 +00004596static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004597 unsigned NumNonZero, unsigned NumZero,
4598 SelectionDAG &DAG,
4599 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004600 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004601 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004602
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004603 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004604 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004605 bool First = true;
4606 for (unsigned i = 0; i < 8; ++i) {
4607 bool isNonZero = (NonZeros & (1 << i)) != 0;
4608 if (isNonZero) {
4609 if (First) {
4610 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004611 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004612 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004613 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004614 First = false;
4615 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004616 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004617 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004618 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004619 }
4620 }
4621
4622 return V;
4623}
4624
Evan Chengf26ffe92008-05-29 08:22:04 +00004625/// getVShift - Return a vector logical shift node.
4626///
Owen Andersone50ed302009-08-10 22:56:29 +00004627static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004628 unsigned NumBits, SelectionDAG &DAG,
4629 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004630 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004631 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004632 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4633 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004634 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004635 DAG.getConstant(NumBits,
4636 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004637}
4638
Dan Gohman475871a2008-07-27 21:46:04 +00004639SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004640X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004641 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004642
Evan Chengc3630942009-12-09 21:00:30 +00004643 // Check if the scalar load can be widened into a vector load. And if
4644 // the address is "base + cst" see if the cst can be "absorbed" into
4645 // the shuffle mask.
4646 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4647 SDValue Ptr = LD->getBasePtr();
4648 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4649 return SDValue();
4650 EVT PVT = LD->getValueType(0);
4651 if (PVT != MVT::i32 && PVT != MVT::f32)
4652 return SDValue();
4653
4654 int FI = -1;
4655 int64_t Offset = 0;
4656 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4657 FI = FINode->getIndex();
4658 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004659 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004660 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4661 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4662 Offset = Ptr.getConstantOperandVal(1);
4663 Ptr = Ptr.getOperand(0);
4664 } else {
4665 return SDValue();
4666 }
4667
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004668 // FIXME: 256-bit vector instructions don't require a strict alignment,
4669 // improve this code to support it better.
4670 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004671 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004672 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004673 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004674 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004675 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004676 // Can't change the alignment. FIXME: It's possible to compute
4677 // the exact stack offset and reference FI + adjust offset instead.
4678 // If someone *really* cares about this. That's the way to implement it.
4679 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004680 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004681 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004682 }
4683 }
4684
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004685 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004686 // Ptr + (Offset & ~15).
4687 if (Offset < 0)
4688 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004689 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004690 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004691 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004692 if (StartOffset)
4693 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4694 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4695
4696 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004697 int NumElems = VT.getVectorNumElements();
4698
4699 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4700 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4701 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004702 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004703 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004704
4705 // Canonicalize it to a v4i32 or v8i32 shuffle.
4706 SmallVector<int, 8> Mask;
4707 for (int i = 0; i < NumElems; ++i)
4708 Mask.push_back(EltNo);
4709
4710 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4711 return DAG.getNode(ISD::BITCAST, dl, NVT,
4712 DAG.getVectorShuffle(CanonVT, dl, V1,
4713 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004714 }
4715
4716 return SDValue();
4717}
4718
Michael J. Spencerec38de22010-10-10 22:04:20 +00004719/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4720/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004721/// load which has the same value as a build_vector whose operands are 'elts'.
4722///
4723/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004724///
Nate Begeman1449f292010-03-24 22:19:06 +00004725/// FIXME: we'd also like to handle the case where the last elements are zero
4726/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4727/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004728static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004729 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004730 EVT EltVT = VT.getVectorElementType();
4731 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004732
Nate Begemanfdea31a2010-03-24 20:49:50 +00004733 LoadSDNode *LDBase = NULL;
4734 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004735
Nate Begeman1449f292010-03-24 22:19:06 +00004736 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004737 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004738 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004739 for (unsigned i = 0; i < NumElems; ++i) {
4740 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004741
Nate Begemanfdea31a2010-03-24 20:49:50 +00004742 if (!Elt.getNode() ||
4743 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4744 return SDValue();
4745 if (!LDBase) {
4746 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4747 return SDValue();
4748 LDBase = cast<LoadSDNode>(Elt.getNode());
4749 LastLoadedElt = i;
4750 continue;
4751 }
4752 if (Elt.getOpcode() == ISD::UNDEF)
4753 continue;
4754
4755 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4756 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4757 return SDValue();
4758 LastLoadedElt = i;
4759 }
Nate Begeman1449f292010-03-24 22:19:06 +00004760
4761 // If we have found an entire vector of loads and undefs, then return a large
4762 // load of the entire vector width starting at the base pointer. If we found
4763 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004764 if (LastLoadedElt == NumElems - 1) {
4765 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004766 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004767 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004768 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004769 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004770 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004771 LDBase->isVolatile(), LDBase->isNonTemporal(),
4772 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004773 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4774 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004775 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4776 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004777 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4778 Ops, 2, MVT::i32,
4779 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004780 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004781 }
4782 return SDValue();
4783}
4784
Evan Chengc3630942009-12-09 21:00:30 +00004785SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004786X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004787 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004788
David Greenef125a292011-02-08 19:04:41 +00004789 EVT VT = Op.getValueType();
4790 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004791 unsigned NumElems = Op.getNumOperands();
4792
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004793 // Vectors containing all zeros can be matched by pxor and xorps later
4794 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
4795 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
4796 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004797 if (Op.getValueType() == MVT::v4i32 ||
4798 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004799 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004800
Dale Johannesenace16102009-02-03 19:33:06 +00004801 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004802 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004803
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004804 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
4805 // vectors or broken into v4i32 operations on 256-bit vectors.
4806 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
4807 if (Op.getValueType() == MVT::v4i32)
4808 return Op;
4809
4810 return getOnesVector(Op.getValueType(), DAG, dl);
4811 }
4812
Owen Andersone50ed302009-08-10 22:56:29 +00004813 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004814
Evan Cheng0db9fe62006-04-25 20:13:52 +00004815 unsigned NumZero = 0;
4816 unsigned NumNonZero = 0;
4817 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004818 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004819 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004820 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004821 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004822 if (Elt.getOpcode() == ISD::UNDEF)
4823 continue;
4824 Values.insert(Elt);
4825 if (Elt.getOpcode() != ISD::Constant &&
4826 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004827 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004828 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004829 NumZero++;
4830 else {
4831 NonZeros |= (1 << i);
4832 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004833 }
4834 }
4835
Chris Lattner97a2a562010-08-26 05:24:29 +00004836 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4837 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004838 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004839
Chris Lattner67f453a2008-03-09 05:42:06 +00004840 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004841 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004842 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004843 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004844
Chris Lattner62098042008-03-09 01:05:04 +00004845 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4846 // the value are obviously zero, truncate the value to i32 and do the
4847 // insertion that way. Only do this if the value is non-constant or if the
4848 // value is a constant being inserted into element 0. It is cheaper to do
4849 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004850 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004851 (!IsAllConstants || Idx == 0)) {
4852 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004853 // Handle SSE only.
4854 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4855 EVT VecVT = MVT::v4i32;
4856 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004857
Chris Lattner62098042008-03-09 01:05:04 +00004858 // Truncate the value (which may itself be a constant) to i32, and
4859 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004860 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004861 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004862 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4863 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004864
Chris Lattner62098042008-03-09 01:05:04 +00004865 // Now we have our 32-bit value zero extended in the low element of
4866 // a vector. If Idx != 0, swizzle it into place.
4867 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004868 SmallVector<int, 4> Mask;
4869 Mask.push_back(Idx);
4870 for (unsigned i = 1; i != VecElts; ++i)
4871 Mask.push_back(i);
4872 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004873 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004874 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004875 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004876 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004877 }
4878 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004879
Chris Lattner19f79692008-03-08 22:59:52 +00004880 // If we have a constant or non-constant insertion into the low element of
4881 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4882 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004883 // depending on what the source datatype is.
4884 if (Idx == 0) {
4885 if (NumZero == 0) {
4886 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004887 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4888 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004889 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4890 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4891 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4892 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004893 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4894 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004895 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4896 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004897 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4898 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4899 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004900 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004901 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004902 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004903
4904 // Is it a vector logical left shift?
4905 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004906 X86::isZeroNode(Op.getOperand(0)) &&
4907 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004908 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004909 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004910 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004911 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004912 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004913 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004914
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004915 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004916 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004917
Chris Lattner19f79692008-03-08 22:59:52 +00004918 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4919 // is a non-constant being inserted into an element other than the low one,
4920 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4921 // movd/movss) to move this into the low element, then shuffle it into
4922 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004923 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004924 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004925
Evan Cheng0db9fe62006-04-25 20:13:52 +00004926 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004927 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4928 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004929 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004930 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004931 MaskVec.push_back(i == Idx ? 0 : 1);
4932 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004933 }
4934 }
4935
Chris Lattner67f453a2008-03-09 05:42:06 +00004936 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004937 if (Values.size() == 1) {
4938 if (EVTBits == 32) {
4939 // Instead of a shuffle like this:
4940 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4941 // Check if it's possible to issue this instead.
4942 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4943 unsigned Idx = CountTrailingZeros_32(NonZeros);
4944 SDValue Item = Op.getOperand(Idx);
4945 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4946 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4947 }
Dan Gohman475871a2008-07-27 21:46:04 +00004948 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004949 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004950
Dan Gohmana3941172007-07-24 22:55:08 +00004951 // A vector full of immediates; various special cases are already
4952 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004953 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004954 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004955
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004956 // For AVX-length vectors, build the individual 128-bit pieces and use
4957 // shuffles to put them in place.
4958 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4959 SmallVector<SDValue, 32> V;
4960 for (unsigned i = 0; i < NumElems; ++i)
4961 V.push_back(Op.getOperand(i));
4962
4963 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4964
4965 // Build both the lower and upper subvector.
4966 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4967 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4968 NumElems/2);
4969
4970 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00004971 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4972 DAG.getConstant(0, MVT::i32), DAG, dl);
4973 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004974 DAG, dl);
4975 }
4976
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004977 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004978 if (EVTBits == 64) {
4979 if (NumNonZero == 1) {
4980 // One half is zero or undef.
4981 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004982 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004983 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004984 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4985 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004986 }
Dan Gohman475871a2008-07-27 21:46:04 +00004987 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004988 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004989
4990 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004991 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004992 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004993 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004994 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004995 }
4996
Bill Wendling826f36f2007-03-28 00:57:11 +00004997 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004998 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004999 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005000 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005001 }
5002
5003 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005004 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00005005 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005006 if (NumElems == 4 && NumZero > 0) {
5007 for (unsigned i = 0; i < 4; ++i) {
5008 bool isZero = !(NonZeros & (1 << i));
5009 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00005010 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005011 else
Dale Johannesenace16102009-02-03 19:33:06 +00005012 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005013 }
5014
5015 for (unsigned i = 0; i < 2; ++i) {
5016 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5017 default: break;
5018 case 0:
5019 V[i] = V[i*2]; // Must be a zero vector.
5020 break;
5021 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005022 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005023 break;
5024 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005025 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005026 break;
5027 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005028 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005029 break;
5030 }
5031 }
5032
Nate Begeman9008ca62009-04-27 18:41:29 +00005033 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005034 bool Reverse = (NonZeros & 0x3) == 2;
5035 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005036 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005037 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5038 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005039 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5040 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005041 }
5042
Nate Begemanfdea31a2010-03-24 20:49:50 +00005043 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5044 // Check for a build vector of consecutive loads.
5045 for (unsigned i = 0; i < NumElems; ++i)
5046 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005047
Nate Begemanfdea31a2010-03-24 20:49:50 +00005048 // Check for elements which are consecutive loads.
5049 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5050 if (LD.getNode())
5051 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005052
5053 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005054 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005055 SDValue Result;
5056 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5057 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5058 else
5059 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005060
Chris Lattner24faf612010-08-28 17:59:08 +00005061 for (unsigned i = 1; i < NumElems; ++i) {
5062 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5063 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005064 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005065 }
5066 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005067 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005068
Chris Lattner6e80e442010-08-28 17:15:43 +00005069 // Otherwise, expand into a number of unpckl*, start by extending each of
5070 // our (non-undef) elements to the full vector width with the element in the
5071 // bottom slot of the vector (which generates no code for SSE).
5072 for (unsigned i = 0; i < NumElems; ++i) {
5073 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5074 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5075 else
5076 V[i] = DAG.getUNDEF(VT);
5077 }
5078
5079 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005080 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5081 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5082 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005083 unsigned EltStride = NumElems >> 1;
5084 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005085 for (unsigned i = 0; i < EltStride; ++i) {
5086 // If V[i+EltStride] is undef and this is the first round of mixing,
5087 // then it is safe to just drop this shuffle: V[i] is already in the
5088 // right place, the one element (since it's the first round) being
5089 // inserted as undef can be dropped. This isn't safe for successive
5090 // rounds because they will permute elements within both vectors.
5091 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5092 EltStride == NumElems/2)
5093 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005094
Chris Lattner6e80e442010-08-28 17:15:43 +00005095 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005096 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005097 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005098 }
5099 return V[0];
5100 }
Dan Gohman475871a2008-07-27 21:46:04 +00005101 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005102}
5103
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005104// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5105// them in a MMX register. This is better than doing a stack convert.
5106static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005107 DebugLoc dl = Op.getDebugLoc();
5108 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005109
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005110 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5111 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5112 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005113 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005114 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5115 InVec = Op.getOperand(1);
5116 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5117 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005118 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005119 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5120 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5121 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005122 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005123 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5124 Mask[0] = 0; Mask[1] = 2;
5125 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5126 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005127 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005128}
5129
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005130// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5131// to create 256-bit vectors from two other 128-bit ones.
5132static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5133 DebugLoc dl = Op.getDebugLoc();
5134 EVT ResVT = Op.getValueType();
5135
5136 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5137
5138 SDValue V1 = Op.getOperand(0);
5139 SDValue V2 = Op.getOperand(1);
5140 unsigned NumElems = ResVT.getVectorNumElements();
5141
5142 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5143 DAG.getConstant(0, MVT::i32), DAG, dl);
5144 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5145 DAG, dl);
5146}
5147
5148SDValue
5149X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005150 EVT ResVT = Op.getValueType();
5151
5152 assert(Op.getNumOperands() == 2);
5153 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5154 "Unsupported CONCAT_VECTORS for value type");
5155
5156 // We support concatenate two MMX registers and place them in a MMX register.
5157 // This is better than doing a stack convert.
5158 if (ResVT.is128BitVector())
5159 return LowerMMXCONCAT_VECTORS(Op, DAG);
5160
5161 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5162 // from two other 128-bit ones.
5163 return LowerAVXCONCAT_VECTORS(Op, DAG);
5164}
5165
Nate Begemanb9a47b82009-02-23 08:49:38 +00005166// v8i16 shuffles - Prefer shuffles in the following order:
5167// 1. [all] pshuflw, pshufhw, optional move
5168// 2. [ssse3] 1 x pshufb
5169// 3. [ssse3] 2 x pshufb + 1 x por
5170// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005171SDValue
5172X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5173 SelectionDAG &DAG) const {
5174 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005175 SDValue V1 = SVOp->getOperand(0);
5176 SDValue V2 = SVOp->getOperand(1);
5177 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005178 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005179
Nate Begemanb9a47b82009-02-23 08:49:38 +00005180 // Determine if more than 1 of the words in each of the low and high quadwords
5181 // of the result come from the same quadword of one of the two inputs. Undef
5182 // mask values count as coming from any quadword, for better codegen.
5183 SmallVector<unsigned, 4> LoQuad(4);
5184 SmallVector<unsigned, 4> HiQuad(4);
5185 BitVector InputQuads(4);
5186 for (unsigned i = 0; i < 8; ++i) {
5187 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005188 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005189 MaskVals.push_back(EltIdx);
5190 if (EltIdx < 0) {
5191 ++Quad[0];
5192 ++Quad[1];
5193 ++Quad[2];
5194 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005195 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005196 }
5197 ++Quad[EltIdx / 4];
5198 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005199 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005200
Nate Begemanb9a47b82009-02-23 08:49:38 +00005201 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005202 unsigned MaxQuad = 1;
5203 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005204 if (LoQuad[i] > MaxQuad) {
5205 BestLoQuad = i;
5206 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005207 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005208 }
5209
Nate Begemanb9a47b82009-02-23 08:49:38 +00005210 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005211 MaxQuad = 1;
5212 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005213 if (HiQuad[i] > MaxQuad) {
5214 BestHiQuad = i;
5215 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005216 }
5217 }
5218
Nate Begemanb9a47b82009-02-23 08:49:38 +00005219 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005220 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005221 // single pshufb instruction is necessary. If There are more than 2 input
5222 // quads, disable the next transformation since it does not help SSSE3.
5223 bool V1Used = InputQuads[0] || InputQuads[1];
5224 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005225 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005226 if (InputQuads.count() == 2 && V1Used && V2Used) {
5227 BestLoQuad = InputQuads.find_first();
5228 BestHiQuad = InputQuads.find_next(BestLoQuad);
5229 }
5230 if (InputQuads.count() > 2) {
5231 BestLoQuad = -1;
5232 BestHiQuad = -1;
5233 }
5234 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005235
Nate Begemanb9a47b82009-02-23 08:49:38 +00005236 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5237 // the shuffle mask. If a quad is scored as -1, that means that it contains
5238 // words from all 4 input quadwords.
5239 SDValue NewV;
5240 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005241 SmallVector<int, 8> MaskV;
5242 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5243 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005244 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005245 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5246 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5247 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005248
Nate Begemanb9a47b82009-02-23 08:49:38 +00005249 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5250 // source words for the shuffle, to aid later transformations.
5251 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005252 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005253 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005254 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005255 if (idx != (int)i)
5256 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005257 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005258 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005259 AllWordsInNewV = false;
5260 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005261 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005262
Nate Begemanb9a47b82009-02-23 08:49:38 +00005263 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5264 if (AllWordsInNewV) {
5265 for (int i = 0; i != 8; ++i) {
5266 int idx = MaskVals[i];
5267 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005268 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005269 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005270 if ((idx != i) && idx < 4)
5271 pshufhw = false;
5272 if ((idx != i) && idx > 3)
5273 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005274 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005275 V1 = NewV;
5276 V2Used = false;
5277 BestLoQuad = 0;
5278 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005279 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005280
Nate Begemanb9a47b82009-02-23 08:49:38 +00005281 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5282 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005283 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005284 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5285 unsigned TargetMask = 0;
5286 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005287 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005288 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5289 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5290 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005291 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005292 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005293 }
Eric Christopherfd179292009-08-27 18:07:15 +00005294
Nate Begemanb9a47b82009-02-23 08:49:38 +00005295 // If we have SSSE3, and all words of the result are from 1 input vector,
5296 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5297 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005298 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005299 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005300
Nate Begemanb9a47b82009-02-23 08:49:38 +00005301 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005302 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005303 // mask, and elements that come from V1 in the V2 mask, so that the two
5304 // results can be OR'd together.
5305 bool TwoInputs = V1Used && V2Used;
5306 for (unsigned i = 0; i != 8; ++i) {
5307 int EltIdx = MaskVals[i] * 2;
5308 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005309 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5310 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005311 continue;
5312 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005313 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5314 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005315 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005316 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005317 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005318 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005319 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005320 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005321 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005322
Nate Begemanb9a47b82009-02-23 08:49:38 +00005323 // Calculate the shuffle mask for the second input, shuffle it, and
5324 // OR it with the first shuffled input.
5325 pshufbMask.clear();
5326 for (unsigned i = 0; i != 8; ++i) {
5327 int EltIdx = MaskVals[i] * 2;
5328 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005329 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5330 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005331 continue;
5332 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005333 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5334 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005335 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005336 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005337 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005338 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005339 MVT::v16i8, &pshufbMask[0], 16));
5340 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005341 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005342 }
5343
5344 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5345 // and update MaskVals with new element order.
5346 BitVector InOrder(8);
5347 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005348 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005349 for (int i = 0; i != 4; ++i) {
5350 int idx = MaskVals[i];
5351 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005352 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005353 InOrder.set(i);
5354 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005355 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005356 InOrder.set(i);
5357 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005358 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005359 }
5360 }
5361 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005362 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005363 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005364 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005365
5366 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5367 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5368 NewV.getOperand(0),
5369 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5370 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005371 }
Eric Christopherfd179292009-08-27 18:07:15 +00005372
Nate Begemanb9a47b82009-02-23 08:49:38 +00005373 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5374 // and update MaskVals with the new element order.
5375 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005376 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005377 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005378 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005379 for (unsigned i = 4; i != 8; ++i) {
5380 int idx = MaskVals[i];
5381 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005382 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005383 InOrder.set(i);
5384 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005385 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005386 InOrder.set(i);
5387 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005388 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005389 }
5390 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005391 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005392 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005393
5394 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5395 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5396 NewV.getOperand(0),
5397 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5398 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005399 }
Eric Christopherfd179292009-08-27 18:07:15 +00005400
Nate Begemanb9a47b82009-02-23 08:49:38 +00005401 // In case BestHi & BestLo were both -1, which means each quadword has a word
5402 // from each of the four input quadwords, calculate the InOrder bitvector now
5403 // before falling through to the insert/extract cleanup.
5404 if (BestLoQuad == -1 && BestHiQuad == -1) {
5405 NewV = V1;
5406 for (int i = 0; i != 8; ++i)
5407 if (MaskVals[i] < 0 || MaskVals[i] == i)
5408 InOrder.set(i);
5409 }
Eric Christopherfd179292009-08-27 18:07:15 +00005410
Nate Begemanb9a47b82009-02-23 08:49:38 +00005411 // The other elements are put in the right place using pextrw and pinsrw.
5412 for (unsigned i = 0; i != 8; ++i) {
5413 if (InOrder[i])
5414 continue;
5415 int EltIdx = MaskVals[i];
5416 if (EltIdx < 0)
5417 continue;
5418 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005419 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005420 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005421 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005422 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005423 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005424 DAG.getIntPtrConstant(i));
5425 }
5426 return NewV;
5427}
5428
5429// v16i8 shuffles - Prefer shuffles in the following order:
5430// 1. [ssse3] 1 x pshufb
5431// 2. [ssse3] 2 x pshufb + 1 x por
5432// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5433static
Nate Begeman9008ca62009-04-27 18:41:29 +00005434SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005435 SelectionDAG &DAG,
5436 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005437 SDValue V1 = SVOp->getOperand(0);
5438 SDValue V2 = SVOp->getOperand(1);
5439 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005440 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005441 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005442
Nate Begemanb9a47b82009-02-23 08:49:38 +00005443 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005444 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005445 // present, fall back to case 3.
5446 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5447 bool V1Only = true;
5448 bool V2Only = true;
5449 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005450 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005451 if (EltIdx < 0)
5452 continue;
5453 if (EltIdx < 16)
5454 V2Only = false;
5455 else
5456 V1Only = false;
5457 }
Eric Christopherfd179292009-08-27 18:07:15 +00005458
Nate Begemanb9a47b82009-02-23 08:49:38 +00005459 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5460 if (TLI.getSubtarget()->hasSSSE3()) {
5461 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005462
Nate Begemanb9a47b82009-02-23 08:49:38 +00005463 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005464 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005465 //
5466 // Otherwise, we have elements from both input vectors, and must zero out
5467 // elements that come from V2 in the first mask, and V1 in the second mask
5468 // so that we can OR them together.
5469 bool TwoInputs = !(V1Only || V2Only);
5470 for (unsigned i = 0; i != 16; ++i) {
5471 int EltIdx = MaskVals[i];
5472 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005473 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005474 continue;
5475 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005476 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005477 }
5478 // If all the elements are from V2, assign it to V1 and return after
5479 // building the first pshufb.
5480 if (V2Only)
5481 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005482 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005483 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005484 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005485 if (!TwoInputs)
5486 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005487
Nate Begemanb9a47b82009-02-23 08:49:38 +00005488 // Calculate the shuffle mask for the second input, shuffle it, and
5489 // OR it with the first shuffled input.
5490 pshufbMask.clear();
5491 for (unsigned i = 0; i != 16; ++i) {
5492 int EltIdx = MaskVals[i];
5493 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005494 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005495 continue;
5496 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005497 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005498 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005499 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005500 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005501 MVT::v16i8, &pshufbMask[0], 16));
5502 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005503 }
Eric Christopherfd179292009-08-27 18:07:15 +00005504
Nate Begemanb9a47b82009-02-23 08:49:38 +00005505 // No SSSE3 - Calculate in place words and then fix all out of place words
5506 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5507 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005508 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5509 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005510 SDValue NewV = V2Only ? V2 : V1;
5511 for (int i = 0; i != 8; ++i) {
5512 int Elt0 = MaskVals[i*2];
5513 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005514
Nate Begemanb9a47b82009-02-23 08:49:38 +00005515 // This word of the result is all undef, skip it.
5516 if (Elt0 < 0 && Elt1 < 0)
5517 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005518
Nate Begemanb9a47b82009-02-23 08:49:38 +00005519 // This word of the result is already in the correct place, skip it.
5520 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5521 continue;
5522 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5523 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005524
Nate Begemanb9a47b82009-02-23 08:49:38 +00005525 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5526 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5527 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005528
5529 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5530 // using a single extract together, load it and store it.
5531 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005532 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005533 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005534 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005535 DAG.getIntPtrConstant(i));
5536 continue;
5537 }
5538
Nate Begemanb9a47b82009-02-23 08:49:38 +00005539 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005540 // source byte is not also odd, shift the extracted word left 8 bits
5541 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005542 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005543 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005544 DAG.getIntPtrConstant(Elt1 / 2));
5545 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005546 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005547 DAG.getConstant(8,
5548 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005549 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005550 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5551 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005552 }
5553 // If Elt0 is defined, extract it from the appropriate source. If the
5554 // source byte is not also even, shift the extracted word right 8 bits. If
5555 // Elt1 was also defined, OR the extracted values together before
5556 // inserting them in the result.
5557 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005558 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005559 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5560 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005561 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005562 DAG.getConstant(8,
5563 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005564 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005565 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5566 DAG.getConstant(0x00FF, MVT::i16));
5567 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005568 : InsElt0;
5569 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005570 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005571 DAG.getIntPtrConstant(i));
5572 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005573 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005574}
5575
Evan Cheng7a831ce2007-12-15 03:00:47 +00005576/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005577/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005578/// done when every pair / quad of shuffle mask elements point to elements in
5579/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005580/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005581static
Nate Begeman9008ca62009-04-27 18:41:29 +00005582SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005583 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005584 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005585 SDValue V1 = SVOp->getOperand(0);
5586 SDValue V2 = SVOp->getOperand(1);
5587 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005588 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005589 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005590 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005591 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005592 case MVT::v4f32: NewVT = MVT::v2f64; break;
5593 case MVT::v4i32: NewVT = MVT::v2i64; break;
5594 case MVT::v8i16: NewVT = MVT::v4i32; break;
5595 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005596 }
5597
Nate Begeman9008ca62009-04-27 18:41:29 +00005598 int Scale = NumElems / NewWidth;
5599 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005600 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005601 int StartIdx = -1;
5602 for (int j = 0; j < Scale; ++j) {
5603 int EltIdx = SVOp->getMaskElt(i+j);
5604 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005605 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005606 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005607 StartIdx = EltIdx - (EltIdx % Scale);
5608 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005609 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005610 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005611 if (StartIdx == -1)
5612 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005613 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005614 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005615 }
5616
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005617 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5618 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005619 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005620}
5621
Evan Chengd880b972008-05-09 21:53:03 +00005622/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005623///
Owen Andersone50ed302009-08-10 22:56:29 +00005624static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005625 SDValue SrcOp, SelectionDAG &DAG,
5626 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005627 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005628 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005629 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005630 LD = dyn_cast<LoadSDNode>(SrcOp);
5631 if (!LD) {
5632 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5633 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005634 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005635 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005636 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005637 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005638 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005639 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005640 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005641 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005642 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5643 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5644 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005645 SrcOp.getOperand(0)
5646 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005647 }
5648 }
5649 }
5650
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005651 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005652 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005653 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005654 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005655}
5656
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005657/// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
5658/// shuffle node referes to only one lane in the sources.
5659static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
5660 EVT VT = SVOp->getValueType(0);
5661 int NumElems = VT.getVectorNumElements();
5662 int HalfSize = NumElems/2;
5663 SmallVector<int, 16> M;
5664 SVOp->getMask(M);
5665 bool MatchA = false, MatchB = false;
5666
5667 for (int l = 0; l < NumElems*2; l += HalfSize) {
5668 if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
5669 MatchA = true;
5670 break;
5671 }
5672 }
5673
5674 for (int l = 0; l < NumElems*2; l += HalfSize) {
5675 if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
5676 MatchB = true;
5677 break;
5678 }
5679 }
5680
5681 return MatchA && MatchB;
5682}
5683
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005684/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5685/// which could not be matched by any known target speficic shuffle
5686static SDValue
5687LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005688 if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
5689 // If each half of a vector shuffle node referes to only one lane in the
5690 // source vectors, extract each used 128-bit lane and shuffle them using
5691 // 128-bit shuffles. Then, concatenate the results. Otherwise leave
5692 // the work to the legalizer.
5693 DebugLoc dl = SVOp->getDebugLoc();
5694 EVT VT = SVOp->getValueType(0);
5695 int NumElems = VT.getVectorNumElements();
5696 int HalfSize = NumElems/2;
5697
5698 // Extract the reference for each half
5699 int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
5700 int FstVecOpNum = 0, SndVecOpNum = 0;
5701 for (int i = 0; i < HalfSize; ++i) {
5702 int Elt = SVOp->getMaskElt(i);
5703 if (SVOp->getMaskElt(i) < 0)
5704 continue;
5705 FstVecOpNum = Elt/NumElems;
5706 FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5707 break;
5708 }
5709 for (int i = HalfSize; i < NumElems; ++i) {
5710 int Elt = SVOp->getMaskElt(i);
5711 if (SVOp->getMaskElt(i) < 0)
5712 continue;
5713 SndVecOpNum = Elt/NumElems;
5714 SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5715 break;
5716 }
5717
5718 // Extract the subvectors
5719 SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
5720 DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
5721 SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
5722 DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
5723
5724 // Generate 128-bit shuffles
5725 SmallVector<int, 16> MaskV1, MaskV2;
5726 for (int i = 0; i < HalfSize; ++i) {
5727 int Elt = SVOp->getMaskElt(i);
5728 MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5729 }
5730 for (int i = HalfSize; i < NumElems; ++i) {
5731 int Elt = SVOp->getMaskElt(i);
5732 MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5733 }
5734
5735 EVT NVT = V1.getValueType();
5736 V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
5737 V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
5738
5739 // Concatenate the result back
5740 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
5741 DAG.getConstant(0, MVT::i32), DAG, dl);
5742 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5743 DAG, dl);
5744 }
5745
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005746 return SDValue();
5747}
5748
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005749/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5750/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005751static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005752LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005753 SDValue V1 = SVOp->getOperand(0);
5754 SDValue V2 = SVOp->getOperand(1);
5755 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005756 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005757
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005758 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5759
Evan Chengace3c172008-07-22 21:13:36 +00005760 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005761 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005762 SmallVector<int, 8> Mask1(4U, -1);
5763 SmallVector<int, 8> PermMask;
5764 SVOp->getMask(PermMask);
5765
Evan Chengace3c172008-07-22 21:13:36 +00005766 unsigned NumHi = 0;
5767 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005768 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005769 int Idx = PermMask[i];
5770 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005771 Locs[i] = std::make_pair(-1, -1);
5772 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005773 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5774 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005775 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005776 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005777 NumLo++;
5778 } else {
5779 Locs[i] = std::make_pair(1, NumHi);
5780 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005781 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005782 NumHi++;
5783 }
5784 }
5785 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005786
Evan Chengace3c172008-07-22 21:13:36 +00005787 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005788 // If no more than two elements come from either vector. This can be
5789 // implemented with two shuffles. First shuffle gather the elements.
5790 // The second shuffle, which takes the first shuffle as both of its
5791 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005792 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005793
Nate Begeman9008ca62009-04-27 18:41:29 +00005794 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005795
Evan Chengace3c172008-07-22 21:13:36 +00005796 for (unsigned i = 0; i != 4; ++i) {
5797 if (Locs[i].first == -1)
5798 continue;
5799 else {
5800 unsigned Idx = (i < 2) ? 0 : 4;
5801 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005802 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005803 }
5804 }
5805
Nate Begeman9008ca62009-04-27 18:41:29 +00005806 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005807 } else if (NumLo == 3 || NumHi == 3) {
5808 // Otherwise, we must have three elements from one vector, call it X, and
5809 // one element from the other, call it Y. First, use a shufps to build an
5810 // intermediate vector with the one element from Y and the element from X
5811 // that will be in the same half in the final destination (the indexes don't
5812 // matter). Then, use a shufps to build the final vector, taking the half
5813 // containing the element from Y from the intermediate, and the other half
5814 // from X.
5815 if (NumHi == 3) {
5816 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005817 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005818 std::swap(V1, V2);
5819 }
5820
5821 // Find the element from V2.
5822 unsigned HiIndex;
5823 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005824 int Val = PermMask[HiIndex];
5825 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005826 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005827 if (Val >= 4)
5828 break;
5829 }
5830
Nate Begeman9008ca62009-04-27 18:41:29 +00005831 Mask1[0] = PermMask[HiIndex];
5832 Mask1[1] = -1;
5833 Mask1[2] = PermMask[HiIndex^1];
5834 Mask1[3] = -1;
5835 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005836
5837 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005838 Mask1[0] = PermMask[0];
5839 Mask1[1] = PermMask[1];
5840 Mask1[2] = HiIndex & 1 ? 6 : 4;
5841 Mask1[3] = HiIndex & 1 ? 4 : 6;
5842 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005843 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005844 Mask1[0] = HiIndex & 1 ? 2 : 0;
5845 Mask1[1] = HiIndex & 1 ? 0 : 2;
5846 Mask1[2] = PermMask[2];
5847 Mask1[3] = PermMask[3];
5848 if (Mask1[2] >= 0)
5849 Mask1[2] += 4;
5850 if (Mask1[3] >= 0)
5851 Mask1[3] += 4;
5852 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005853 }
Evan Chengace3c172008-07-22 21:13:36 +00005854 }
5855
5856 // Break it into (shuffle shuffle_hi, shuffle_lo).
5857 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005858 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005859 SmallVector<int,8> LoMask(4U, -1);
5860 SmallVector<int,8> HiMask(4U, -1);
5861
5862 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005863 unsigned MaskIdx = 0;
5864 unsigned LoIdx = 0;
5865 unsigned HiIdx = 2;
5866 for (unsigned i = 0; i != 4; ++i) {
5867 if (i == 2) {
5868 MaskPtr = &HiMask;
5869 MaskIdx = 1;
5870 LoIdx = 0;
5871 HiIdx = 2;
5872 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005873 int Idx = PermMask[i];
5874 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005875 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005876 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005877 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005878 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005879 LoIdx++;
5880 } else {
5881 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005882 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005883 HiIdx++;
5884 }
5885 }
5886
Nate Begeman9008ca62009-04-27 18:41:29 +00005887 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5888 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5889 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005890 for (unsigned i = 0; i != 4; ++i) {
5891 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005892 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005893 } else {
5894 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005895 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005896 }
5897 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005898 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005899}
5900
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005901static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005902 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005903 V = V.getOperand(0);
5904 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5905 V = V.getOperand(0);
5906 if (MayFoldLoad(V))
5907 return true;
5908 return false;
5909}
5910
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005911// FIXME: the version above should always be used. Since there's
5912// a bug where several vector shuffles can't be folded because the
5913// DAG is not updated during lowering and a node claims to have two
5914// uses while it only has one, use this version, and let isel match
5915// another instruction if the load really happens to have more than
5916// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005917// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005918static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005919 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005920 V = V.getOperand(0);
5921 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5922 V = V.getOperand(0);
5923 if (ISD::isNormalLoad(V.getNode()))
5924 return true;
5925 return false;
5926}
5927
5928/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5929/// a vector extract, and if both can be later optimized into a single load.
5930/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5931/// here because otherwise a target specific shuffle node is going to be
5932/// emitted for this shuffle, and the optimization not done.
5933/// FIXME: This is probably not the best approach, but fix the problem
5934/// until the right path is decided.
5935static
5936bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5937 const TargetLowering &TLI) {
5938 EVT VT = V.getValueType();
5939 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5940
5941 // Be sure that the vector shuffle is present in a pattern like this:
5942 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5943 if (!V.hasOneUse())
5944 return false;
5945
5946 SDNode *N = *V.getNode()->use_begin();
5947 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5948 return false;
5949
5950 SDValue EltNo = N->getOperand(1);
5951 if (!isa<ConstantSDNode>(EltNo))
5952 return false;
5953
5954 // If the bit convert changed the number of elements, it is unsafe
5955 // to examine the mask.
5956 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005957 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005958 EVT SrcVT = V.getOperand(0).getValueType();
5959 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5960 return false;
5961 V = V.getOperand(0);
5962 HasShuffleIntoBitcast = true;
5963 }
5964
5965 // Select the input vector, guarding against out of range extract vector.
5966 unsigned NumElems = VT.getVectorNumElements();
5967 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5968 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5969 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5970
5971 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005972 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005973 V = V.getOperand(0);
5974
5975 if (ISD::isNormalLoad(V.getNode())) {
5976 // Is the original load suitable?
5977 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5978
5979 // FIXME: avoid the multi-use bug that is preventing lots of
5980 // of foldings to be detected, this is still wrong of course, but
5981 // give the temporary desired behavior, and if it happens that
5982 // the load has real more uses, during isel it will not fold, and
5983 // will generate poor code.
5984 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5985 return false;
5986
5987 if (!HasShuffleIntoBitcast)
5988 return true;
5989
5990 // If there's a bitcast before the shuffle, check if the load type and
5991 // alignment is valid.
5992 unsigned Align = LN0->getAlignment();
5993 unsigned NewAlign =
5994 TLI.getTargetData()->getABITypeAlignment(
5995 VT.getTypeForEVT(*DAG.getContext()));
5996
5997 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5998 return false;
5999 }
6000
6001 return true;
6002}
6003
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006004static
Evan Cheng835580f2010-10-07 20:50:20 +00006005SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6006 EVT VT = Op.getValueType();
6007
6008 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006009 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6010 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006011 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6012 V1, DAG));
6013}
6014
6015static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006016SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6017 bool HasSSE2) {
6018 SDValue V1 = Op.getOperand(0);
6019 SDValue V2 = Op.getOperand(1);
6020 EVT VT = Op.getValueType();
6021
6022 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6023
6024 if (HasSSE2 && VT == MVT::v2f64)
6025 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6026
6027 // v4f32 or v4i32
6028 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
6029}
6030
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006031static
6032SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6033 SDValue V1 = Op.getOperand(0);
6034 SDValue V2 = Op.getOperand(1);
6035 EVT VT = Op.getValueType();
6036
6037 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6038 "unsupported shuffle type");
6039
6040 if (V2.getOpcode() == ISD::UNDEF)
6041 V2 = V1;
6042
6043 // v4i32 or v4f32
6044 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6045}
6046
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006047static
6048SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6049 SDValue V1 = Op.getOperand(0);
6050 SDValue V2 = Op.getOperand(1);
6051 EVT VT = Op.getValueType();
6052 unsigned NumElems = VT.getVectorNumElements();
6053
6054 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6055 // operand of these instructions is only memory, so check if there's a
6056 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6057 // same masks.
6058 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006059
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006060 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006061 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006062 CanFoldLoad = true;
6063
6064 // When V1 is a load, it can be folded later into a store in isel, example:
6065 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6066 // turns into:
6067 // (MOVLPSmr addr:$src1, VR128:$src2)
6068 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006069 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006070 CanFoldLoad = true;
6071
Eric Christopher893a8822011-02-20 05:04:42 +00006072 // Both of them can't be memory operations though.
6073 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
6074 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00006075
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006076 if (CanFoldLoad) {
6077 if (HasSSE2 && NumElems == 2)
6078 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6079
6080 if (NumElems == 4)
6081 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6082 }
6083
6084 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6085 // movl and movlp will both match v2i64, but v2i64 is never matched by
6086 // movl earlier because we make it strict to avoid messing with the movlp load
6087 // folding logic (see the code above getMOVLP call). Match it here then,
6088 // this is horrible, but will stay like this until we move all shuffle
6089 // matching to x86 specific nodes. Note that for the 1st condition all
6090 // types are matched with movsd.
6091 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
6092 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6093 else if (HasSSE2)
6094 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6095
6096
6097 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6098
6099 // Invert the operand order and use SHUFPS to match it.
6100 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
6101 X86::getShuffleSHUFImmediate(SVOp), DAG);
6102}
6103
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006104static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006105 switch(VT.getSimpleVT().SimpleTy) {
6106 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
6107 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006108 case MVT::v4f32: return X86ISD::UNPCKLPS;
6109 case MVT::v2f64: return X86ISD::UNPCKLPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006110 case MVT::v8i32: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006111 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006112 case MVT::v4i64: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006113 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006114 case MVT::v16i8: return X86ISD::PUNPCKLBW;
6115 case MVT::v8i16: return X86ISD::PUNPCKLWD;
6116 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006117 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006118 }
6119 return 0;
6120}
6121
6122static inline unsigned getUNPCKHOpcode(EVT VT) {
6123 switch(VT.getSimpleVT().SimpleTy) {
6124 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
6125 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
6126 case MVT::v4f32: return X86ISD::UNPCKHPS;
6127 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006128 case MVT::v8i32: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006129 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006130 case MVT::v4i64: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006131 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006132 case MVT::v16i8: return X86ISD::PUNPCKHBW;
6133 case MVT::v8i16: return X86ISD::PUNPCKHWD;
6134 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006135 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006136 }
6137 return 0;
6138}
6139
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006140static inline unsigned getVPERMILOpcode(EVT VT) {
6141 switch(VT.getSimpleVT().SimpleTy) {
6142 case MVT::v4i32:
6143 case MVT::v4f32: return X86ISD::VPERMILPS;
6144 case MVT::v2i64:
6145 case MVT::v2f64: return X86ISD::VPERMILPD;
6146 case MVT::v8i32:
6147 case MVT::v8f32: return X86ISD::VPERMILPSY;
6148 case MVT::v4i64:
6149 case MVT::v4f64: return X86ISD::VPERMILPDY;
6150 default:
6151 llvm_unreachable("Unknown type for vpermil");
6152 }
6153 return 0;
6154}
6155
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006156/// isVectorBroadcast - Check if the node chain is suitable to be xformed to
6157/// a vbroadcast node. The nodes are suitable whenever we can fold a load coming
6158/// from a 32 or 64 bit scalar. Update Op to the desired load to be folded.
6159static bool isVectorBroadcast(SDValue &Op) {
6160 EVT VT = Op.getValueType();
6161 bool Is256 = VT.getSizeInBits() == 256;
6162
6163 assert((VT.getSizeInBits() == 128 || Is256) &&
6164 "Unsupported type for vbroadcast node");
6165
6166 SDValue V = Op;
6167 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6168 V = V.getOperand(0);
6169
6170 if (Is256 && !(V.hasOneUse() &&
6171 V.getOpcode() == ISD::INSERT_SUBVECTOR &&
6172 V.getOperand(0).getOpcode() == ISD::UNDEF))
6173 return false;
6174
6175 if (Is256)
6176 V = V.getOperand(1);
6177 if (V.hasOneUse() && V.getOpcode() != ISD::SCALAR_TO_VECTOR)
6178 return false;
6179
6180 // Check the source scalar_to_vector type. 256-bit broadcasts are
6181 // supported for 32/64-bit sizes, while 128-bit ones are only supported
6182 // for 32-bit scalars.
6183 unsigned ScalarSize = V.getOperand(0).getValueType().getSizeInBits();
6184 if (ScalarSize != 32 && ScalarSize != 64)
6185 return false;
6186 if (!Is256 && ScalarSize == 64)
6187 return false;
6188
6189 V = V.getOperand(0);
6190 if (!MayFoldLoad(V))
6191 return false;
6192
6193 // Return the load node
6194 Op = V;
6195 return true;
6196}
6197
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006198static
6199SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006200 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006201 const X86Subtarget *Subtarget) {
6202 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6203 EVT VT = Op.getValueType();
6204 DebugLoc dl = Op.getDebugLoc();
6205 SDValue V1 = Op.getOperand(0);
6206 SDValue V2 = Op.getOperand(1);
6207
6208 if (isZeroShuffle(SVOp))
6209 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
6210
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006211 // Handle splat operations
6212 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006213 unsigned NumElem = VT.getVectorNumElements();
6214 // Special case, this is the only place now where it's allowed to return
6215 // a vector_shuffle operation without using a target specific node, because
6216 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6217 // this be moved to DAGCombine instead?
6218 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006219 return Op;
6220
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006221 // Use vbroadcast whenever the splat comes from a foldable load
6222 if (Subtarget->hasAVX() && isVectorBroadcast(V1))
6223 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, V1);
6224
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006225 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00006226 if (VT.is128BitVector() && NumElem <= 4)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006227 return SDValue();
6228
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006229 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006230 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006231 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006232
6233 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6234 // do it!
6235 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6236 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6237 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006238 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006239 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6240 // FIXME: Figure out a cleaner way to do this.
6241 // Try to make use of movq to zero out the top part.
6242 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6243 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6244 if (NewOp.getNode()) {
6245 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6246 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6247 DAG, Subtarget, dl);
6248 }
6249 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6250 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6251 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6252 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6253 DAG, Subtarget, dl);
6254 }
6255 }
6256 return SDValue();
6257}
6258
Dan Gohman475871a2008-07-27 21:46:04 +00006259SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006260X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006261 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006262 SDValue V1 = Op.getOperand(0);
6263 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006264 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006265 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006266 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006267 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006268 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6269 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006270 bool V1IsSplat = false;
6271 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006272 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006273 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006274 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006275 MachineFunction &MF = DAG.getMachineFunction();
6276 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006277
Dale Johannesen0488fb62010-09-30 23:57:10 +00006278 // Shuffle operations on MMX not supported.
6279 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006280 return Op;
6281
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006282 // Vector shuffle lowering takes 3 steps:
6283 //
6284 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6285 // narrowing and commutation of operands should be handled.
6286 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6287 // shuffle nodes.
6288 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6289 // so the shuffle can be broken into other shuffles and the legalizer can
6290 // try the lowering again.
6291 //
6292 // The general ideia is that no vector_shuffle operation should be left to
6293 // be matched during isel, all of them must be converted to a target specific
6294 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006295
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006296 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6297 // narrowing and commutation of operands should be handled. The actual code
6298 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006299 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006300 if (NewOp.getNode())
6301 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006302
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006303 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6304 // unpckh_undef). Only use pshufd if speed is more important than size.
6305 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006306 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006307 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006308 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006309
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006310 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006311 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006312 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006313
Dale Johannesen0488fb62010-09-30 23:57:10 +00006314 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006315 return getMOVHighToLow(Op, dl, DAG);
6316
6317 // Use to match splats
6318 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6319 (VT == MVT::v2f64 || VT == MVT::v2i64))
6320 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6321
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006322 if (X86::isPSHUFDMask(SVOp)) {
6323 // The actual implementation will match the mask in the if above and then
6324 // during isel it can match several different instructions, not only pshufd
6325 // as its name says, sad but true, emulate the behavior for now...
6326 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6327 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6328
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006329 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6330
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006331 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006332 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6333
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006334 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006335 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6336 TargetMask, DAG);
6337
6338 if (VT == MVT::v4f32)
6339 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6340 TargetMask, DAG);
6341 }
Eric Christopherfd179292009-08-27 18:07:15 +00006342
Evan Chengf26ffe92008-05-29 08:22:04 +00006343 // Check if this can be converted into a logical shift.
6344 bool isLeft = false;
6345 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006346 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006347 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006348 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006349 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006350 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006351 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006352 EVT EltVT = VT.getVectorElementType();
6353 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006354 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006355 }
Eric Christopherfd179292009-08-27 18:07:15 +00006356
Nate Begeman9008ca62009-04-27 18:41:29 +00006357 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006358 if (V1IsUndef)
6359 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006360 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006361 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006362 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006363 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006364 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6365
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006366 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006367 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6368 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006369 }
Eric Christopherfd179292009-08-27 18:07:15 +00006370
Nate Begeman9008ca62009-04-27 18:41:29 +00006371 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006372 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6373 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006374
Dale Johannesen0488fb62010-09-30 23:57:10 +00006375 if (X86::isMOVHLPSMask(SVOp))
6376 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006377
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006378 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006379 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006380
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006381 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006382 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006383
Dale Johannesen0488fb62010-09-30 23:57:10 +00006384 if (X86::isMOVLPMask(SVOp))
6385 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006386
Nate Begeman9008ca62009-04-27 18:41:29 +00006387 if (ShouldXformToMOVHLPS(SVOp) ||
6388 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6389 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006390
Evan Chengf26ffe92008-05-29 08:22:04 +00006391 if (isShift) {
6392 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006393 EVT EltVT = VT.getVectorElementType();
6394 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006395 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006396 }
Eric Christopherfd179292009-08-27 18:07:15 +00006397
Evan Cheng9eca5e82006-10-25 21:49:50 +00006398 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006399 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6400 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006401 V1IsSplat = isSplatVector(V1.getNode());
6402 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006403
Chris Lattner8a594482007-11-25 00:24:49 +00006404 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006405 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006406 Op = CommuteVectorShuffle(SVOp, DAG);
6407 SVOp = cast<ShuffleVectorSDNode>(Op);
6408 V1 = SVOp->getOperand(0);
6409 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006410 std::swap(V1IsSplat, V2IsSplat);
6411 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006412 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006413 }
6414
Nate Begeman9008ca62009-04-27 18:41:29 +00006415 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6416 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006417 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006418 return V1;
6419 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6420 // the instruction selector will not match, so get a canonical MOVL with
6421 // swapped operands to undo the commute.
6422 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006423 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006424
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006425 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006426 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006427
6428 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006429 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006430
Evan Cheng9bbbb982006-10-25 20:48:19 +00006431 if (V2IsSplat) {
6432 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006433 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006434 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006435 SDValue NewMask = NormalizeMask(SVOp, DAG);
6436 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6437 if (NSVOp != SVOp) {
6438 if (X86::isUNPCKLMask(NSVOp, true)) {
6439 return NewMask;
6440 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6441 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006442 }
6443 }
6444 }
6445
Evan Cheng9eca5e82006-10-25 21:49:50 +00006446 if (Commuted) {
6447 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006448 // FIXME: this seems wrong.
6449 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6450 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006451
6452 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006453 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006454
6455 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006456 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006457 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006458
Nate Begeman9008ca62009-04-27 18:41:29 +00006459 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006460 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006461 return CommuteVectorShuffle(SVOp, DAG);
6462
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006463 // The checks below are all present in isShuffleMaskLegal, but they are
6464 // inlined here right now to enable us to directly emit target specific
6465 // nodes, and remove one by one until they don't return Op anymore.
6466 SmallVector<int, 16> M;
6467 SVOp->getMask(M);
6468
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006469 if (isPALIGNRMask(M, VT, HasSSSE3))
6470 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6471 X86::getShufflePALIGNRImmediate(SVOp),
6472 DAG);
6473
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006474 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6475 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006476 if (VT == MVT::v2f64)
6477 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006478 if (VT == MVT::v2i64)
6479 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6480 }
6481
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006482 if (isPSHUFHWMask(M, VT))
6483 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6484 X86::getShufflePSHUFHWImmediate(SVOp),
6485 DAG);
6486
6487 if (isPSHUFLWMask(M, VT))
6488 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6489 X86::getShufflePSHUFLWImmediate(SVOp),
6490 DAG);
6491
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006492 if (isSHUFPMask(M, VT)) {
6493 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6494 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6495 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6496 TargetMask, DAG);
6497 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6498 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6499 TargetMask, DAG);
6500 }
6501
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006502 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006503 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006504 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006505 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006506
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006507 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006508 // Generate target specific nodes for 128 or 256-bit shuffles only
6509 // supported in the AVX instruction set.
6510 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006511
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006512 // Handle VPERMILPS* permutations
6513 if (isVPERMILPSMask(M, VT, Subtarget))
6514 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6515 getShuffleVPERMILPSImmediate(SVOp), DAG);
6516
6517 // Handle VPERMILPD* permutations
6518 if (isVPERMILPDMask(M, VT, Subtarget))
6519 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6520 getShuffleVPERMILPDImmediate(SVOp), DAG);
6521
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00006522 // Handle VPERM2F128 permutations
6523 if (isVPERM2F128Mask(M, VT, Subtarget))
6524 return getTargetShuffleNode(X86ISD::VPERM2F128, dl, VT, V1, V2,
6525 getShuffleVPERM2F128Immediate(SVOp), DAG);
6526
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006527 //===--------------------------------------------------------------------===//
6528 // Since no target specific shuffle was selected for this generic one,
6529 // lower it into other known shuffles. FIXME: this isn't true yet, but
6530 // this is the plan.
6531 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006532
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006533 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6534 if (VT == MVT::v8i16) {
6535 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6536 if (NewOp.getNode())
6537 return NewOp;
6538 }
6539
6540 if (VT == MVT::v16i8) {
6541 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6542 if (NewOp.getNode())
6543 return NewOp;
6544 }
6545
6546 // Handle all 128-bit wide vectors with 4 elements, and match them with
6547 // several different shuffle types.
6548 if (NumElems == 4 && VT.getSizeInBits() == 128)
6549 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6550
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006551 // Handle general 256-bit shuffles
6552 if (VT.is256BitVector())
6553 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6554
Dan Gohman475871a2008-07-27 21:46:04 +00006555 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006556}
6557
Dan Gohman475871a2008-07-27 21:46:04 +00006558SDValue
6559X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006560 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006561 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006562 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006563
6564 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6565 return SDValue();
6566
Duncan Sands83ec4b62008-06-06 12:08:01 +00006567 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006568 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006569 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006570 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006571 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006572 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006573 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006574 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6575 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6576 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006577 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6578 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006579 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006580 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006581 Op.getOperand(0)),
6582 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006583 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006584 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006585 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006586 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006587 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006588 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006589 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6590 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006591 // result has a single use which is a store or a bitcast to i32. And in
6592 // the case of a store, it's not worth it if the index is a constant 0,
6593 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006594 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006595 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006596 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006597 if ((User->getOpcode() != ISD::STORE ||
6598 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6599 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006600 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006601 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006602 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006603 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006604 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006605 Op.getOperand(0)),
6606 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006607 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006608 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006609 // ExtractPS works with constant index.
6610 if (isa<ConstantSDNode>(Op.getOperand(1)))
6611 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006612 }
Dan Gohman475871a2008-07-27 21:46:04 +00006613 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006614}
6615
6616
Dan Gohman475871a2008-07-27 21:46:04 +00006617SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006618X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6619 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006620 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006621 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006622
David Greene74a579d2011-02-10 16:57:36 +00006623 SDValue Vec = Op.getOperand(0);
6624 EVT VecVT = Vec.getValueType();
6625
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006626 // If this is a 256-bit vector result, first extract the 128-bit vector and
6627 // then extract the element from the 128-bit vector.
6628 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006629 DebugLoc dl = Op.getNode()->getDebugLoc();
6630 unsigned NumElems = VecVT.getVectorNumElements();
6631 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006632 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6633
6634 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006635 bool Upper = IdxVal >= NumElems/2;
6636 Vec = Extract128BitVector(Vec,
6637 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006638
David Greene74a579d2011-02-10 16:57:36 +00006639 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006640 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006641 }
6642
6643 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6644
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006645 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006646 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006647 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006648 return Res;
6649 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006650
Owen Andersone50ed302009-08-10 22:56:29 +00006651 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006652 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006653 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006654 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006655 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006656 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006657 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006658 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6659 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006660 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006661 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006662 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006663 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006664 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006665 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006666 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006667 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006668 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006669 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006670 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006671 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006672 if (Idx == 0)
6673 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006674
Evan Cheng0db9fe62006-04-25 20:13:52 +00006675 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006676 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006677 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006678 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006679 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006680 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006681 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006682 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006683 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6684 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6685 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006686 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006687 if (Idx == 0)
6688 return Op;
6689
6690 // UNPCKHPD the element to the lowest double word, then movsd.
6691 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6692 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006693 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006694 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006695 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006696 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006697 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006698 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006699 }
6700
Dan Gohman475871a2008-07-27 21:46:04 +00006701 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006702}
6703
Dan Gohman475871a2008-07-27 21:46:04 +00006704SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006705X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6706 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006707 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006708 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006709 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006710
Dan Gohman475871a2008-07-27 21:46:04 +00006711 SDValue N0 = Op.getOperand(0);
6712 SDValue N1 = Op.getOperand(1);
6713 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006714
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006715 if (VT.getSizeInBits() == 256)
6716 return SDValue();
6717
Dan Gohman8a55ce42009-09-23 21:02:20 +00006718 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006719 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006720 unsigned Opc;
6721 if (VT == MVT::v8i16)
6722 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006723 else if (VT == MVT::v16i8)
6724 Opc = X86ISD::PINSRB;
6725 else
6726 Opc = X86ISD::PINSRB;
6727
Nate Begeman14d12ca2008-02-11 04:19:36 +00006728 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6729 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006730 if (N1.getValueType() != MVT::i32)
6731 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6732 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006733 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006734 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006735 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006736 // Bits [7:6] of the constant are the source select. This will always be
6737 // zero here. The DAG Combiner may combine an extract_elt index into these
6738 // bits. For example (insert (extract, 3), 2) could be matched by putting
6739 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006740 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006741 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006742 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006743 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006744 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006745 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006746 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006747 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006748 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006749 // PINSR* works with constant index.
6750 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006751 }
Dan Gohman475871a2008-07-27 21:46:04 +00006752 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006753}
6754
Dan Gohman475871a2008-07-27 21:46:04 +00006755SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006756X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006757 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006758 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006759
David Greene6b381262011-02-09 15:32:06 +00006760 DebugLoc dl = Op.getDebugLoc();
6761 SDValue N0 = Op.getOperand(0);
6762 SDValue N1 = Op.getOperand(1);
6763 SDValue N2 = Op.getOperand(2);
6764
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006765 // If this is a 256-bit vector result, first extract the 128-bit vector,
6766 // insert the element into the extracted half and then place it back.
6767 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006768 if (!isa<ConstantSDNode>(N2))
6769 return SDValue();
6770
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006771 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006772 unsigned NumElems = VT.getVectorNumElements();
6773 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006774 bool Upper = IdxVal >= NumElems/2;
6775 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6776 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006777
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006778 // Insert the element into the desired half.
6779 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6780 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006781
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006782 // Insert the changed part back to the 256-bit vector
6783 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006784 }
6785
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006786 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006787 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6788
Dan Gohman8a55ce42009-09-23 21:02:20 +00006789 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006790 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006791
Dan Gohman8a55ce42009-09-23 21:02:20 +00006792 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006793 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6794 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006795 if (N1.getValueType() != MVT::i32)
6796 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6797 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006798 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006799 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006800 }
Dan Gohman475871a2008-07-27 21:46:04 +00006801 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006802}
6803
Dan Gohman475871a2008-07-27 21:46:04 +00006804SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006805X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006806 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006807 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006808 EVT OpVT = Op.getValueType();
6809
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006810 // If this is a 256-bit vector result, first insert into a 128-bit
6811 // vector and then insert into the 256-bit vector.
6812 if (OpVT.getSizeInBits() > 128) {
6813 // Insert into a 128-bit vector.
6814 EVT VT128 = EVT::getVectorVT(*Context,
6815 OpVT.getVectorElementType(),
6816 OpVT.getVectorNumElements() / 2);
6817
6818 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6819
6820 // Insert the 128-bit vector.
6821 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6822 DAG.getConstant(0, MVT::i32),
6823 DAG, dl);
6824 }
6825
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006826 if (Op.getValueType() == MVT::v1i64 &&
6827 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006828 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006829
Owen Anderson825b72b2009-08-11 20:47:22 +00006830 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006831 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6832 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006833 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006834 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006835}
6836
David Greene91585092011-01-26 15:38:49 +00006837// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6838// a simple subregister reference or explicit instructions to grab
6839// upper bits of a vector.
6840SDValue
6841X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6842 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006843 DebugLoc dl = Op.getNode()->getDebugLoc();
6844 SDValue Vec = Op.getNode()->getOperand(0);
6845 SDValue Idx = Op.getNode()->getOperand(1);
6846
6847 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6848 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6849 return Extract128BitVector(Vec, Idx, DAG, dl);
6850 }
David Greene91585092011-01-26 15:38:49 +00006851 }
6852 return SDValue();
6853}
6854
David Greenecfe33c42011-01-26 19:13:22 +00006855// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6856// simple superregister reference or explicit instructions to insert
6857// the upper bits of a vector.
6858SDValue
6859X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6860 if (Subtarget->hasAVX()) {
6861 DebugLoc dl = Op.getNode()->getDebugLoc();
6862 SDValue Vec = Op.getNode()->getOperand(0);
6863 SDValue SubVec = Op.getNode()->getOperand(1);
6864 SDValue Idx = Op.getNode()->getOperand(2);
6865
6866 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6867 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006868 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006869 }
6870 }
6871 return SDValue();
6872}
6873
Bill Wendling056292f2008-09-16 21:48:12 +00006874// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6875// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6876// one of the above mentioned nodes. It has to be wrapped because otherwise
6877// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6878// be used to form addressing mode. These wrapped nodes will be selected
6879// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006880SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006881X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006882 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006883
Chris Lattner41621a22009-06-26 19:22:52 +00006884 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6885 // global base reg.
6886 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006887 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006888 CodeModel::Model M = getTargetMachine().getCodeModel();
6889
Chris Lattner4f066492009-07-11 20:29:19 +00006890 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006891 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006892 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006893 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006894 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006895 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006896 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006897
Evan Cheng1606e8e2009-03-13 07:51:59 +00006898 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006899 CP->getAlignment(),
6900 CP->getOffset(), OpFlag);
6901 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006902 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006903 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006904 if (OpFlag) {
6905 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006906 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006907 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006908 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006909 }
6910
6911 return Result;
6912}
6913
Dan Gohmand858e902010-04-17 15:26:15 +00006914SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006915 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006916
Chris Lattner18c59872009-06-27 04:16:01 +00006917 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6918 // global base reg.
6919 unsigned char OpFlag = 0;
6920 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006921 CodeModel::Model M = getTargetMachine().getCodeModel();
6922
Chris Lattner4f066492009-07-11 20:29:19 +00006923 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006924 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006925 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006926 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006927 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006928 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006929 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006930
Chris Lattner18c59872009-06-27 04:16:01 +00006931 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6932 OpFlag);
6933 DebugLoc DL = JT->getDebugLoc();
6934 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006935
Chris Lattner18c59872009-06-27 04:16:01 +00006936 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006937 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006938 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6939 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006940 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006941 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006942
Chris Lattner18c59872009-06-27 04:16:01 +00006943 return Result;
6944}
6945
6946SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006947X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006948 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006949
Chris Lattner18c59872009-06-27 04:16:01 +00006950 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6951 // global base reg.
6952 unsigned char OpFlag = 0;
6953 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006954 CodeModel::Model M = getTargetMachine().getCodeModel();
6955
Chris Lattner4f066492009-07-11 20:29:19 +00006956 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00006957 (M == CodeModel::Small || M == CodeModel::Kernel)) {
6958 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
6959 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00006960 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00006961 } else if (Subtarget->isPICStyleGOT()) {
6962 OpFlag = X86II::MO_GOT;
6963 } else if (Subtarget->isPICStyleStubPIC()) {
6964 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
6965 } else if (Subtarget->isPICStyleStubNoDynamic()) {
6966 OpFlag = X86II::MO_DARWIN_NONLAZY;
6967 }
Eric Christopherfd179292009-08-27 18:07:15 +00006968
Chris Lattner18c59872009-06-27 04:16:01 +00006969 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006970
Chris Lattner18c59872009-06-27 04:16:01 +00006971 DebugLoc DL = Op.getDebugLoc();
6972 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006973
6974
Chris Lattner18c59872009-06-27 04:16:01 +00006975 // With PIC, the address is actually $g + Offset.
6976 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006977 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006978 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6979 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006980 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006981 Result);
6982 }
Eric Christopherfd179292009-08-27 18:07:15 +00006983
Eli Friedman586272d2011-08-11 01:48:05 +00006984 // For symbols that require a load from a stub to get the address, emit the
6985 // load.
6986 if (isGlobalStubReference(OpFlag))
6987 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
6988 MachinePointerInfo::getGOT(), false, false, 0);
6989
Chris Lattner18c59872009-06-27 04:16:01 +00006990 return Result;
6991}
6992
Dan Gohman475871a2008-07-27 21:46:04 +00006993SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006994X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006995 // Create the TargetBlockAddressAddress node.
6996 unsigned char OpFlags =
6997 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006998 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006999 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00007000 DebugLoc dl = Op.getDebugLoc();
7001 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7002 /*isTarget=*/true, OpFlags);
7003
Dan Gohmanf705adb2009-10-30 01:28:02 +00007004 if (Subtarget->isPICStyleRIPRel() &&
7005 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007006 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7007 else
7008 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007009
Dan Gohman29cbade2009-11-20 23:18:13 +00007010 // With PIC, the address is actually $g + Offset.
7011 if (isGlobalRelativeToPICBase(OpFlags)) {
7012 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7013 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7014 Result);
7015 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007016
7017 return Result;
7018}
7019
7020SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007021X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00007022 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00007023 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007024 // Create the TargetGlobalAddress node, folding in the constant
7025 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007026 unsigned char OpFlags =
7027 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007028 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007029 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007030 if (OpFlags == X86II::MO_NO_FLAG &&
7031 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007032 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007033 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007034 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007035 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007036 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007037 }
Eric Christopherfd179292009-08-27 18:07:15 +00007038
Chris Lattner4f066492009-07-11 20:29:19 +00007039 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007040 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007041 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7042 else
7043 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007044
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007045 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007046 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007047 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7048 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007049 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007050 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007051
Chris Lattner36c25012009-07-10 07:34:39 +00007052 // For globals that require a load from a stub to get the address, emit the
7053 // load.
7054 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007055 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007056 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007057
Dan Gohman6520e202008-10-18 02:06:02 +00007058 // If there was a non-zero offset that we didn't fold, create an explicit
7059 // addition for it.
7060 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007061 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007062 DAG.getConstant(Offset, getPointerTy()));
7063
Evan Cheng0db9fe62006-04-25 20:13:52 +00007064 return Result;
7065}
7066
Evan Chengda43bcf2008-09-24 00:05:32 +00007067SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007068X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007069 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007070 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007071 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007072}
7073
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007074static SDValue
7075GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007076 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00007077 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007078 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007079 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007080 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007081 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007082 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007083 GA->getOffset(),
7084 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007085 if (InFlag) {
7086 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007087 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007088 } else {
7089 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007090 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007091 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007092
7093 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007094 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007095
Rafael Espindola15f1b662009-04-24 12:59:40 +00007096 SDValue Flag = Chain.getValue(1);
7097 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007098}
7099
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007100// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007101static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007102LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007103 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007104 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007105 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7106 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007107 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007108 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007109 InFlag = Chain.getValue(1);
7110
Chris Lattnerb903bed2009-06-26 21:20:29 +00007111 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007112}
7113
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007114// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007115static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007116LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007117 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007118 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7119 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007120}
7121
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007122// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7123// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007124static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007125 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00007126 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007127 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007128
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007129 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7130 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7131 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007132
Michael J. Spencerec38de22010-10-10 22:04:20 +00007133 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007134 DAG.getIntPtrConstant(0),
7135 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007136
Chris Lattnerb903bed2009-06-26 21:20:29 +00007137 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007138 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7139 // initialexec.
7140 unsigned WrapperKind = X86ISD::Wrapper;
7141 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007142 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00007143 } else if (is64Bit) {
7144 assert(model == TLSModel::InitialExec);
7145 OperandFlags = X86II::MO_GOTTPOFF;
7146 WrapperKind = X86ISD::WrapperRIP;
7147 } else {
7148 assert(model == TLSModel::InitialExec);
7149 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00007150 }
Eric Christopherfd179292009-08-27 18:07:15 +00007151
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007152 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7153 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007154 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007155 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007156 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007157 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007158
Rafael Espindola9a580232009-02-27 13:37:18 +00007159 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007160 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007161 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007162
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007163 // The address of the thread local variable is the add of the thread
7164 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007165 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007166}
7167
Dan Gohman475871a2008-07-27 21:46:04 +00007168SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007169X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007170
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007171 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007172 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007173
Eric Christopher30ef0e52010-06-03 04:07:48 +00007174 if (Subtarget->isTargetELF()) {
7175 // TODO: implement the "local dynamic" model
7176 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00007177
Eric Christopher30ef0e52010-06-03 04:07:48 +00007178 // If GV is an alias then use the aliasee for determining
7179 // thread-localness.
7180 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7181 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007182
7183 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00007184 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007185
Eric Christopher30ef0e52010-06-03 04:07:48 +00007186 switch (model) {
7187 case TLSModel::GeneralDynamic:
7188 case TLSModel::LocalDynamic: // not implemented
7189 if (Subtarget->is64Bit())
7190 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7191 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007192
Eric Christopher30ef0e52010-06-03 04:07:48 +00007193 case TLSModel::InitialExec:
7194 case TLSModel::LocalExec:
7195 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7196 Subtarget->is64Bit());
7197 }
7198 } else if (Subtarget->isTargetDarwin()) {
7199 // Darwin only has one model of TLS. Lower to that.
7200 unsigned char OpFlag = 0;
7201 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7202 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007203
Eric Christopher30ef0e52010-06-03 04:07:48 +00007204 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7205 // global base reg.
7206 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7207 !Subtarget->is64Bit();
7208 if (PIC32)
7209 OpFlag = X86II::MO_TLVP_PIC_BASE;
7210 else
7211 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007212 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007213 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007214 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007215 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007216 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007217
Eric Christopher30ef0e52010-06-03 04:07:48 +00007218 // With PIC32, the address is actually $g + Offset.
7219 if (PIC32)
7220 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7221 DAG.getNode(X86ISD::GlobalBaseReg,
7222 DebugLoc(), getPointerTy()),
7223 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007224
Eric Christopher30ef0e52010-06-03 04:07:48 +00007225 // Lowering the machine isd will make sure everything is in the right
7226 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007227 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007228 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007229 SDValue Args[] = { Chain, Offset };
7230 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007231
Eric Christopher30ef0e52010-06-03 04:07:48 +00007232 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7233 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7234 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007235
Eric Christopher30ef0e52010-06-03 04:07:48 +00007236 // And our return value (tls address) is in the standard call return value
7237 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007238 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7239 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007240 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007241
Eric Christopher30ef0e52010-06-03 04:07:48 +00007242 assert(false &&
7243 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007244
Torok Edwinc23197a2009-07-14 16:55:14 +00007245 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007246 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007247}
7248
Evan Cheng0db9fe62006-04-25 20:13:52 +00007249
Nadav Rotem43012222011-05-11 08:12:09 +00007250/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007251/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007252SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007253 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007254 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007255 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007256 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007257 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007258 SDValue ShOpLo = Op.getOperand(0);
7259 SDValue ShOpHi = Op.getOperand(1);
7260 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007261 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007262 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007263 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007264
Dan Gohman475871a2008-07-27 21:46:04 +00007265 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007266 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007267 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7268 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007269 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007270 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7271 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007272 }
Evan Chenge3413162006-01-09 18:33:28 +00007273
Owen Anderson825b72b2009-08-11 20:47:22 +00007274 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7275 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007276 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007277 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007278
Dan Gohman475871a2008-07-27 21:46:04 +00007279 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007280 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007281 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7282 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007283
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007284 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007285 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7286 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007287 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007288 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7289 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007290 }
7291
Dan Gohman475871a2008-07-27 21:46:04 +00007292 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007293 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007294}
Evan Chenga3195e82006-01-12 22:54:21 +00007295
Dan Gohmand858e902010-04-17 15:26:15 +00007296SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7297 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007298 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007299
Dale Johannesen0488fb62010-09-30 23:57:10 +00007300 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007301 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007302
Owen Anderson825b72b2009-08-11 20:47:22 +00007303 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007304 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007305
Eli Friedman36df4992009-05-27 00:47:34 +00007306 // These are really Legal; return the operand so the caller accepts it as
7307 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007308 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007309 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007310 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007311 Subtarget->is64Bit()) {
7312 return Op;
7313 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007314
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007315 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007316 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007317 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007318 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007319 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007320 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007321 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007322 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007323 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007324 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7325}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007326
Owen Andersone50ed302009-08-10 22:56:29 +00007327SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007328 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007329 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007330 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007331 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007332 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007333 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007334 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007335 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007336 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007337 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007338
Chris Lattner492a43e2010-09-22 01:28:21 +00007339 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007340
Stuart Hastings84be9582011-06-02 15:57:11 +00007341 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7342 MachineMemOperand *MMO;
7343 if (FI) {
7344 int SSFI = FI->getIndex();
7345 MMO =
7346 DAG.getMachineFunction()
7347 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7348 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7349 } else {
7350 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7351 StackSlot = StackSlot.getOperand(1);
7352 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007353 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007354 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7355 X86ISD::FILD, DL,
7356 Tys, Ops, array_lengthof(Ops),
7357 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007358
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007359 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007360 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007361 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007362
7363 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7364 // shouldn't be necessary except that RFP cannot be live across
7365 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007366 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007367 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7368 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007369 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007370 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007371 SDValue Ops[] = {
7372 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7373 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007374 MachineMemOperand *MMO =
7375 DAG.getMachineFunction()
7376 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007377 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007378
Chris Lattner492a43e2010-09-22 01:28:21 +00007379 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7380 Ops, array_lengthof(Ops),
7381 Op.getValueType(), MMO);
7382 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007383 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007384 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007385 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007386
Evan Cheng0db9fe62006-04-25 20:13:52 +00007387 return Result;
7388}
7389
Bill Wendling8b8a6362009-01-17 03:56:04 +00007390// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007391SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7392 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007393 // This algorithm is not obvious. Here it is in C code, more or less:
7394 /*
7395 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7396 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7397 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007398
Bill Wendling8b8a6362009-01-17 03:56:04 +00007399 // Copy ints to xmm registers.
7400 __m128i xh = _mm_cvtsi32_si128( hi );
7401 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007402
Bill Wendling8b8a6362009-01-17 03:56:04 +00007403 // Combine into low half of a single xmm register.
7404 __m128i x = _mm_unpacklo_epi32( xh, xl );
7405 __m128d d;
7406 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007407
Bill Wendling8b8a6362009-01-17 03:56:04 +00007408 // Merge in appropriate exponents to give the integer bits the right
7409 // magnitude.
7410 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007411
Bill Wendling8b8a6362009-01-17 03:56:04 +00007412 // Subtract away the biases to deal with the IEEE-754 double precision
7413 // implicit 1.
7414 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007415
Bill Wendling8b8a6362009-01-17 03:56:04 +00007416 // All conversions up to here are exact. The correctly rounded result is
7417 // calculated using the current rounding mode using the following
7418 // horizontal add.
7419 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7420 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7421 // store doesn't really need to be here (except
7422 // maybe to zero the other double)
7423 return sd;
7424 }
7425 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007426
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007427 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007428 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007429
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007430 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007431 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007432 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7433 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7434 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7435 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007436 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007437 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007438
Bill Wendling8b8a6362009-01-17 03:56:04 +00007439 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007440 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007441 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007442 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007443 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007444 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007445 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007446
Owen Anderson825b72b2009-08-11 20:47:22 +00007447 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7448 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007449 Op.getOperand(0),
7450 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007451 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7452 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007453 Op.getOperand(0),
7454 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007455 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7456 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007457 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007458 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007459 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007460 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007461 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007462 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007463 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007464 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007465
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007466 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007467 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007468 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7469 DAG.getUNDEF(MVT::v2f64), ShufMask);
7470 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7471 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007472 DAG.getIntPtrConstant(0));
7473}
7474
Bill Wendling8b8a6362009-01-17 03:56:04 +00007475// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007476SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7477 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007478 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007479 // FP constant to bias correct the final result.
7480 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007481 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007482
7483 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007484 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007485 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007486
Owen Anderson825b72b2009-08-11 20:47:22 +00007487 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007488 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007489 DAG.getIntPtrConstant(0));
7490
7491 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007492 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007493 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007494 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007495 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007496 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007497 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007498 MVT::v2f64, Bias)));
7499 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007500 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007501 DAG.getIntPtrConstant(0));
7502
7503 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007504 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007505
7506 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007507 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007508
Owen Anderson825b72b2009-08-11 20:47:22 +00007509 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007510 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007511 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007512 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007513 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007514 }
7515
7516 // Handle final rounding.
7517 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007518}
7519
Dan Gohmand858e902010-04-17 15:26:15 +00007520SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7521 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007522 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007523 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007524
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007525 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007526 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7527 // the optimization here.
7528 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007529 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007530
Owen Andersone50ed302009-08-10 22:56:29 +00007531 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007532 EVT DstVT = Op.getValueType();
7533 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007534 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007535 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007536 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007537
7538 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007539 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007540 if (SrcVT == MVT::i32) {
7541 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7542 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7543 getPointerTy(), StackSlot, WordOff);
7544 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007545 StackSlot, MachinePointerInfo(),
7546 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007547 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007548 OffsetSlot, MachinePointerInfo(),
7549 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007550 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7551 return Fild;
7552 }
7553
7554 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7555 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007556 StackSlot, MachinePointerInfo(),
7557 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007558 // For i64 source, we need to add the appropriate power of 2 if the input
7559 // was negative. This is the same as the optimization in
7560 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7561 // we must be careful to do the computation in x87 extended precision, not
7562 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007563 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7564 MachineMemOperand *MMO =
7565 DAG.getMachineFunction()
7566 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7567 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007568
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007569 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7570 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007571 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7572 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007573
7574 APInt FF(32, 0x5F800000ULL);
7575
7576 // Check whether the sign bit is set.
7577 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7578 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7579 ISD::SETLT);
7580
7581 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7582 SDValue FudgePtr = DAG.getConstantPool(
7583 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7584 getPointerTy());
7585
7586 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7587 SDValue Zero = DAG.getIntPtrConstant(0);
7588 SDValue Four = DAG.getIntPtrConstant(4);
7589 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7590 Zero, Four);
7591 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7592
7593 // Load the value out, extending it from f32 to f80.
7594 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007595 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007596 FudgePtr, MachinePointerInfo::getConstantPool(),
7597 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007598 // Extend everything to 80 bits to force it to be done on x87.
7599 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7600 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007601}
7602
Dan Gohman475871a2008-07-27 21:46:04 +00007603std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007604FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007605 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007606
Owen Andersone50ed302009-08-10 22:56:29 +00007607 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007608
7609 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007610 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7611 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007612 }
7613
Owen Anderson825b72b2009-08-11 20:47:22 +00007614 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7615 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007616 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007617
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007618 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007619 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007620 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007621 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007622 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007623 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007624 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007625 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007626
Evan Cheng87c89352007-10-15 20:11:21 +00007627 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7628 // stack slot.
7629 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007630 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007631 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007632 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007633
Michael J. Spencerec38de22010-10-10 22:04:20 +00007634
7635
Evan Cheng0db9fe62006-04-25 20:13:52 +00007636 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007637 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007638 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007639 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7640 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7641 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007642 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007643
Dan Gohman475871a2008-07-27 21:46:04 +00007644 SDValue Chain = DAG.getEntryNode();
7645 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007646 EVT TheVT = Op.getOperand(0).getValueType();
7647 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007648 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007649 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007650 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007651 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007652 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007653 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007654 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007655 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007656
Chris Lattner492a43e2010-09-22 01:28:21 +00007657 MachineMemOperand *MMO =
7658 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7659 MachineMemOperand::MOLoad, MemSize, MemSize);
7660 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7661 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007662 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007663 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007664 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7665 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007666
Chris Lattner07290932010-09-22 01:05:16 +00007667 MachineMemOperand *MMO =
7668 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7669 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007670
Evan Cheng0db9fe62006-04-25 20:13:52 +00007671 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007672 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007673 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7674 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007675
Chris Lattner27a6c732007-11-24 07:07:01 +00007676 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007677}
7678
Dan Gohmand858e902010-04-17 15:26:15 +00007679SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7680 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007681 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007682 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007683
Eli Friedman948e95a2009-05-23 09:59:16 +00007684 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007685 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007686 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7687 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007688
Chris Lattner27a6c732007-11-24 07:07:01 +00007689 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007690 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007691 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007692}
7693
Dan Gohmand858e902010-04-17 15:26:15 +00007694SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7695 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007696 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7697 SDValue FIST = Vals.first, StackSlot = Vals.second;
7698 assert(FIST.getNode() && "Unexpected failure");
7699
7700 // Load the result.
7701 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007702 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007703}
7704
Dan Gohmand858e902010-04-17 15:26:15 +00007705SDValue X86TargetLowering::LowerFABS(SDValue Op,
7706 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007707 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007708 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007709 EVT VT = Op.getValueType();
7710 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007711 if (VT.isVector())
7712 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007713 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007714 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007715 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007716 CV.push_back(C);
7717 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007718 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007719 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007720 CV.push_back(C);
7721 CV.push_back(C);
7722 CV.push_back(C);
7723 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007724 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007725 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007726 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007727 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007728 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007729 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007730 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007731}
7732
Dan Gohmand858e902010-04-17 15:26:15 +00007733SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007734 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007735 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007736 EVT VT = Op.getValueType();
7737 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007738 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007739 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007740 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007741 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007742 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007743 CV.push_back(C);
7744 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007745 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007746 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007747 CV.push_back(C);
7748 CV.push_back(C);
7749 CV.push_back(C);
7750 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007751 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007752 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007753 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007754 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007755 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007756 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007757 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007758 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007759 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007760 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007761 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007762 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007763 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007764 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007765 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007766}
7767
Dan Gohmand858e902010-04-17 15:26:15 +00007768SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007769 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007770 SDValue Op0 = Op.getOperand(0);
7771 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007772 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007773 EVT VT = Op.getValueType();
7774 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007775
7776 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007777 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007778 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007779 SrcVT = VT;
7780 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007781 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007782 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007783 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007784 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007785 }
7786
7787 // At this point the operands and the result should have the same
7788 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007789
Evan Cheng68c47cb2007-01-05 07:55:56 +00007790 // First get the sign bit of second operand.
7791 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007792 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007793 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7794 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007795 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007796 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7797 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7798 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7799 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007800 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007801 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007802 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007803 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007804 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007805 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007806 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007807
7808 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007809 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007810 // Op0 is MVT::f32, Op1 is MVT::f64.
7811 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7812 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7813 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007814 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007815 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007816 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007817 }
7818
Evan Cheng73d6cf12007-01-05 21:37:56 +00007819 // Clear first operand sign bit.
7820 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007821 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007822 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7823 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007824 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007825 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7826 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7827 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7828 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007829 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007830 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007831 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007832 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007833 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007834 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007835 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007836
7837 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007838 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007839}
7840
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007841SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7842 SDValue N0 = Op.getOperand(0);
7843 DebugLoc dl = Op.getDebugLoc();
7844 EVT VT = Op.getValueType();
7845
7846 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7847 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7848 DAG.getConstant(1, VT));
7849 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7850}
7851
Dan Gohman076aee32009-03-04 19:44:21 +00007852/// Emit nodes that will be selected as "test Op0,Op0", or something
7853/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007854SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007855 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007856 DebugLoc dl = Op.getDebugLoc();
7857
Dan Gohman31125812009-03-07 01:58:32 +00007858 // CF and OF aren't always set the way we want. Determine which
7859 // of these we need.
7860 bool NeedCF = false;
7861 bool NeedOF = false;
7862 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007863 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007864 case X86::COND_A: case X86::COND_AE:
7865 case X86::COND_B: case X86::COND_BE:
7866 NeedCF = true;
7867 break;
7868 case X86::COND_G: case X86::COND_GE:
7869 case X86::COND_L: case X86::COND_LE:
7870 case X86::COND_O: case X86::COND_NO:
7871 NeedOF = true;
7872 break;
Dan Gohman31125812009-03-07 01:58:32 +00007873 }
7874
Dan Gohman076aee32009-03-04 19:44:21 +00007875 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007876 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7877 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007878 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7879 // Emit a CMP with 0, which is the TEST pattern.
7880 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7881 DAG.getConstant(0, Op.getValueType()));
7882
7883 unsigned Opcode = 0;
7884 unsigned NumOperands = 0;
7885 switch (Op.getNode()->getOpcode()) {
7886 case ISD::ADD:
7887 // Due to an isel shortcoming, be conservative if this add is likely to be
7888 // selected as part of a load-modify-store instruction. When the root node
7889 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7890 // uses of other nodes in the match, such as the ADD in this case. This
7891 // leads to the ADD being left around and reselected, with the result being
7892 // two adds in the output. Alas, even if none our users are stores, that
7893 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7894 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7895 // climbing the DAG back to the root, and it doesn't seem to be worth the
7896 // effort.
7897 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007898 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007899 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7900 goto default_case;
7901
7902 if (ConstantSDNode *C =
7903 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7904 // An add of one will be selected as an INC.
7905 if (C->getAPIntValue() == 1) {
7906 Opcode = X86ISD::INC;
7907 NumOperands = 1;
7908 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007909 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007910
7911 // An add of negative one (subtract of one) will be selected as a DEC.
7912 if (C->getAPIntValue().isAllOnesValue()) {
7913 Opcode = X86ISD::DEC;
7914 NumOperands = 1;
7915 break;
7916 }
Dan Gohman076aee32009-03-04 19:44:21 +00007917 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007918
7919 // Otherwise use a regular EFLAGS-setting add.
7920 Opcode = X86ISD::ADD;
7921 NumOperands = 2;
7922 break;
7923 case ISD::AND: {
7924 // If the primary and result isn't used, don't bother using X86ISD::AND,
7925 // because a TEST instruction will be better.
7926 bool NonFlagUse = false;
7927 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7928 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7929 SDNode *User = *UI;
7930 unsigned UOpNo = UI.getOperandNo();
7931 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7932 // Look pass truncate.
7933 UOpNo = User->use_begin().getOperandNo();
7934 User = *User->use_begin();
7935 }
7936
7937 if (User->getOpcode() != ISD::BRCOND &&
7938 User->getOpcode() != ISD::SETCC &&
7939 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7940 NonFlagUse = true;
7941 break;
7942 }
Dan Gohman076aee32009-03-04 19:44:21 +00007943 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007944
7945 if (!NonFlagUse)
7946 break;
7947 }
7948 // FALL THROUGH
7949 case ISD::SUB:
7950 case ISD::OR:
7951 case ISD::XOR:
7952 // Due to the ISEL shortcoming noted above, be conservative if this op is
7953 // likely to be selected as part of a load-modify-store instruction.
7954 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7955 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7956 if (UI->getOpcode() == ISD::STORE)
7957 goto default_case;
7958
7959 // Otherwise use a regular EFLAGS-setting instruction.
7960 switch (Op.getNode()->getOpcode()) {
7961 default: llvm_unreachable("unexpected operator!");
7962 case ISD::SUB: Opcode = X86ISD::SUB; break;
7963 case ISD::OR: Opcode = X86ISD::OR; break;
7964 case ISD::XOR: Opcode = X86ISD::XOR; break;
7965 case ISD::AND: Opcode = X86ISD::AND; break;
7966 }
7967
7968 NumOperands = 2;
7969 break;
7970 case X86ISD::ADD:
7971 case X86ISD::SUB:
7972 case X86ISD::INC:
7973 case X86ISD::DEC:
7974 case X86ISD::OR:
7975 case X86ISD::XOR:
7976 case X86ISD::AND:
7977 return SDValue(Op.getNode(), 1);
7978 default:
7979 default_case:
7980 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007981 }
7982
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007983 if (Opcode == 0)
7984 // Emit a CMP with 0, which is the TEST pattern.
7985 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7986 DAG.getConstant(0, Op.getValueType()));
7987
7988 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7989 SmallVector<SDValue, 4> Ops;
7990 for (unsigned i = 0; i != NumOperands; ++i)
7991 Ops.push_back(Op.getOperand(i));
7992
7993 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7994 DAG.ReplaceAllUsesWith(Op, New);
7995 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007996}
7997
7998/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7999/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008000SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008001 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008002 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8003 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00008004 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00008005
8006 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008007 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00008008}
8009
Evan Chengd40d03e2010-01-06 19:38:29 +00008010/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8011/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00008012SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8013 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008014 SDValue Op0 = And.getOperand(0);
8015 SDValue Op1 = And.getOperand(1);
8016 if (Op0.getOpcode() == ISD::TRUNCATE)
8017 Op0 = Op0.getOperand(0);
8018 if (Op1.getOpcode() == ISD::TRUNCATE)
8019 Op1 = Op1.getOperand(0);
8020
Evan Chengd40d03e2010-01-06 19:38:29 +00008021 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008022 if (Op1.getOpcode() == ISD::SHL)
8023 std::swap(Op0, Op1);
8024 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008025 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8026 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008027 // If we looked past a truncate, check that it's only truncating away
8028 // known zeros.
8029 unsigned BitWidth = Op0.getValueSizeInBits();
8030 unsigned AndBitWidth = And.getValueSizeInBits();
8031 if (BitWidth > AndBitWidth) {
8032 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8033 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8034 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8035 return SDValue();
8036 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008037 LHS = Op1;
8038 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00008039 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008040 } else if (Op1.getOpcode() == ISD::Constant) {
8041 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8042 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00008043 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
8044 LHS = AndLHS.getOperand(0);
8045 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008046 }
Evan Chengd40d03e2010-01-06 19:38:29 +00008047 }
Evan Cheng0488db92007-09-25 01:57:46 +00008048
Evan Chengd40d03e2010-01-06 19:38:29 +00008049 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00008050 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00008051 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00008052 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00008053 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00008054 // Also promote i16 to i32 for performance / code size reason.
8055 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00008056 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00008057 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00008058
Evan Chengd40d03e2010-01-06 19:38:29 +00008059 // If the operand types disagree, extend the shift amount to match. Since
8060 // BT ignores high bits (like shifts) we can use anyextend.
8061 if (LHS.getValueType() != RHS.getValueType())
8062 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008063
Evan Chengd40d03e2010-01-06 19:38:29 +00008064 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8065 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8066 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8067 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00008068 }
8069
Evan Cheng54de3ea2010-01-05 06:52:31 +00008070 return SDValue();
8071}
8072
Dan Gohmand858e902010-04-17 15:26:15 +00008073SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00008074 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8075 SDValue Op0 = Op.getOperand(0);
8076 SDValue Op1 = Op.getOperand(1);
8077 DebugLoc dl = Op.getDebugLoc();
8078 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8079
8080 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00008081 // Lower (X & (1 << N)) == 0 to BT(X, N).
8082 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8083 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00008084 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008085 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00008086 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008087 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8088 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8089 if (NewSetCC.getNode())
8090 return NewSetCC;
8091 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00008092
Chris Lattner481eebc2010-12-19 21:23:48 +00008093 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
8094 // these.
8095 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00008096 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00008097 cast<ConstantSDNode>(Op1)->isNullValue()) &&
8098 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008099
Chris Lattner481eebc2010-12-19 21:23:48 +00008100 // If the input is a setcc, then reuse the input setcc or use a new one with
8101 // the inverted condition.
8102 if (Op0.getOpcode() == X86ISD::SETCC) {
8103 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8104 bool Invert = (CC == ISD::SETNE) ^
8105 cast<ConstantSDNode>(Op1)->isNullValue();
8106 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008107
Evan Cheng2c755ba2010-02-27 07:36:59 +00008108 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00008109 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8110 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8111 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008112 }
8113
Evan Chenge5b51ac2010-04-17 06:13:15 +00008114 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00008115 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008116 if (X86CC == X86::COND_INVALID)
8117 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008118
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008119 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00008120 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008121 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00008122}
8123
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008124// Lower256IntVETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
8125// ones, and then concatenate the result back.
8126static SDValue Lower256IntVETCC(SDValue Op, SelectionDAG &DAG) {
8127 EVT VT = Op.getValueType();
8128
8129 assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::VSETCC &&
8130 "Unsupported value type for operation");
8131
8132 int NumElems = VT.getVectorNumElements();
8133 DebugLoc dl = Op.getDebugLoc();
8134 SDValue CC = Op.getOperand(2);
8135 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
8136 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
8137
8138 // Extract the LHS vectors
8139 SDValue LHS = Op.getOperand(0);
8140 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
8141 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
8142
8143 // Extract the RHS vectors
8144 SDValue RHS = Op.getOperand(1);
8145 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
8146 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
8147
8148 // Issue the operation on the smaller types and concatenate the result back
8149 MVT EltVT = VT.getVectorElementType().getSimpleVT();
8150 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8151 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8152 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8153 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8154}
8155
8156
Dan Gohmand858e902010-04-17 15:26:15 +00008157SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008158 SDValue Cond;
8159 SDValue Op0 = Op.getOperand(0);
8160 SDValue Op1 = Op.getOperand(1);
8161 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00008162 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00008163 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8164 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008165 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00008166
8167 if (isFP) {
8168 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008169 EVT EltVT = Op0.getValueType().getVectorElementType();
8170 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8171
8172 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00008173 bool Swap = false;
8174
8175 switch (SetCCOpcode) {
8176 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008177 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00008178 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008179 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00008180 case ISD::SETGT: Swap = true; // Fallthrough
8181 case ISD::SETLT:
8182 case ISD::SETOLT: SSECC = 1; break;
8183 case ISD::SETOGE:
8184 case ISD::SETGE: Swap = true; // Fallthrough
8185 case ISD::SETLE:
8186 case ISD::SETOLE: SSECC = 2; break;
8187 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008188 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00008189 case ISD::SETNE: SSECC = 4; break;
8190 case ISD::SETULE: Swap = true;
8191 case ISD::SETUGE: SSECC = 5; break;
8192 case ISD::SETULT: Swap = true;
8193 case ISD::SETUGT: SSECC = 6; break;
8194 case ISD::SETO: SSECC = 7; break;
8195 }
8196 if (Swap)
8197 std::swap(Op0, Op1);
8198
Nate Begemanfb8ead02008-07-25 19:05:58 +00008199 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00008200 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00008201 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00008202 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008203 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8204 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008205 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008206 }
8207 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00008208 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00008209 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8210 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008211 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008212 }
Torok Edwinc23197a2009-07-14 16:55:14 +00008213 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00008214 }
8215 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00008216 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00008217 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008218
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008219 // Break 256-bit integer vector compare into smaller ones.
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008220 if (!isFP && VT.getSizeInBits() == 256)
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008221 return Lower256IntVETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008222
Nate Begeman30a0de92008-07-17 16:51:19 +00008223 // We are handling one of the integer comparisons here. Since SSE only has
8224 // GT and EQ comparisons for integer, swapping operands and multiple
8225 // operations may be required for some comparisons.
8226 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8227 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008228
Owen Anderson825b72b2009-08-11 20:47:22 +00008229 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00008230 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008231 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008232 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008233 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8234 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008235 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008236
Nate Begeman30a0de92008-07-17 16:51:19 +00008237 switch (SetCCOpcode) {
8238 default: break;
8239 case ISD::SETNE: Invert = true;
8240 case ISD::SETEQ: Opc = EQOpc; break;
8241 case ISD::SETLT: Swap = true;
8242 case ISD::SETGT: Opc = GTOpc; break;
8243 case ISD::SETGE: Swap = true;
8244 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8245 case ISD::SETULT: Swap = true;
8246 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8247 case ISD::SETUGE: Swap = true;
8248 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8249 }
8250 if (Swap)
8251 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008252
Nate Begeman30a0de92008-07-17 16:51:19 +00008253 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8254 // bits of the inputs before performing those operations.
8255 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008256 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008257 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8258 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008259 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008260 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8261 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008262 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8263 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008264 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008265
Dale Johannesenace16102009-02-03 19:33:06 +00008266 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008267
8268 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008269 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008270 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008271
Nate Begeman30a0de92008-07-17 16:51:19 +00008272 return Result;
8273}
Evan Cheng0488db92007-09-25 01:57:46 +00008274
Evan Cheng370e5342008-12-03 08:38:43 +00008275// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008276static bool isX86LogicalCmp(SDValue Op) {
8277 unsigned Opc = Op.getNode()->getOpcode();
8278 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8279 return true;
8280 if (Op.getResNo() == 1 &&
8281 (Opc == X86ISD::ADD ||
8282 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008283 Opc == X86ISD::ADC ||
8284 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008285 Opc == X86ISD::SMUL ||
8286 Opc == X86ISD::UMUL ||
8287 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008288 Opc == X86ISD::DEC ||
8289 Opc == X86ISD::OR ||
8290 Opc == X86ISD::XOR ||
8291 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008292 return true;
8293
Chris Lattner9637d5b2010-12-05 07:49:54 +00008294 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8295 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008296
Dan Gohman076aee32009-03-04 19:44:21 +00008297 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008298}
8299
Chris Lattnera2b56002010-12-05 01:23:24 +00008300static bool isZero(SDValue V) {
8301 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8302 return C && C->isNullValue();
8303}
8304
Chris Lattner96908b12010-12-05 02:00:51 +00008305static bool isAllOnes(SDValue V) {
8306 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8307 return C && C->isAllOnesValue();
8308}
8309
Dan Gohmand858e902010-04-17 15:26:15 +00008310SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008311 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008312 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008313 SDValue Op1 = Op.getOperand(1);
8314 SDValue Op2 = Op.getOperand(2);
8315 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008316 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008317
Dan Gohman1a492952009-10-20 16:22:37 +00008318 if (Cond.getOpcode() == ISD::SETCC) {
8319 SDValue NewCond = LowerSETCC(Cond, DAG);
8320 if (NewCond.getNode())
8321 Cond = NewCond;
8322 }
Evan Cheng734503b2006-09-11 02:19:56 +00008323
Chris Lattnera2b56002010-12-05 01:23:24 +00008324 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008325 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008326 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008327 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008328 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008329 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8330 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008331 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008332
Chris Lattnera2b56002010-12-05 01:23:24 +00008333 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008334
8335 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008336 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8337 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008338
8339 SDValue CmpOp0 = Cmp.getOperand(0);
8340 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8341 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008342
Chris Lattner96908b12010-12-05 02:00:51 +00008343 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008344 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8345 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008346
Chris Lattner96908b12010-12-05 02:00:51 +00008347 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8348 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008349
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008350 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008351 if (N2C == 0 || !N2C->isNullValue())
8352 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8353 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008354 }
8355 }
8356
Chris Lattnera2b56002010-12-05 01:23:24 +00008357 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008358 if (Cond.getOpcode() == ISD::AND &&
8359 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8360 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008361 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008362 Cond = Cond.getOperand(0);
8363 }
8364
Evan Cheng3f41d662007-10-08 22:16:29 +00008365 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8366 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008367 if (Cond.getOpcode() == X86ISD::SETCC ||
8368 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008369 CC = Cond.getOperand(0);
8370
Dan Gohman475871a2008-07-27 21:46:04 +00008371 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008372 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008373 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008374
Evan Cheng3f41d662007-10-08 22:16:29 +00008375 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008376 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008377 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008378 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008379
Chris Lattnerd1980a52009-03-12 06:52:53 +00008380 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8381 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008382 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008383 addTest = false;
8384 }
8385 }
8386
8387 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008388 // Look pass the truncate.
8389 if (Cond.getOpcode() == ISD::TRUNCATE)
8390 Cond = Cond.getOperand(0);
8391
8392 // We know the result of AND is compared against zero. Try to match
8393 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008394 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008395 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008396 if (NewSetCC.getNode()) {
8397 CC = NewSetCC.getOperand(0);
8398 Cond = NewSetCC.getOperand(1);
8399 addTest = false;
8400 }
8401 }
8402 }
8403
8404 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008405 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008406 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008407 }
8408
Benjamin Kramere915ff32010-12-22 23:09:28 +00008409 // a < b ? -1 : 0 -> RES = ~setcc_carry
8410 // a < b ? 0 : -1 -> RES = setcc_carry
8411 // a >= b ? -1 : 0 -> RES = setcc_carry
8412 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8413 if (Cond.getOpcode() == X86ISD::CMP) {
8414 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8415
8416 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8417 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8418 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8419 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8420 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8421 return DAG.getNOT(DL, Res, Res.getValueType());
8422 return Res;
8423 }
8424 }
8425
Evan Cheng0488db92007-09-25 01:57:46 +00008426 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8427 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008428 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008429 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008430 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008431}
8432
Evan Cheng370e5342008-12-03 08:38:43 +00008433// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8434// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8435// from the AND / OR.
8436static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8437 Opc = Op.getOpcode();
8438 if (Opc != ISD::OR && Opc != ISD::AND)
8439 return false;
8440 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8441 Op.getOperand(0).hasOneUse() &&
8442 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8443 Op.getOperand(1).hasOneUse());
8444}
8445
Evan Cheng961d6d42009-02-02 08:19:07 +00008446// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8447// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008448static bool isXor1OfSetCC(SDValue Op) {
8449 if (Op.getOpcode() != ISD::XOR)
8450 return false;
8451 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8452 if (N1C && N1C->getAPIntValue() == 1) {
8453 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8454 Op.getOperand(0).hasOneUse();
8455 }
8456 return false;
8457}
8458
Dan Gohmand858e902010-04-17 15:26:15 +00008459SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008460 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008461 SDValue Chain = Op.getOperand(0);
8462 SDValue Cond = Op.getOperand(1);
8463 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008464 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008465 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008466
Dan Gohman1a492952009-10-20 16:22:37 +00008467 if (Cond.getOpcode() == ISD::SETCC) {
8468 SDValue NewCond = LowerSETCC(Cond, DAG);
8469 if (NewCond.getNode())
8470 Cond = NewCond;
8471 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008472#if 0
8473 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008474 else if (Cond.getOpcode() == X86ISD::ADD ||
8475 Cond.getOpcode() == X86ISD::SUB ||
8476 Cond.getOpcode() == X86ISD::SMUL ||
8477 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008478 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008479#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008480
Evan Chengad9c0a32009-12-15 00:53:42 +00008481 // Look pass (and (setcc_carry (cmp ...)), 1).
8482 if (Cond.getOpcode() == ISD::AND &&
8483 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8484 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008485 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008486 Cond = Cond.getOperand(0);
8487 }
8488
Evan Cheng3f41d662007-10-08 22:16:29 +00008489 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8490 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008491 if (Cond.getOpcode() == X86ISD::SETCC ||
8492 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008493 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008494
Dan Gohman475871a2008-07-27 21:46:04 +00008495 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008496 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008497 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008498 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008499 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008500 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008501 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008502 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008503 default: break;
8504 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008505 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008506 // These can only come from an arithmetic instruction with overflow,
8507 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008508 Cond = Cond.getNode()->getOperand(1);
8509 addTest = false;
8510 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008511 }
Evan Cheng0488db92007-09-25 01:57:46 +00008512 }
Evan Cheng370e5342008-12-03 08:38:43 +00008513 } else {
8514 unsigned CondOpc;
8515 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8516 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008517 if (CondOpc == ISD::OR) {
8518 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8519 // two branches instead of an explicit OR instruction with a
8520 // separate test.
8521 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008522 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008523 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008524 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008525 Chain, Dest, CC, Cmp);
8526 CC = Cond.getOperand(1).getOperand(0);
8527 Cond = Cmp;
8528 addTest = false;
8529 }
8530 } else { // ISD::AND
8531 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8532 // two branches instead of an explicit AND instruction with a
8533 // separate test. However, we only do this if this block doesn't
8534 // have a fall-through edge, because this requires an explicit
8535 // jmp when the condition is false.
8536 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008537 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008538 Op.getNode()->hasOneUse()) {
8539 X86::CondCode CCode =
8540 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8541 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008542 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008543 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008544 // Look for an unconditional branch following this conditional branch.
8545 // We need this because we need to reverse the successors in order
8546 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008547 if (User->getOpcode() == ISD::BR) {
8548 SDValue FalseBB = User->getOperand(1);
8549 SDNode *NewBR =
8550 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008551 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008552 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008553 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008554
Dale Johannesene4d209d2009-02-03 20:21:25 +00008555 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008556 Chain, Dest, CC, Cmp);
8557 X86::CondCode CCode =
8558 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8559 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008560 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008561 Cond = Cmp;
8562 addTest = false;
8563 }
8564 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008565 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008566 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8567 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8568 // It should be transformed during dag combiner except when the condition
8569 // is set by a arithmetics with overflow node.
8570 X86::CondCode CCode =
8571 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8572 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008573 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008574 Cond = Cond.getOperand(0).getOperand(1);
8575 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008576 }
Evan Cheng0488db92007-09-25 01:57:46 +00008577 }
8578
8579 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008580 // Look pass the truncate.
8581 if (Cond.getOpcode() == ISD::TRUNCATE)
8582 Cond = Cond.getOperand(0);
8583
8584 // We know the result of AND is compared against zero. Try to match
8585 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008586 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008587 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8588 if (NewSetCC.getNode()) {
8589 CC = NewSetCC.getOperand(0);
8590 Cond = NewSetCC.getOperand(1);
8591 addTest = false;
8592 }
8593 }
8594 }
8595
8596 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008597 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008598 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008599 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008600 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008601 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008602}
8603
Anton Korobeynikove060b532007-04-17 19:34:00 +00008604
8605// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8606// Calls to _alloca is needed to probe the stack when allocating more than 4k
8607// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8608// that the guard pages used by the OS virtual memory manager are allocated in
8609// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008610SDValue
8611X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008612 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008613 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008614 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008615 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008616 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008617
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008618 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008619 SDValue Chain = Op.getOperand(0);
8620 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008621 // FIXME: Ensure alignment here
8622
Dan Gohman475871a2008-07-27 21:46:04 +00008623 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008624
Owen Anderson825b72b2009-08-11 20:47:22 +00008625 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008626 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008627
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008628 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008629 Flag = Chain.getValue(1);
8630
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008631 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008632
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008633 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008634 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008635
Dale Johannesendd64c412009-02-04 00:33:20 +00008636 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008637
Dan Gohman475871a2008-07-27 21:46:04 +00008638 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008639 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008640}
8641
Dan Gohmand858e902010-04-17 15:26:15 +00008642SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008643 MachineFunction &MF = DAG.getMachineFunction();
8644 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8645
Dan Gohman69de1932008-02-06 22:27:42 +00008646 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008647 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008648
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008649 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008650 // vastart just stores the address of the VarArgsFrameIndex slot into the
8651 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008652 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8653 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008654 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8655 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008656 }
8657
8658 // __va_list_tag:
8659 // gp_offset (0 - 6 * 8)
8660 // fp_offset (48 - 48 + 8 * 16)
8661 // overflow_arg_area (point to parameters coming in memory).
8662 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008663 SmallVector<SDValue, 8> MemOps;
8664 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008665 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008666 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008667 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8668 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008669 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008670 MemOps.push_back(Store);
8671
8672 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008673 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008674 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008675 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008676 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8677 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008678 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008679 MemOps.push_back(Store);
8680
8681 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008682 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008683 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008684 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8685 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008686 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8687 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008688 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008689 MemOps.push_back(Store);
8690
8691 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008692 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008693 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008694 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8695 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008696 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8697 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008698 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008699 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008700 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008701}
8702
Dan Gohmand858e902010-04-17 15:26:15 +00008703SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008704 assert(Subtarget->is64Bit() &&
8705 "LowerVAARG only handles 64-bit va_arg!");
8706 assert((Subtarget->isTargetLinux() ||
8707 Subtarget->isTargetDarwin()) &&
8708 "Unhandled target in LowerVAARG");
8709 assert(Op.getNode()->getNumOperands() == 4);
8710 SDValue Chain = Op.getOperand(0);
8711 SDValue SrcPtr = Op.getOperand(1);
8712 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8713 unsigned Align = Op.getConstantOperandVal(3);
8714 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008715
Dan Gohman320afb82010-10-12 18:00:49 +00008716 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008717 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008718 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8719 uint8_t ArgMode;
8720
8721 // Decide which area this value should be read from.
8722 // TODO: Implement the AMD64 ABI in its entirety. This simple
8723 // selection mechanism works only for the basic types.
8724 if (ArgVT == MVT::f80) {
8725 llvm_unreachable("va_arg for f80 not yet implemented");
8726 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8727 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8728 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8729 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8730 } else {
8731 llvm_unreachable("Unhandled argument type in LowerVAARG");
8732 }
8733
8734 if (ArgMode == 2) {
8735 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008736 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008737 !(DAG.getMachineFunction()
8738 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008739 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008740 }
8741
8742 // Insert VAARG_64 node into the DAG
8743 // VAARG_64 returns two values: Variable Argument Address, Chain
8744 SmallVector<SDValue, 11> InstOps;
8745 InstOps.push_back(Chain);
8746 InstOps.push_back(SrcPtr);
8747 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8748 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8749 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8750 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8751 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8752 VTs, &InstOps[0], InstOps.size(),
8753 MVT::i64,
8754 MachinePointerInfo(SV),
8755 /*Align=*/0,
8756 /*Volatile=*/false,
8757 /*ReadMem=*/true,
8758 /*WriteMem=*/true);
8759 Chain = VAARG.getValue(1);
8760
8761 // Load the next argument and return it
8762 return DAG.getLoad(ArgVT, dl,
8763 Chain,
8764 VAARG,
8765 MachinePointerInfo(),
8766 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008767}
8768
Dan Gohmand858e902010-04-17 15:26:15 +00008769SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008770 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008771 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008772 SDValue Chain = Op.getOperand(0);
8773 SDValue DstPtr = Op.getOperand(1);
8774 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008775 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8776 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008777 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008778
Chris Lattnere72f2022010-09-21 05:40:29 +00008779 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008780 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008781 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008782 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008783}
8784
Dan Gohman475871a2008-07-27 21:46:04 +00008785SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008786X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008787 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008788 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008789 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008790 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008791 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008792 case Intrinsic::x86_sse_comieq_ss:
8793 case Intrinsic::x86_sse_comilt_ss:
8794 case Intrinsic::x86_sse_comile_ss:
8795 case Intrinsic::x86_sse_comigt_ss:
8796 case Intrinsic::x86_sse_comige_ss:
8797 case Intrinsic::x86_sse_comineq_ss:
8798 case Intrinsic::x86_sse_ucomieq_ss:
8799 case Intrinsic::x86_sse_ucomilt_ss:
8800 case Intrinsic::x86_sse_ucomile_ss:
8801 case Intrinsic::x86_sse_ucomigt_ss:
8802 case Intrinsic::x86_sse_ucomige_ss:
8803 case Intrinsic::x86_sse_ucomineq_ss:
8804 case Intrinsic::x86_sse2_comieq_sd:
8805 case Intrinsic::x86_sse2_comilt_sd:
8806 case Intrinsic::x86_sse2_comile_sd:
8807 case Intrinsic::x86_sse2_comigt_sd:
8808 case Intrinsic::x86_sse2_comige_sd:
8809 case Intrinsic::x86_sse2_comineq_sd:
8810 case Intrinsic::x86_sse2_ucomieq_sd:
8811 case Intrinsic::x86_sse2_ucomilt_sd:
8812 case Intrinsic::x86_sse2_ucomile_sd:
8813 case Intrinsic::x86_sse2_ucomigt_sd:
8814 case Intrinsic::x86_sse2_ucomige_sd:
8815 case Intrinsic::x86_sse2_ucomineq_sd: {
8816 unsigned Opc = 0;
8817 ISD::CondCode CC = ISD::SETCC_INVALID;
8818 switch (IntNo) {
8819 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008820 case Intrinsic::x86_sse_comieq_ss:
8821 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008822 Opc = X86ISD::COMI;
8823 CC = ISD::SETEQ;
8824 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008825 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008826 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008827 Opc = X86ISD::COMI;
8828 CC = ISD::SETLT;
8829 break;
8830 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008831 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008832 Opc = X86ISD::COMI;
8833 CC = ISD::SETLE;
8834 break;
8835 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008836 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008837 Opc = X86ISD::COMI;
8838 CC = ISD::SETGT;
8839 break;
8840 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008841 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008842 Opc = X86ISD::COMI;
8843 CC = ISD::SETGE;
8844 break;
8845 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008846 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008847 Opc = X86ISD::COMI;
8848 CC = ISD::SETNE;
8849 break;
8850 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008851 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008852 Opc = X86ISD::UCOMI;
8853 CC = ISD::SETEQ;
8854 break;
8855 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008856 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008857 Opc = X86ISD::UCOMI;
8858 CC = ISD::SETLT;
8859 break;
8860 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008861 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008862 Opc = X86ISD::UCOMI;
8863 CC = ISD::SETLE;
8864 break;
8865 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008866 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008867 Opc = X86ISD::UCOMI;
8868 CC = ISD::SETGT;
8869 break;
8870 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008871 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008872 Opc = X86ISD::UCOMI;
8873 CC = ISD::SETGE;
8874 break;
8875 case Intrinsic::x86_sse_ucomineq_ss:
8876 case Intrinsic::x86_sse2_ucomineq_sd:
8877 Opc = X86ISD::UCOMI;
8878 CC = ISD::SETNE;
8879 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008880 }
Evan Cheng734503b2006-09-11 02:19:56 +00008881
Dan Gohman475871a2008-07-27 21:46:04 +00008882 SDValue LHS = Op.getOperand(1);
8883 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008884 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008885 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008886 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8887 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8888 DAG.getConstant(X86CC, MVT::i8), Cond);
8889 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008890 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008891 // ptest and testp intrinsics. The intrinsic these come from are designed to
8892 // return an integer value, not just an instruction so lower it to the ptest
8893 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008894 case Intrinsic::x86_sse41_ptestz:
8895 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008896 case Intrinsic::x86_sse41_ptestnzc:
8897 case Intrinsic::x86_avx_ptestz_256:
8898 case Intrinsic::x86_avx_ptestc_256:
8899 case Intrinsic::x86_avx_ptestnzc_256:
8900 case Intrinsic::x86_avx_vtestz_ps:
8901 case Intrinsic::x86_avx_vtestc_ps:
8902 case Intrinsic::x86_avx_vtestnzc_ps:
8903 case Intrinsic::x86_avx_vtestz_pd:
8904 case Intrinsic::x86_avx_vtestc_pd:
8905 case Intrinsic::x86_avx_vtestnzc_pd:
8906 case Intrinsic::x86_avx_vtestz_ps_256:
8907 case Intrinsic::x86_avx_vtestc_ps_256:
8908 case Intrinsic::x86_avx_vtestnzc_ps_256:
8909 case Intrinsic::x86_avx_vtestz_pd_256:
8910 case Intrinsic::x86_avx_vtestc_pd_256:
8911 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8912 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008913 unsigned X86CC = 0;
8914 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008915 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008916 case Intrinsic::x86_avx_vtestz_ps:
8917 case Intrinsic::x86_avx_vtestz_pd:
8918 case Intrinsic::x86_avx_vtestz_ps_256:
8919 case Intrinsic::x86_avx_vtestz_pd_256:
8920 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008921 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008922 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008923 // ZF = 1
8924 X86CC = X86::COND_E;
8925 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008926 case Intrinsic::x86_avx_vtestc_ps:
8927 case Intrinsic::x86_avx_vtestc_pd:
8928 case Intrinsic::x86_avx_vtestc_ps_256:
8929 case Intrinsic::x86_avx_vtestc_pd_256:
8930 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008931 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008932 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008933 // CF = 1
8934 X86CC = X86::COND_B;
8935 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008936 case Intrinsic::x86_avx_vtestnzc_ps:
8937 case Intrinsic::x86_avx_vtestnzc_pd:
8938 case Intrinsic::x86_avx_vtestnzc_ps_256:
8939 case Intrinsic::x86_avx_vtestnzc_pd_256:
8940 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008941 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008942 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008943 // ZF and CF = 0
8944 X86CC = X86::COND_A;
8945 break;
8946 }
Eric Christopherfd179292009-08-27 18:07:15 +00008947
Eric Christopher71c67532009-07-29 00:28:05 +00008948 SDValue LHS = Op.getOperand(1);
8949 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008950 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8951 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008952 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8953 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8954 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008955 }
Evan Cheng5759f972008-05-04 09:15:50 +00008956
8957 // Fix vector shift instructions where the last operand is a non-immediate
8958 // i32 value.
8959 case Intrinsic::x86_sse2_pslli_w:
8960 case Intrinsic::x86_sse2_pslli_d:
8961 case Intrinsic::x86_sse2_pslli_q:
8962 case Intrinsic::x86_sse2_psrli_w:
8963 case Intrinsic::x86_sse2_psrli_d:
8964 case Intrinsic::x86_sse2_psrli_q:
8965 case Intrinsic::x86_sse2_psrai_w:
8966 case Intrinsic::x86_sse2_psrai_d:
8967 case Intrinsic::x86_mmx_pslli_w:
8968 case Intrinsic::x86_mmx_pslli_d:
8969 case Intrinsic::x86_mmx_pslli_q:
8970 case Intrinsic::x86_mmx_psrli_w:
8971 case Intrinsic::x86_mmx_psrli_d:
8972 case Intrinsic::x86_mmx_psrli_q:
8973 case Intrinsic::x86_mmx_psrai_w:
8974 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008975 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008976 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008977 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008978
8979 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008980 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008981 switch (IntNo) {
8982 case Intrinsic::x86_sse2_pslli_w:
8983 NewIntNo = Intrinsic::x86_sse2_psll_w;
8984 break;
8985 case Intrinsic::x86_sse2_pslli_d:
8986 NewIntNo = Intrinsic::x86_sse2_psll_d;
8987 break;
8988 case Intrinsic::x86_sse2_pslli_q:
8989 NewIntNo = Intrinsic::x86_sse2_psll_q;
8990 break;
8991 case Intrinsic::x86_sse2_psrli_w:
8992 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8993 break;
8994 case Intrinsic::x86_sse2_psrli_d:
8995 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8996 break;
8997 case Intrinsic::x86_sse2_psrli_q:
8998 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8999 break;
9000 case Intrinsic::x86_sse2_psrai_w:
9001 NewIntNo = Intrinsic::x86_sse2_psra_w;
9002 break;
9003 case Intrinsic::x86_sse2_psrai_d:
9004 NewIntNo = Intrinsic::x86_sse2_psra_d;
9005 break;
9006 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00009007 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009008 switch (IntNo) {
9009 case Intrinsic::x86_mmx_pslli_w:
9010 NewIntNo = Intrinsic::x86_mmx_psll_w;
9011 break;
9012 case Intrinsic::x86_mmx_pslli_d:
9013 NewIntNo = Intrinsic::x86_mmx_psll_d;
9014 break;
9015 case Intrinsic::x86_mmx_pslli_q:
9016 NewIntNo = Intrinsic::x86_mmx_psll_q;
9017 break;
9018 case Intrinsic::x86_mmx_psrli_w:
9019 NewIntNo = Intrinsic::x86_mmx_psrl_w;
9020 break;
9021 case Intrinsic::x86_mmx_psrli_d:
9022 NewIntNo = Intrinsic::x86_mmx_psrl_d;
9023 break;
9024 case Intrinsic::x86_mmx_psrli_q:
9025 NewIntNo = Intrinsic::x86_mmx_psrl_q;
9026 break;
9027 case Intrinsic::x86_mmx_psrai_w:
9028 NewIntNo = Intrinsic::x86_mmx_psra_w;
9029 break;
9030 case Intrinsic::x86_mmx_psrai_d:
9031 NewIntNo = Intrinsic::x86_mmx_psra_d;
9032 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00009033 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00009034 }
9035 break;
9036 }
9037 }
Mon P Wangefa42202009-09-03 19:56:25 +00009038
9039 // The vector shift intrinsics with scalars uses 32b shift amounts but
9040 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9041 // to be zero.
9042 SDValue ShOps[4];
9043 ShOps[0] = ShAmt;
9044 ShOps[1] = DAG.getConstant(0, MVT::i32);
9045 if (ShAmtVT == MVT::v4i32) {
9046 ShOps[2] = DAG.getUNDEF(MVT::i32);
9047 ShOps[3] = DAG.getUNDEF(MVT::i32);
9048 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9049 } else {
9050 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00009051// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00009052 }
9053
Owen Andersone50ed302009-08-10 22:56:29 +00009054 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009055 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009056 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009057 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00009058 Op.getOperand(1), ShAmt);
9059 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00009060 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00009061}
Evan Cheng72261582005-12-20 06:22:03 +00009062
Dan Gohmand858e902010-04-17 15:26:15 +00009063SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9064 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00009065 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9066 MFI->setReturnAddressIsTaken(true);
9067
Bill Wendling64e87322009-01-16 19:25:27 +00009068 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009069 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00009070
9071 if (Depth > 0) {
9072 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9073 SDValue Offset =
9074 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00009075 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009076 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009077 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009078 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00009079 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00009080 }
9081
9082 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00009083 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00009084 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009085 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009086}
9087
Dan Gohmand858e902010-04-17 15:26:15 +00009088SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00009089 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9090 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00009091
Owen Andersone50ed302009-08-10 22:56:29 +00009092 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009093 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00009094 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9095 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00009096 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00009097 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00009098 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9099 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00009100 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00009101 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00009102}
9103
Dan Gohman475871a2008-07-27 21:46:04 +00009104SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009105 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009106 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009107}
9108
Dan Gohmand858e902010-04-17 15:26:15 +00009109SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009110 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00009111 SDValue Chain = Op.getOperand(0);
9112 SDValue Offset = Op.getOperand(1);
9113 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009114 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009115
Dan Gohmand8816272010-08-11 18:14:00 +00009116 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9117 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9118 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009119 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009120
Dan Gohmand8816272010-08-11 18:14:00 +00009121 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9122 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009123 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009124 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9125 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00009126 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009127 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009128
Dale Johannesene4d209d2009-02-03 20:21:25 +00009129 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009130 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009131 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009132}
9133
Dan Gohman475871a2008-07-27 21:46:04 +00009134SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009135 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00009136 SDValue Root = Op.getOperand(0);
9137 SDValue Trmp = Op.getOperand(1); // trampoline
9138 SDValue FPtr = Op.getOperand(2); // nested function
9139 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009140 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009141
Dan Gohman69de1932008-02-06 22:27:42 +00009142 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009143
9144 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009145 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00009146
9147 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00009148 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
9149 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00009150
Evan Cheng0e6a0522011-07-18 20:57:22 +00009151 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9152 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00009153
9154 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9155
9156 // Load the pointer to the nested function into R11.
9157 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00009158 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00009159 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009160 Addr, MachinePointerInfo(TrmpAddr),
9161 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009162
Owen Anderson825b72b2009-08-11 20:47:22 +00009163 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9164 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009165 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9166 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00009167 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009168
9169 // Load the 'nest' parameter value into R10.
9170 // R10 is specified in X86CallingConv.td
9171 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00009172 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9173 DAG.getConstant(10, MVT::i64));
9174 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009175 Addr, MachinePointerInfo(TrmpAddr, 10),
9176 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009177
Owen Anderson825b72b2009-08-11 20:47:22 +00009178 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9179 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009180 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9181 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00009182 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009183
9184 // Jump to the nested function.
9185 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00009186 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9187 DAG.getConstant(20, MVT::i64));
9188 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009189 Addr, MachinePointerInfo(TrmpAddr, 20),
9190 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009191
9192 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00009193 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9194 DAG.getConstant(22, MVT::i64));
9195 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009196 MachinePointerInfo(TrmpAddr, 22),
9197 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009198
Dan Gohman475871a2008-07-27 21:46:04 +00009199 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009200 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009201 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009202 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00009203 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00009204 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00009205 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00009206 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009207
9208 switch (CC) {
9209 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00009210 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009211 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009212 case CallingConv::X86_StdCall: {
9213 // Pass 'nest' parameter in ECX.
9214 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009215 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009216
9217 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009218 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00009219 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009220
Chris Lattner58d74912008-03-12 17:45:29 +00009221 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00009222 unsigned InRegCount = 0;
9223 unsigned Idx = 1;
9224
9225 for (FunctionType::param_iterator I = FTy->param_begin(),
9226 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00009227 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00009228 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009229 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009230
9231 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009232 report_fatal_error("Nest register in use - reduce number of inreg"
9233 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009234 }
9235 }
9236 break;
9237 }
9238 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009239 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009240 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009241 // Pass 'nest' parameter in EAX.
9242 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009243 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009244 break;
9245 }
9246
Dan Gohman475871a2008-07-27 21:46:04 +00009247 SDValue OutChains[4];
9248 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009249
Owen Anderson825b72b2009-08-11 20:47:22 +00009250 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9251 DAG.getConstant(10, MVT::i32));
9252 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009253
Chris Lattnera62fe662010-02-05 19:20:30 +00009254 // This is storing the opcode for MOV32ri.
9255 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009256 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009257 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009258 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009259 Trmp, MachinePointerInfo(TrmpAddr),
9260 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009261
Owen Anderson825b72b2009-08-11 20:47:22 +00009262 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9263 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009264 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9265 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009266 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009267
Chris Lattnera62fe662010-02-05 19:20:30 +00009268 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009269 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9270 DAG.getConstant(5, MVT::i32));
9271 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009272 MachinePointerInfo(TrmpAddr, 5),
9273 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009274
Owen Anderson825b72b2009-08-11 20:47:22 +00009275 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9276 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009277 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9278 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009279 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009280
Dan Gohman475871a2008-07-27 21:46:04 +00009281 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009282 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009283 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009284 }
9285}
9286
Dan Gohmand858e902010-04-17 15:26:15 +00009287SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9288 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009289 /*
9290 The rounding mode is in bits 11:10 of FPSR, and has the following
9291 settings:
9292 00 Round to nearest
9293 01 Round to -inf
9294 10 Round to +inf
9295 11 Round to 0
9296
9297 FLT_ROUNDS, on the other hand, expects the following:
9298 -1 Undefined
9299 0 Round to 0
9300 1 Round to nearest
9301 2 Round to +inf
9302 3 Round to -inf
9303
9304 To perform the conversion, we do:
9305 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9306 */
9307
9308 MachineFunction &MF = DAG.getMachineFunction();
9309 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009310 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009311 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009312 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009313 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009314
9315 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009316 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009317 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009318
Michael J. Spencerec38de22010-10-10 22:04:20 +00009319
Chris Lattner2156b792010-09-22 01:11:26 +00009320 MachineMemOperand *MMO =
9321 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9322 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009323
Chris Lattner2156b792010-09-22 01:11:26 +00009324 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9325 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9326 DAG.getVTList(MVT::Other),
9327 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009328
9329 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009330 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009331 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009332
9333 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009334 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009335 DAG.getNode(ISD::SRL, DL, MVT::i16,
9336 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009337 CWD, DAG.getConstant(0x800, MVT::i16)),
9338 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009339 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009340 DAG.getNode(ISD::SRL, DL, MVT::i16,
9341 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009342 CWD, DAG.getConstant(0x400, MVT::i16)),
9343 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009344
Dan Gohman475871a2008-07-27 21:46:04 +00009345 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009346 DAG.getNode(ISD::AND, DL, MVT::i16,
9347 DAG.getNode(ISD::ADD, DL, MVT::i16,
9348 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009349 DAG.getConstant(1, MVT::i16)),
9350 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009351
9352
Duncan Sands83ec4b62008-06-06 12:08:01 +00009353 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009354 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009355}
9356
Dan Gohmand858e902010-04-17 15:26:15 +00009357SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009358 EVT VT = Op.getValueType();
9359 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009360 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009361 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009362
9363 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009364 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009365 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009366 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009367 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009368 }
Evan Cheng18efe262007-12-14 02:13:44 +00009369
Evan Cheng152804e2007-12-14 08:30:15 +00009370 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009371 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009372 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009373
9374 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009375 SDValue Ops[] = {
9376 Op,
9377 DAG.getConstant(NumBits+NumBits-1, OpVT),
9378 DAG.getConstant(X86::COND_E, MVT::i8),
9379 Op.getValue(1)
9380 };
9381 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009382
9383 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009384 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009385
Owen Anderson825b72b2009-08-11 20:47:22 +00009386 if (VT == MVT::i8)
9387 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009388 return Op;
9389}
9390
Dan Gohmand858e902010-04-17 15:26:15 +00009391SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009392 EVT VT = Op.getValueType();
9393 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009394 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009395 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009396
9397 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009398 if (VT == MVT::i8) {
9399 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009400 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009401 }
Evan Cheng152804e2007-12-14 08:30:15 +00009402
9403 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009404 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009405 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009406
9407 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009408 SDValue Ops[] = {
9409 Op,
9410 DAG.getConstant(NumBits, OpVT),
9411 DAG.getConstant(X86::COND_E, MVT::i8),
9412 Op.getValue(1)
9413 };
9414 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009415
Owen Anderson825b72b2009-08-11 20:47:22 +00009416 if (VT == MVT::i8)
9417 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009418 return Op;
9419}
9420
Dan Gohmand858e902010-04-17 15:26:15 +00009421SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009422 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00009423 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009424 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009425
Mon P Wangaf9b9522008-12-18 21:42:19 +00009426 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9427 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9428 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9429 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9430 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9431 //
9432 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9433 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9434 // return AloBlo + AloBhi + AhiBlo;
9435
9436 SDValue A = Op.getOperand(0);
9437 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009438
Dale Johannesene4d209d2009-02-03 20:21:25 +00009439 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009440 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9441 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009442 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009443 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9444 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009445 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009446 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009447 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009448 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009449 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009450 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009451 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009452 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009453 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009454 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009455 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9456 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009457 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009458 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9459 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009460 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9461 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009462 return Res;
9463}
9464
Nadav Rotem43012222011-05-11 08:12:09 +00009465SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9466
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009467 EVT VT = Op.getValueType();
9468 DebugLoc dl = Op.getDebugLoc();
9469 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009470 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009471 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009472
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009473 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9474 return SDValue();
9475
9476 // Decompose 256-bit shifts into smaller 128-bit shifts.
9477 if (VT.getSizeInBits() == 256) {
9478 int NumElems = VT.getVectorNumElements();
9479 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9480 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9481
9482 // Extract the two vectors
9483 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9484 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9485 DAG, dl);
9486
9487 // Recreate the shift amount vectors
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009488 SDValue Amt1, Amt2;
9489 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
9490 // Constant shift amount
9491 SmallVector<SDValue, 4> Amt1Csts;
9492 SmallVector<SDValue, 4> Amt2Csts;
9493 for (int i = 0; i < NumElems/2; ++i)
9494 Amt1Csts.push_back(Amt->getOperand(i));
9495 for (int i = NumElems/2; i < NumElems; ++i)
9496 Amt2Csts.push_back(Amt->getOperand(i));
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009497
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009498 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9499 &Amt1Csts[0], NumElems/2);
9500 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9501 &Amt2Csts[0], NumElems/2);
9502 } else {
9503 // Variable shift amount
9504 Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
9505 Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
9506 DAG, dl);
9507 }
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009508
9509 // Issue new vector shifts for the smaller types
9510 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9511 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9512
9513 // Concatenate the result back
9514 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9515 }
Nate Begeman51409212010-07-28 00:21:48 +00009516
Nadav Rotem43012222011-05-11 08:12:09 +00009517 // Optimize shl/srl/sra with constant shift amount.
9518 if (isSplatVector(Amt.getNode())) {
9519 SDValue SclrAmt = Amt->getOperand(0);
9520 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9521 uint64_t ShiftAmt = C->getZExtValue();
9522
9523 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9524 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9525 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9526 R, DAG.getConstant(ShiftAmt, MVT::i32));
9527
9528 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9529 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9530 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9531 R, DAG.getConstant(ShiftAmt, MVT::i32));
9532
9533 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9534 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9535 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9536 R, DAG.getConstant(ShiftAmt, MVT::i32));
9537
9538 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9539 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9540 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9541 R, DAG.getConstant(ShiftAmt, MVT::i32));
9542
9543 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9544 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9545 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9546 R, DAG.getConstant(ShiftAmt, MVT::i32));
9547
9548 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9549 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9550 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9551 R, DAG.getConstant(ShiftAmt, MVT::i32));
9552
9553 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9554 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9555 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9556 R, DAG.getConstant(ShiftAmt, MVT::i32));
9557
9558 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9559 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9560 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9561 R, DAG.getConstant(ShiftAmt, MVT::i32));
9562 }
9563 }
9564
9565 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009566 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009567 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9568 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9569 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9570
9571 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009572
Nate Begeman51409212010-07-28 00:21:48 +00009573 std::vector<Constant*> CV(4, CI);
9574 Constant *C = ConstantVector::get(CV);
9575 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9576 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009577 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009578 false, false, 16);
9579
9580 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009581 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009582 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9583 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9584 }
Nadav Rotem43012222011-05-11 08:12:09 +00009585 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009586 // a = a << 5;
9587 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9588 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9589 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9590
9591 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9592 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9593
9594 std::vector<Constant*> CVM1(16, CM1);
9595 std::vector<Constant*> CVM2(16, CM2);
9596 Constant *C = ConstantVector::get(CVM1);
9597 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9598 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009599 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009600 false, false, 16);
9601
9602 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9603 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9604 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9605 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9606 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009607 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009608 // a += a
9609 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009610
Nate Begeman51409212010-07-28 00:21:48 +00009611 C = ConstantVector::get(CVM2);
9612 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9613 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009614 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009615 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009616
Nate Begeman51409212010-07-28 00:21:48 +00009617 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9618 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9619 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9620 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9621 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009622 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009623 // a += a
9624 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009625
Nate Begeman51409212010-07-28 00:21:48 +00009626 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009627 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009628 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9629 return R;
9630 }
9631 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009632}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009633
Dan Gohmand858e902010-04-17 15:26:15 +00009634SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009635 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9636 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009637 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9638 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009639 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009640 SDValue LHS = N->getOperand(0);
9641 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009642 unsigned BaseOp = 0;
9643 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009644 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009645 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009646 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009647 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009648 // A subtract of one will be selected as a INC. Note that INC doesn't
9649 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009650 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9651 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009652 BaseOp = X86ISD::INC;
9653 Cond = X86::COND_O;
9654 break;
9655 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009656 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009657 Cond = X86::COND_O;
9658 break;
9659 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009660 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009661 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009662 break;
9663 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009664 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9665 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009666 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9667 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009668 BaseOp = X86ISD::DEC;
9669 Cond = X86::COND_O;
9670 break;
9671 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009672 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009673 Cond = X86::COND_O;
9674 break;
9675 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009676 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009677 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009678 break;
9679 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009680 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009681 Cond = X86::COND_O;
9682 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009683 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9684 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9685 MVT::i32);
9686 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009687
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009688 SDValue SetCC =
9689 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9690 DAG.getConstant(X86::COND_O, MVT::i32),
9691 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009692
Dan Gohman6e5fda22011-07-22 18:45:15 +00009693 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009694 }
Bill Wendling74c37652008-12-09 22:08:41 +00009695 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009696
Bill Wendling61edeb52008-12-02 01:06:39 +00009697 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009698 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009699 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009700
Bill Wendling61edeb52008-12-02 01:06:39 +00009701 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009702 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9703 DAG.getConstant(Cond, MVT::i32),
9704 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009705
Dan Gohman6e5fda22011-07-22 18:45:15 +00009706 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009707}
9708
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009709SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9710 DebugLoc dl = Op.getDebugLoc();
9711 SDNode* Node = Op.getNode();
9712 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9713 EVT VT = Node->getValueType(0);
9714
9715 if (Subtarget->hasSSE2() && VT.isVector()) {
9716 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9717 ExtraVT.getScalarType().getSizeInBits();
9718 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9719
9720 unsigned SHLIntrinsicsID = 0;
9721 unsigned SRAIntrinsicsID = 0;
9722 switch (VT.getSimpleVT().SimpleTy) {
9723 default:
9724 return SDValue();
9725 case MVT::v2i64: {
9726 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9727 SRAIntrinsicsID = 0;
9728 break;
9729 }
9730 case MVT::v4i32: {
9731 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9732 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9733 break;
9734 }
9735 case MVT::v8i16: {
9736 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9737 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9738 break;
9739 }
9740 }
9741
9742 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9743 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9744 Node->getOperand(0), ShAmt);
9745
9746 // In case of 1 bit sext, no need to shr
9747 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9748
9749 if (SRAIntrinsicsID) {
9750 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9751 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9752 Tmp1, ShAmt);
9753 }
9754 return Tmp1;
9755 }
9756
9757 return SDValue();
9758}
9759
9760
Eric Christopher9a9d2752010-07-22 02:48:34 +00009761SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9762 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009763
Eric Christopher77ed1352011-07-08 00:04:56 +00009764 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9765 // There isn't any reason to disable it if the target processor supports it.
9766 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009767 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009768 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009769 SDValue Ops[] = {
9770 DAG.getRegister(X86::ESP, MVT::i32), // Base
9771 DAG.getTargetConstant(1, MVT::i8), // Scale
9772 DAG.getRegister(0, MVT::i32), // Index
9773 DAG.getTargetConstant(0, MVT::i32), // Disp
9774 DAG.getRegister(0, MVT::i32), // Segment.
9775 Zero,
9776 Chain
9777 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009778 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009779 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9780 array_lengthof(Ops));
9781 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009782 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009783
Eric Christopher9a9d2752010-07-22 02:48:34 +00009784 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009785 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009786 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009787
Chris Lattner132929a2010-08-14 17:26:09 +00009788 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9789 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9790 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9791 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009792
Chris Lattner132929a2010-08-14 17:26:09 +00009793 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9794 if (!Op1 && !Op2 && !Op3 && Op4)
9795 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009796
Chris Lattner132929a2010-08-14 17:26:09 +00009797 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9798 if (Op1 && !Op2 && !Op3 && !Op4)
9799 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009800
9801 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009802 // (MFENCE)>;
9803 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009804}
9805
Eli Friedman14648462011-07-27 22:21:52 +00009806SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9807 SelectionDAG &DAG) const {
9808 DebugLoc dl = Op.getDebugLoc();
9809 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9810 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9811 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9812 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9813
9814 // The only fence that needs an instruction is a sequentially-consistent
9815 // cross-thread fence.
9816 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9817 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9818 // no-sse2). There isn't any reason to disable it if the target processor
9819 // supports it.
9820 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9821 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9822
9823 SDValue Chain = Op.getOperand(0);
9824 SDValue Zero = DAG.getConstant(0, MVT::i32);
9825 SDValue Ops[] = {
9826 DAG.getRegister(X86::ESP, MVT::i32), // Base
9827 DAG.getTargetConstant(1, MVT::i8), // Scale
9828 DAG.getRegister(0, MVT::i32), // Index
9829 DAG.getTargetConstant(0, MVT::i32), // Disp
9830 DAG.getRegister(0, MVT::i32), // Segment.
9831 Zero,
9832 Chain
9833 };
9834 SDNode *Res =
9835 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9836 array_lengthof(Ops));
9837 return SDValue(Res, 0);
9838 }
9839
9840 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9841 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9842}
9843
9844
Dan Gohmand858e902010-04-17 15:26:15 +00009845SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009846 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009847 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009848 unsigned Reg = 0;
9849 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009850 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009851 default:
9852 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009853 case MVT::i8: Reg = X86::AL; size = 1; break;
9854 case MVT::i16: Reg = X86::AX; size = 2; break;
9855 case MVT::i32: Reg = X86::EAX; size = 4; break;
9856 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009857 assert(Subtarget->is64Bit() && "Node not type legal!");
9858 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009859 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009860 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009861 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009862 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009863 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009864 Op.getOperand(1),
9865 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009866 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009867 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009868 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009869 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9870 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9871 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009872 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009873 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009874 return cpOut;
9875}
9876
Duncan Sands1607f052008-12-01 11:39:25 +00009877SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009878 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009879 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009880 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009881 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009882 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009883 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009884 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9885 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009886 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009887 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9888 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009889 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009890 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009891 rdx.getValue(1)
9892 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009893 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009894}
9895
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009896SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009897 SelectionDAG &DAG) const {
9898 EVT SrcVT = Op.getOperand(0).getValueType();
9899 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009900 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9901 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009902 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009903 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009904 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009905 // i64 <=> MMX conversions are Legal.
9906 if (SrcVT==MVT::i64 && DstVT.isVector())
9907 return Op;
9908 if (DstVT==MVT::i64 && SrcVT.isVector())
9909 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009910 // MMX <=> MMX conversions are Legal.
9911 if (SrcVT.isVector() && DstVT.isVector())
9912 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009913 // All other conversions need to be expanded.
9914 return SDValue();
9915}
Chris Lattner5b856542010-12-20 00:59:46 +00009916
Dan Gohmand858e902010-04-17 15:26:15 +00009917SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009918 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009919 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009920 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009921 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009922 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009923 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009924 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009925 Node->getOperand(0),
9926 Node->getOperand(1), negOp,
9927 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +00009928 cast<AtomicSDNode>(Node)->getAlignment(),
9929 cast<AtomicSDNode>(Node)->getOrdering(),
9930 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +00009931}
9932
Chris Lattner5b856542010-12-20 00:59:46 +00009933static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9934 EVT VT = Op.getNode()->getValueType(0);
9935
9936 // Let legalize expand this if it isn't a legal type yet.
9937 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9938 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009939
Chris Lattner5b856542010-12-20 00:59:46 +00009940 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009941
Chris Lattner5b856542010-12-20 00:59:46 +00009942 unsigned Opc;
9943 bool ExtraOp = false;
9944 switch (Op.getOpcode()) {
9945 default: assert(0 && "Invalid code");
9946 case ISD::ADDC: Opc = X86ISD::ADD; break;
9947 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9948 case ISD::SUBC: Opc = X86ISD::SUB; break;
9949 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9950 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009951
Chris Lattner5b856542010-12-20 00:59:46 +00009952 if (!ExtraOp)
9953 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9954 Op.getOperand(1));
9955 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9956 Op.getOperand(1), Op.getOperand(2));
9957}
9958
Evan Cheng0db9fe62006-04-25 20:13:52 +00009959/// LowerOperation - Provide custom lowering hooks for some operations.
9960///
Dan Gohmand858e902010-04-17 15:26:15 +00009961SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009962 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009963 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009964 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009965 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +00009966 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009967 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9968 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009969 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009970 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009971 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9972 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9973 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009974 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009975 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009976 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9977 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9978 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009979 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009980 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009981 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009982 case ISD::SHL_PARTS:
9983 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009984 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009985 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009986 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009987 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009988 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009989 case ISD::FABS: return LowerFABS(Op, DAG);
9990 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009991 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009992 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009993 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009994 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009995 case ISD::SELECT: return LowerSELECT(Op, DAG);
9996 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009997 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009998 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009999 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +000010000 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010001 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000010002 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
10003 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010004 case ISD::FRAME_TO_ARGS_OFFSET:
10005 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010006 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010007 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +000010008 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000010009 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000010010 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
10011 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +000010012 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000010013 case ISD::SRA:
10014 case ISD::SRL:
10015 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000010016 case ISD::SADDO:
10017 case ISD::UADDO:
10018 case ISD::SSUBO:
10019 case ISD::USUBO:
10020 case ISD::SMULO:
10021 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +000010022 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010023 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000010024 case ISD::ADDC:
10025 case ISD::ADDE:
10026 case ISD::SUBC:
10027 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010028 }
Chris Lattner27a6c732007-11-24 07:07:01 +000010029}
10030
Duncan Sands1607f052008-12-01 11:39:25 +000010031void X86TargetLowering::
10032ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010033 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010034 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010035 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +000010036 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000010037
10038 SDValue Chain = Node->getOperand(0);
10039 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010040 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010041 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000010042 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010043 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000010044 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000010045 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000010046 SDValue Result =
10047 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
10048 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000010049 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010050 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010051 Results.push_back(Result.getValue(2));
10052}
10053
Duncan Sands126d9072008-07-04 11:47:58 +000010054/// ReplaceNodeResults - Replace a node with an illegal result type
10055/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000010056void X86TargetLowering::ReplaceNodeResults(SDNode *N,
10057 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010058 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010059 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +000010060 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000010061 default:
Duncan Sands1607f052008-12-01 11:39:25 +000010062 assert(false && "Do not know how to custom type legalize this operation!");
10063 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010064 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000010065 case ISD::ADDC:
10066 case ISD::ADDE:
10067 case ISD::SUBC:
10068 case ISD::SUBE:
10069 // We don't want to expand or promote these.
10070 return;
Duncan Sands1607f052008-12-01 11:39:25 +000010071 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +000010072 std::pair<SDValue,SDValue> Vals =
10073 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +000010074 SDValue FIST = Vals.first, StackSlot = Vals.second;
10075 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000010076 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000010077 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +000010078 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
10079 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +000010080 }
10081 return;
10082 }
10083 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010084 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010085 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010086 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010087 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000010088 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000010089 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010090 eax.getValue(2));
10091 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
10092 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000010093 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010094 Results.push_back(edx.getValue(1));
10095 return;
10096 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010097 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000010098 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010099 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +000010100 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +000010101 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
10102 DAG.getConstant(0, MVT::i32));
10103 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
10104 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +000010105 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
10106 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +000010107 cpInL.getValue(1));
10108 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +000010109 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
10110 DAG.getConstant(0, MVT::i32));
10111 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
10112 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +000010113 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +000010114 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +000010115 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +000010116 swapInL.getValue(1));
10117 SDValue Ops[] = { swapInH.getValue(0),
10118 N->getOperand(1),
10119 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010120 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010121 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
10122 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
10123 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +000010124 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +000010125 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +000010126 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +000010127 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000010128 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010129 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010130 Results.push_back(cpOutH.getValue(1));
10131 return;
10132 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010133 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +000010134 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
10135 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010136 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +000010137 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
10138 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010139 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +000010140 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
10141 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010142 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +000010143 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
10144 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010145 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +000010146 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
10147 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010148 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +000010149 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
10150 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010151 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +000010152 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
10153 return;
Chris Lattner27a6c732007-11-24 07:07:01 +000010154 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000010155}
10156
Evan Cheng72261582005-12-20 06:22:03 +000010157const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
10158 switch (Opcode) {
10159 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000010160 case X86ISD::BSF: return "X86ISD::BSF";
10161 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000010162 case X86ISD::SHLD: return "X86ISD::SHLD";
10163 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000010164 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010165 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000010166 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010167 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000010168 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000010169 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000010170 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
10171 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
10172 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000010173 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000010174 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000010175 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000010176 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000010177 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000010178 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000010179 case X86ISD::COMI: return "X86ISD::COMI";
10180 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000010181 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000010182 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000010183 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
10184 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000010185 case X86ISD::CMOV: return "X86ISD::CMOV";
10186 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000010187 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000010188 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
10189 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000010190 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000010191 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000010192 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010193 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000010194 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010195 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
10196 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000010197 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000010198 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000010199 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +000010200 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
10201 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
10202 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +000010203 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +000010204 case X86ISD::FMAX: return "X86ISD::FMAX";
10205 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +000010206 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
10207 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010208 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000010209 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010210 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000010211 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000010212 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +000010213 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
10214 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010215 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
10216 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
10217 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
10218 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
10219 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
10220 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000010221 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
10222 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +000010223 case X86ISD::VSHL: return "X86ISD::VSHL";
10224 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +000010225 case X86ISD::CMPPD: return "X86ISD::CMPPD";
10226 case X86ISD::CMPPS: return "X86ISD::CMPPS";
10227 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
10228 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
10229 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
10230 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
10231 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
10232 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
10233 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
10234 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010235 case X86ISD::ADD: return "X86ISD::ADD";
10236 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000010237 case X86ISD::ADC: return "X86ISD::ADC";
10238 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000010239 case X86ISD::SMUL: return "X86ISD::SMUL";
10240 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010241 case X86ISD::INC: return "X86ISD::INC";
10242 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010243 case X86ISD::OR: return "X86ISD::OR";
10244 case X86ISD::XOR: return "X86ISD::XOR";
10245 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +000010246 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010247 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010248 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010249 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10250 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10251 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10252 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10253 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10254 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10255 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10256 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10257 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010258 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010259 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010260 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010261 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10262 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010263 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10264 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10265 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10266 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10267 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10268 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10269 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10270 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10271 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010272 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010273 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10274 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10275 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10276 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10277 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10278 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10279 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10280 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10281 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10282 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000010283 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010284 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10285 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10286 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10287 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000010288 case X86ISD::VPERM2F128: return "X86ISD::VPERM2F128";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010289 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010290 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010291 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010292 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +000010293 }
10294}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010295
Chris Lattnerc9addb72007-03-30 23:15:24 +000010296// isLegalAddressingMode - Return true if the addressing mode represented
10297// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010298bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010299 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010300 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010301 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010302 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010303
Chris Lattnerc9addb72007-03-30 23:15:24 +000010304 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010305 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010306 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010307
Chris Lattnerc9addb72007-03-30 23:15:24 +000010308 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010309 unsigned GVFlags =
10310 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010311
Chris Lattnerdfed4132009-07-10 07:38:24 +000010312 // If a reference to this global requires an extra load, we can't fold it.
10313 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010314 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010315
Chris Lattnerdfed4132009-07-10 07:38:24 +000010316 // If BaseGV requires a register for the PIC base, we cannot also have a
10317 // BaseReg specified.
10318 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010319 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010320
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010321 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010322 if ((M != CodeModel::Small || R != Reloc::Static) &&
10323 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010324 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010325 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010326
Chris Lattnerc9addb72007-03-30 23:15:24 +000010327 switch (AM.Scale) {
10328 case 0:
10329 case 1:
10330 case 2:
10331 case 4:
10332 case 8:
10333 // These scales always work.
10334 break;
10335 case 3:
10336 case 5:
10337 case 9:
10338 // These scales are formed with basereg+scalereg. Only accept if there is
10339 // no basereg yet.
10340 if (AM.HasBaseReg)
10341 return false;
10342 break;
10343 default: // Other stuff never works.
10344 return false;
10345 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010346
Chris Lattnerc9addb72007-03-30 23:15:24 +000010347 return true;
10348}
10349
10350
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010351bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010352 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010353 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010354 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10355 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010356 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010357 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010358 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010359}
10360
Owen Andersone50ed302009-08-10 22:56:29 +000010361bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010362 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010363 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010364 unsigned NumBits1 = VT1.getSizeInBits();
10365 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010366 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010367 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010368 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010369}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010370
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010371bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010372 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010373 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010374}
10375
Owen Andersone50ed302009-08-10 22:56:29 +000010376bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010377 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010378 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010379}
10380
Owen Andersone50ed302009-08-10 22:56:29 +000010381bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010382 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010383 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010384}
10385
Evan Cheng60c07e12006-07-05 22:17:51 +000010386/// isShuffleMaskLegal - Targets can use this to indicate that they only
10387/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10388/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10389/// are assumed to be legal.
10390bool
Eric Christopherfd179292009-08-27 18:07:15 +000010391X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010392 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010393 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010394 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010395 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010396
Nate Begemana09008b2009-10-19 02:17:23 +000010397 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010398 return (VT.getVectorNumElements() == 2 ||
10399 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10400 isMOVLMask(M, VT) ||
10401 isSHUFPMask(M, VT) ||
10402 isPSHUFDMask(M, VT) ||
10403 isPSHUFHWMask(M, VT) ||
10404 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010405 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010406 isUNPCKLMask(M, VT) ||
10407 isUNPCKHMask(M, VT) ||
10408 isUNPCKL_v_undef_Mask(M, VT) ||
10409 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010410}
10411
Dan Gohman7d8143f2008-04-09 20:09:42 +000010412bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010413X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010414 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010415 unsigned NumElts = VT.getVectorNumElements();
10416 // FIXME: This collection of masks seems suspect.
10417 if (NumElts == 2)
10418 return true;
10419 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10420 return (isMOVLMask(Mask, VT) ||
10421 isCommutedMOVLMask(Mask, VT, true) ||
10422 isSHUFPMask(Mask, VT) ||
10423 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010424 }
10425 return false;
10426}
10427
10428//===----------------------------------------------------------------------===//
10429// X86 Scheduler Hooks
10430//===----------------------------------------------------------------------===//
10431
Mon P Wang63307c32008-05-05 19:05:59 +000010432// private utility function
10433MachineBasicBlock *
10434X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10435 MachineBasicBlock *MBB,
10436 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010437 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010438 unsigned LoadOpc,
10439 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010440 unsigned notOpc,
10441 unsigned EAXreg,
10442 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010443 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010444 // For the atomic bitwise operator, we generate
10445 // thisMBB:
10446 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010447 // ld t1 = [bitinstr.addr]
10448 // op t2 = t1, [bitinstr.val]
10449 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010450 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10451 // bz newMBB
10452 // fallthrough -->nextMBB
10453 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10454 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010455 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010456 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010457
Mon P Wang63307c32008-05-05 19:05:59 +000010458 /// First build the CFG
10459 MachineFunction *F = MBB->getParent();
10460 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010461 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10462 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10463 F->insert(MBBIter, newMBB);
10464 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010465
Dan Gohman14152b42010-07-06 20:24:04 +000010466 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10467 nextMBB->splice(nextMBB->begin(), thisMBB,
10468 llvm::next(MachineBasicBlock::iterator(bInstr)),
10469 thisMBB->end());
10470 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010471
Mon P Wang63307c32008-05-05 19:05:59 +000010472 // Update thisMBB to fall through to newMBB
10473 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010474
Mon P Wang63307c32008-05-05 19:05:59 +000010475 // newMBB jumps to itself and fall through to nextMBB
10476 newMBB->addSuccessor(nextMBB);
10477 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010478
Mon P Wang63307c32008-05-05 19:05:59 +000010479 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010480 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010481 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010482 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010483 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010484 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010485 int numArgs = bInstr->getNumOperands() - 1;
10486 for (int i=0; i < numArgs; ++i)
10487 argOpers[i] = &bInstr->getOperand(i+1);
10488
10489 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010490 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010491 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010492
Dale Johannesen140be2d2008-08-19 18:47:28 +000010493 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010494 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010495 for (int i=0; i <= lastAddrIndx; ++i)
10496 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010497
Dale Johannesen140be2d2008-08-19 18:47:28 +000010498 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010499 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010500 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010501 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010502 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010503 tt = t1;
10504
Dale Johannesen140be2d2008-08-19 18:47:28 +000010505 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010506 assert((argOpers[valArgIndx]->isReg() ||
10507 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010508 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010509 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010510 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010511 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010512 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010513 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010514 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010515
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010516 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010517 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010518
Dale Johannesene4d209d2009-02-03 20:21:25 +000010519 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010520 for (int i=0; i <= lastAddrIndx; ++i)
10521 (*MIB).addOperand(*argOpers[i]);
10522 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010523 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010524 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10525 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010526
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010527 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010528 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010529
Mon P Wang63307c32008-05-05 19:05:59 +000010530 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010531 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010532
Dan Gohman14152b42010-07-06 20:24:04 +000010533 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010534 return nextMBB;
10535}
10536
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010537// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010538MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010539X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10540 MachineBasicBlock *MBB,
10541 unsigned regOpcL,
10542 unsigned regOpcH,
10543 unsigned immOpcL,
10544 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010545 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010546 // For the atomic bitwise operator, we generate
10547 // thisMBB (instructions are in pairs, except cmpxchg8b)
10548 // ld t1,t2 = [bitinstr.addr]
10549 // newMBB:
10550 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10551 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010552 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010553 // mov ECX, EBX <- t5, t6
10554 // mov EAX, EDX <- t1, t2
10555 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10556 // mov t3, t4 <- EAX, EDX
10557 // bz newMBB
10558 // result in out1, out2
10559 // fallthrough -->nextMBB
10560
10561 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10562 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010563 const unsigned NotOpc = X86::NOT32r;
10564 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10565 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10566 MachineFunction::iterator MBBIter = MBB;
10567 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010568
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010569 /// First build the CFG
10570 MachineFunction *F = MBB->getParent();
10571 MachineBasicBlock *thisMBB = MBB;
10572 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10573 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10574 F->insert(MBBIter, newMBB);
10575 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010576
Dan Gohman14152b42010-07-06 20:24:04 +000010577 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10578 nextMBB->splice(nextMBB->begin(), thisMBB,
10579 llvm::next(MachineBasicBlock::iterator(bInstr)),
10580 thisMBB->end());
10581 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010582
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010583 // Update thisMBB to fall through to newMBB
10584 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010585
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010586 // newMBB jumps to itself and fall through to nextMBB
10587 newMBB->addSuccessor(nextMBB);
10588 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010589
Dale Johannesene4d209d2009-02-03 20:21:25 +000010590 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010591 // Insert instructions into newMBB based on incoming instruction
10592 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010593 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010594 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010595 MachineOperand& dest1Oper = bInstr->getOperand(0);
10596 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010597 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10598 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010599 argOpers[i] = &bInstr->getOperand(i+2);
10600
Dan Gohman71ea4e52010-05-14 21:01:44 +000010601 // We use some of the operands multiple times, so conservatively just
10602 // clear any kill flags that might be present.
10603 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10604 argOpers[i]->setIsKill(false);
10605 }
10606
Evan Chengad5b52f2010-01-08 19:14:57 +000010607 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010608 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010609
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010610 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010611 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010612 for (int i=0; i <= lastAddrIndx; ++i)
10613 (*MIB).addOperand(*argOpers[i]);
10614 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010615 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010616 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010617 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010618 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010619 MachineOperand newOp3 = *(argOpers[3]);
10620 if (newOp3.isImm())
10621 newOp3.setImm(newOp3.getImm()+4);
10622 else
10623 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010624 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010625 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010626
10627 // t3/4 are defined later, at the bottom of the loop
10628 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10629 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010630 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010631 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010632 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010633 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10634
Evan Cheng306b4ca2010-01-08 23:41:50 +000010635 // The subsequent operations should be using the destination registers of
10636 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010637 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010638 t1 = F->getRegInfo().createVirtualRegister(RC);
10639 t2 = F->getRegInfo().createVirtualRegister(RC);
10640 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10641 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010642 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010643 t1 = dest1Oper.getReg();
10644 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010645 }
10646
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010647 int valArgIndx = lastAddrIndx + 1;
10648 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010649 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010650 "invalid operand");
10651 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10652 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010653 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010654 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010655 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010656 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010657 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010658 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010659 (*MIB).addOperand(*argOpers[valArgIndx]);
10660 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010661 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010662 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010663 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010664 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010665 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010666 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010667 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010668 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010669 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010670 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010671
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010672 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010673 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010674 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010675 MIB.addReg(t2);
10676
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010677 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010678 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010679 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010680 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010681
Dale Johannesene4d209d2009-02-03 20:21:25 +000010682 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010683 for (int i=0; i <= lastAddrIndx; ++i)
10684 (*MIB).addOperand(*argOpers[i]);
10685
10686 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010687 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10688 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010689
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010690 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010691 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010692 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010693 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010694
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010695 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010696 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010697
Dan Gohman14152b42010-07-06 20:24:04 +000010698 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010699 return nextMBB;
10700}
10701
10702// private utility function
10703MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010704X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10705 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010706 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010707 // For the atomic min/max operator, we generate
10708 // thisMBB:
10709 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010710 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010711 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010712 // cmp t1, t2
10713 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010714 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010715 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10716 // bz newMBB
10717 // fallthrough -->nextMBB
10718 //
10719 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10720 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010721 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010722 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010723
Mon P Wang63307c32008-05-05 19:05:59 +000010724 /// First build the CFG
10725 MachineFunction *F = MBB->getParent();
10726 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010727 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10728 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10729 F->insert(MBBIter, newMBB);
10730 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010731
Dan Gohman14152b42010-07-06 20:24:04 +000010732 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10733 nextMBB->splice(nextMBB->begin(), thisMBB,
10734 llvm::next(MachineBasicBlock::iterator(mInstr)),
10735 thisMBB->end());
10736 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010737
Mon P Wang63307c32008-05-05 19:05:59 +000010738 // Update thisMBB to fall through to newMBB
10739 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010740
Mon P Wang63307c32008-05-05 19:05:59 +000010741 // newMBB jumps to newMBB and fall through to nextMBB
10742 newMBB->addSuccessor(nextMBB);
10743 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010744
Dale Johannesene4d209d2009-02-03 20:21:25 +000010745 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010746 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010747 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010748 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010749 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010750 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010751 int numArgs = mInstr->getNumOperands() - 1;
10752 for (int i=0; i < numArgs; ++i)
10753 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010754
Mon P Wang63307c32008-05-05 19:05:59 +000010755 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010756 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010757 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010758
Mon P Wangab3e7472008-05-05 22:56:23 +000010759 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010760 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010761 for (int i=0; i <= lastAddrIndx; ++i)
10762 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010763
Mon P Wang63307c32008-05-05 19:05:59 +000010764 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010765 assert((argOpers[valArgIndx]->isReg() ||
10766 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010767 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010768
10769 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010770 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010771 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010772 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010773 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010774 (*MIB).addOperand(*argOpers[valArgIndx]);
10775
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010776 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010777 MIB.addReg(t1);
10778
Dale Johannesene4d209d2009-02-03 20:21:25 +000010779 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010780 MIB.addReg(t1);
10781 MIB.addReg(t2);
10782
10783 // Generate movc
10784 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010785 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010786 MIB.addReg(t2);
10787 MIB.addReg(t1);
10788
10789 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010790 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010791 for (int i=0; i <= lastAddrIndx; ++i)
10792 (*MIB).addOperand(*argOpers[i]);
10793 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010794 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010795 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10796 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010797
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010798 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010799 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010800
Mon P Wang63307c32008-05-05 19:05:59 +000010801 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010802 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010803
Dan Gohman14152b42010-07-06 20:24:04 +000010804 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010805 return nextMBB;
10806}
10807
Eric Christopherf83a5de2009-08-27 18:08:16 +000010808// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010809// or XMM0_V32I8 in AVX all of this code can be replaced with that
10810// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010811MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010812X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010813 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010814 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10815 "Target must have SSE4.2 or AVX features enabled");
10816
Eric Christopherb120ab42009-08-18 22:50:32 +000010817 DebugLoc dl = MI->getDebugLoc();
10818 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010819 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010820 if (!Subtarget->hasAVX()) {
10821 if (memArg)
10822 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10823 else
10824 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10825 } else {
10826 if (memArg)
10827 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10828 else
10829 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10830 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010831
Eric Christopher41c902f2010-11-30 08:20:21 +000010832 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010833 for (unsigned i = 0; i < numArgs; ++i) {
10834 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010835 if (!(Op.isReg() && Op.isImplicit()))
10836 MIB.addOperand(Op);
10837 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010838 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010839 .addReg(X86::XMM0);
10840
Dan Gohman14152b42010-07-06 20:24:04 +000010841 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010842 return BB;
10843}
10844
10845MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010846X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010847 DebugLoc dl = MI->getDebugLoc();
10848 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010849
Eric Christopher228232b2010-11-30 07:20:12 +000010850 // Address into RAX/EAX, other two args into ECX, EDX.
10851 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10852 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10853 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10854 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010855 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010856
Eric Christopher228232b2010-11-30 07:20:12 +000010857 unsigned ValOps = X86::AddrNumOperands;
10858 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10859 .addReg(MI->getOperand(ValOps).getReg());
10860 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10861 .addReg(MI->getOperand(ValOps+1).getReg());
10862
10863 // The instruction doesn't actually take any operands though.
10864 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010865
Eric Christopher228232b2010-11-30 07:20:12 +000010866 MI->eraseFromParent(); // The pseudo is gone now.
10867 return BB;
10868}
10869
10870MachineBasicBlock *
10871X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010872 DebugLoc dl = MI->getDebugLoc();
10873 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010874
Eric Christopher228232b2010-11-30 07:20:12 +000010875 // First arg in ECX, the second in EAX.
10876 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10877 .addReg(MI->getOperand(0).getReg());
10878 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10879 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010880
Eric Christopher228232b2010-11-30 07:20:12 +000010881 // The instruction doesn't actually take any operands though.
10882 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010883
Eric Christopher228232b2010-11-30 07:20:12 +000010884 MI->eraseFromParent(); // The pseudo is gone now.
10885 return BB;
10886}
10887
10888MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010889X86TargetLowering::EmitVAARG64WithCustomInserter(
10890 MachineInstr *MI,
10891 MachineBasicBlock *MBB) const {
10892 // Emit va_arg instruction on X86-64.
10893
10894 // Operands to this pseudo-instruction:
10895 // 0 ) Output : destination address (reg)
10896 // 1-5) Input : va_list address (addr, i64mem)
10897 // 6 ) ArgSize : Size (in bytes) of vararg type
10898 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10899 // 8 ) Align : Alignment of type
10900 // 9 ) EFLAGS (implicit-def)
10901
10902 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10903 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10904
10905 unsigned DestReg = MI->getOperand(0).getReg();
10906 MachineOperand &Base = MI->getOperand(1);
10907 MachineOperand &Scale = MI->getOperand(2);
10908 MachineOperand &Index = MI->getOperand(3);
10909 MachineOperand &Disp = MI->getOperand(4);
10910 MachineOperand &Segment = MI->getOperand(5);
10911 unsigned ArgSize = MI->getOperand(6).getImm();
10912 unsigned ArgMode = MI->getOperand(7).getImm();
10913 unsigned Align = MI->getOperand(8).getImm();
10914
10915 // Memory Reference
10916 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10917 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10918 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10919
10920 // Machine Information
10921 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10922 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10923 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10924 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10925 DebugLoc DL = MI->getDebugLoc();
10926
10927 // struct va_list {
10928 // i32 gp_offset
10929 // i32 fp_offset
10930 // i64 overflow_area (address)
10931 // i64 reg_save_area (address)
10932 // }
10933 // sizeof(va_list) = 24
10934 // alignment(va_list) = 8
10935
10936 unsigned TotalNumIntRegs = 6;
10937 unsigned TotalNumXMMRegs = 8;
10938 bool UseGPOffset = (ArgMode == 1);
10939 bool UseFPOffset = (ArgMode == 2);
10940 unsigned MaxOffset = TotalNumIntRegs * 8 +
10941 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10942
10943 /* Align ArgSize to a multiple of 8 */
10944 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10945 bool NeedsAlign = (Align > 8);
10946
10947 MachineBasicBlock *thisMBB = MBB;
10948 MachineBasicBlock *overflowMBB;
10949 MachineBasicBlock *offsetMBB;
10950 MachineBasicBlock *endMBB;
10951
10952 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10953 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10954 unsigned OffsetReg = 0;
10955
10956 if (!UseGPOffset && !UseFPOffset) {
10957 // If we only pull from the overflow region, we don't create a branch.
10958 // We don't need to alter control flow.
10959 OffsetDestReg = 0; // unused
10960 OverflowDestReg = DestReg;
10961
10962 offsetMBB = NULL;
10963 overflowMBB = thisMBB;
10964 endMBB = thisMBB;
10965 } else {
10966 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10967 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10968 // If not, pull from overflow_area. (branch to overflowMBB)
10969 //
10970 // thisMBB
10971 // | .
10972 // | .
10973 // offsetMBB overflowMBB
10974 // | .
10975 // | .
10976 // endMBB
10977
10978 // Registers for the PHI in endMBB
10979 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10980 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10981
10982 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10983 MachineFunction *MF = MBB->getParent();
10984 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10985 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10986 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10987
10988 MachineFunction::iterator MBBIter = MBB;
10989 ++MBBIter;
10990
10991 // Insert the new basic blocks
10992 MF->insert(MBBIter, offsetMBB);
10993 MF->insert(MBBIter, overflowMBB);
10994 MF->insert(MBBIter, endMBB);
10995
10996 // Transfer the remainder of MBB and its successor edges to endMBB.
10997 endMBB->splice(endMBB->begin(), thisMBB,
10998 llvm::next(MachineBasicBlock::iterator(MI)),
10999 thisMBB->end());
11000 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11001
11002 // Make offsetMBB and overflowMBB successors of thisMBB
11003 thisMBB->addSuccessor(offsetMBB);
11004 thisMBB->addSuccessor(overflowMBB);
11005
11006 // endMBB is a successor of both offsetMBB and overflowMBB
11007 offsetMBB->addSuccessor(endMBB);
11008 overflowMBB->addSuccessor(endMBB);
11009
11010 // Load the offset value into a register
11011 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11012 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11013 .addOperand(Base)
11014 .addOperand(Scale)
11015 .addOperand(Index)
11016 .addDisp(Disp, UseFPOffset ? 4 : 0)
11017 .addOperand(Segment)
11018 .setMemRefs(MMOBegin, MMOEnd);
11019
11020 // Check if there is enough room left to pull this argument.
11021 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11022 .addReg(OffsetReg)
11023 .addImm(MaxOffset + 8 - ArgSizeA8);
11024
11025 // Branch to "overflowMBB" if offset >= max
11026 // Fall through to "offsetMBB" otherwise
11027 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
11028 .addMBB(overflowMBB);
11029 }
11030
11031 // In offsetMBB, emit code to use the reg_save_area.
11032 if (offsetMBB) {
11033 assert(OffsetReg != 0);
11034
11035 // Read the reg_save_area address.
11036 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
11037 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
11038 .addOperand(Base)
11039 .addOperand(Scale)
11040 .addOperand(Index)
11041 .addDisp(Disp, 16)
11042 .addOperand(Segment)
11043 .setMemRefs(MMOBegin, MMOEnd);
11044
11045 // Zero-extend the offset
11046 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
11047 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
11048 .addImm(0)
11049 .addReg(OffsetReg)
11050 .addImm(X86::sub_32bit);
11051
11052 // Add the offset to the reg_save_area to get the final address.
11053 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
11054 .addReg(OffsetReg64)
11055 .addReg(RegSaveReg);
11056
11057 // Compute the offset for the next argument
11058 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11059 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
11060 .addReg(OffsetReg)
11061 .addImm(UseFPOffset ? 16 : 8);
11062
11063 // Store it back into the va_list.
11064 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
11065 .addOperand(Base)
11066 .addOperand(Scale)
11067 .addOperand(Index)
11068 .addDisp(Disp, UseFPOffset ? 4 : 0)
11069 .addOperand(Segment)
11070 .addReg(NextOffsetReg)
11071 .setMemRefs(MMOBegin, MMOEnd);
11072
11073 // Jump to endMBB
11074 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
11075 .addMBB(endMBB);
11076 }
11077
11078 //
11079 // Emit code to use overflow area
11080 //
11081
11082 // Load the overflow_area address into a register.
11083 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
11084 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
11085 .addOperand(Base)
11086 .addOperand(Scale)
11087 .addOperand(Index)
11088 .addDisp(Disp, 8)
11089 .addOperand(Segment)
11090 .setMemRefs(MMOBegin, MMOEnd);
11091
11092 // If we need to align it, do so. Otherwise, just copy the address
11093 // to OverflowDestReg.
11094 if (NeedsAlign) {
11095 // Align the overflow address
11096 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
11097 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
11098
11099 // aligned_addr = (addr + (align-1)) & ~(align-1)
11100 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
11101 .addReg(OverflowAddrReg)
11102 .addImm(Align-1);
11103
11104 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
11105 .addReg(TmpReg)
11106 .addImm(~(uint64_t)(Align-1));
11107 } else {
11108 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
11109 .addReg(OverflowAddrReg);
11110 }
11111
11112 // Compute the next overflow address after this argument.
11113 // (the overflow address should be kept 8-byte aligned)
11114 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
11115 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
11116 .addReg(OverflowDestReg)
11117 .addImm(ArgSizeA8);
11118
11119 // Store the new overflow address.
11120 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
11121 .addOperand(Base)
11122 .addOperand(Scale)
11123 .addOperand(Index)
11124 .addDisp(Disp, 8)
11125 .addOperand(Segment)
11126 .addReg(NextAddrReg)
11127 .setMemRefs(MMOBegin, MMOEnd);
11128
11129 // If we branched, emit the PHI to the front of endMBB.
11130 if (offsetMBB) {
11131 BuildMI(*endMBB, endMBB->begin(), DL,
11132 TII->get(X86::PHI), DestReg)
11133 .addReg(OffsetDestReg).addMBB(offsetMBB)
11134 .addReg(OverflowDestReg).addMBB(overflowMBB);
11135 }
11136
11137 // Erase the pseudo instruction
11138 MI->eraseFromParent();
11139
11140 return endMBB;
11141}
11142
11143MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000011144X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
11145 MachineInstr *MI,
11146 MachineBasicBlock *MBB) const {
11147 // Emit code to save XMM registers to the stack. The ABI says that the
11148 // number of registers to save is given in %al, so it's theoretically
11149 // possible to do an indirect jump trick to avoid saving all of them,
11150 // however this code takes a simpler approach and just executes all
11151 // of the stores if %al is non-zero. It's less code, and it's probably
11152 // easier on the hardware branch predictor, and stores aren't all that
11153 // expensive anyway.
11154
11155 // Create the new basic blocks. One block contains all the XMM stores,
11156 // and one block is the final destination regardless of whether any
11157 // stores were performed.
11158 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11159 MachineFunction *F = MBB->getParent();
11160 MachineFunction::iterator MBBIter = MBB;
11161 ++MBBIter;
11162 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
11163 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
11164 F->insert(MBBIter, XMMSaveMBB);
11165 F->insert(MBBIter, EndMBB);
11166
Dan Gohman14152b42010-07-06 20:24:04 +000011167 // Transfer the remainder of MBB and its successor edges to EndMBB.
11168 EndMBB->splice(EndMBB->begin(), MBB,
11169 llvm::next(MachineBasicBlock::iterator(MI)),
11170 MBB->end());
11171 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
11172
Dan Gohmand6708ea2009-08-15 01:38:56 +000011173 // The original block will now fall through to the XMM save block.
11174 MBB->addSuccessor(XMMSaveMBB);
11175 // The XMMSaveMBB will fall through to the end block.
11176 XMMSaveMBB->addSuccessor(EndMBB);
11177
11178 // Now add the instructions.
11179 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11180 DebugLoc DL = MI->getDebugLoc();
11181
11182 unsigned CountReg = MI->getOperand(0).getReg();
11183 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
11184 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
11185
11186 if (!Subtarget->isTargetWin64()) {
11187 // If %al is 0, branch around the XMM save block.
11188 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011189 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011190 MBB->addSuccessor(EndMBB);
11191 }
11192
11193 // In the XMM save block, save all the XMM argument registers.
11194 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
11195 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000011196 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000011197 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000011198 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000011199 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000011200 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011201 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
11202 .addFrameIndex(RegSaveFrameIndex)
11203 .addImm(/*Scale=*/1)
11204 .addReg(/*IndexReg=*/0)
11205 .addImm(/*Disp=*/Offset)
11206 .addReg(/*Segment=*/0)
11207 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000011208 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011209 }
11210
Dan Gohman14152b42010-07-06 20:24:04 +000011211 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011212
11213 return EndMBB;
11214}
Mon P Wang63307c32008-05-05 19:05:59 +000011215
Evan Cheng60c07e12006-07-05 22:17:51 +000011216MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000011217X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011218 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000011219 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11220 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000011221
Chris Lattner52600972009-09-02 05:57:00 +000011222 // To "insert" a SELECT_CC instruction, we actually have to insert the
11223 // diamond control-flow pattern. The incoming instruction knows the
11224 // destination vreg to set, the condition code register to branch on, the
11225 // true/false values to select between, and a branch opcode to use.
11226 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11227 MachineFunction::iterator It = BB;
11228 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000011229
Chris Lattner52600972009-09-02 05:57:00 +000011230 // thisMBB:
11231 // ...
11232 // TrueVal = ...
11233 // cmpTY ccX, r1, r2
11234 // bCC copy1MBB
11235 // fallthrough --> copy0MBB
11236 MachineBasicBlock *thisMBB = BB;
11237 MachineFunction *F = BB->getParent();
11238 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
11239 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000011240 F->insert(It, copy0MBB);
11241 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000011242
Bill Wendling730c07e2010-06-25 20:48:10 +000011243 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11244 // live into the sink and copy blocks.
11245 const MachineFunction *MF = BB->getParent();
11246 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
11247 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000011248
Dan Gohman14152b42010-07-06 20:24:04 +000011249 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
11250 const MachineOperand &MO = MI->getOperand(I);
11251 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000011252 unsigned Reg = MO.getReg();
11253 if (Reg != X86::EFLAGS) continue;
11254 copy0MBB->addLiveIn(Reg);
11255 sinkMBB->addLiveIn(Reg);
11256 }
11257
Dan Gohman14152b42010-07-06 20:24:04 +000011258 // Transfer the remainder of BB and its successor edges to sinkMBB.
11259 sinkMBB->splice(sinkMBB->begin(), BB,
11260 llvm::next(MachineBasicBlock::iterator(MI)),
11261 BB->end());
11262 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11263
11264 // Add the true and fallthrough blocks as its successors.
11265 BB->addSuccessor(copy0MBB);
11266 BB->addSuccessor(sinkMBB);
11267
11268 // Create the conditional branch instruction.
11269 unsigned Opc =
11270 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11271 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11272
Chris Lattner52600972009-09-02 05:57:00 +000011273 // copy0MBB:
11274 // %FalseValue = ...
11275 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011276 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011277
Chris Lattner52600972009-09-02 05:57:00 +000011278 // sinkMBB:
11279 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11280 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011281 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11282 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011283 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11284 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11285
Dan Gohman14152b42010-07-06 20:24:04 +000011286 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011287 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011288}
11289
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011290MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011291X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011292 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011293 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11294 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011295
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011296 assert(!Subtarget->isTargetEnvMacho());
11297
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011298 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11299 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011300
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011301 if (Subtarget->isTargetWin64()) {
11302 if (Subtarget->isTargetCygMing()) {
11303 // ___chkstk(Mingw64):
11304 // Clobbers R10, R11, RAX and EFLAGS.
11305 // Updates RSP.
11306 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11307 .addExternalSymbol("___chkstk")
11308 .addReg(X86::RAX, RegState::Implicit)
11309 .addReg(X86::RSP, RegState::Implicit)
11310 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11311 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11312 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11313 } else {
11314 // __chkstk(MSVCRT): does not update stack pointer.
11315 // Clobbers R10, R11 and EFLAGS.
11316 // FIXME: RAX(allocated size) might be reused and not killed.
11317 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11318 .addExternalSymbol("__chkstk")
11319 .addReg(X86::RAX, RegState::Implicit)
11320 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11321 // RAX has the offset to subtracted from RSP.
11322 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11323 .addReg(X86::RSP)
11324 .addReg(X86::RAX);
11325 }
11326 } else {
11327 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011328 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11329
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011330 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11331 .addExternalSymbol(StackProbeSymbol)
11332 .addReg(X86::EAX, RegState::Implicit)
11333 .addReg(X86::ESP, RegState::Implicit)
11334 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11335 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11336 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11337 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011338
Dan Gohman14152b42010-07-06 20:24:04 +000011339 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011340 return BB;
11341}
Chris Lattner52600972009-09-02 05:57:00 +000011342
11343MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011344X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11345 MachineBasicBlock *BB) const {
11346 // This is pretty easy. We're taking the value that we received from
11347 // our load from the relocation, sticking it in either RDI (x86-64)
11348 // or EAX and doing an indirect call. The return value will then
11349 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011350 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011351 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011352 DebugLoc DL = MI->getDebugLoc();
11353 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011354
11355 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011356 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011357
Eric Christopher30ef0e52010-06-03 04:07:48 +000011358 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011359 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11360 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011361 .addReg(X86::RIP)
11362 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011363 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011364 MI->getOperand(3).getTargetFlags())
11365 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011366 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011367 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011368 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011369 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11370 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011371 .addReg(0)
11372 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011373 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011374 MI->getOperand(3).getTargetFlags())
11375 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011376 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011377 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011378 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011379 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11380 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011381 .addReg(TII->getGlobalBaseReg(F))
11382 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011383 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011384 MI->getOperand(3).getTargetFlags())
11385 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011386 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011387 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011388 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011389
Dan Gohman14152b42010-07-06 20:24:04 +000011390 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011391 return BB;
11392}
11393
11394MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011395X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011396 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011397 switch (MI->getOpcode()) {
11398 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011399 case X86::TAILJMPd64:
11400 case X86::TAILJMPr64:
11401 case X86::TAILJMPm64:
11402 assert(!"TAILJMP64 would not be touched here.");
11403 case X86::TCRETURNdi64:
11404 case X86::TCRETURNri64:
11405 case X86::TCRETURNmi64:
11406 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11407 // On AMD64, additional defs should be added before register allocation.
11408 if (!Subtarget->isTargetWin64()) {
11409 MI->addRegisterDefined(X86::RSI);
11410 MI->addRegisterDefined(X86::RDI);
11411 MI->addRegisterDefined(X86::XMM6);
11412 MI->addRegisterDefined(X86::XMM7);
11413 MI->addRegisterDefined(X86::XMM8);
11414 MI->addRegisterDefined(X86::XMM9);
11415 MI->addRegisterDefined(X86::XMM10);
11416 MI->addRegisterDefined(X86::XMM11);
11417 MI->addRegisterDefined(X86::XMM12);
11418 MI->addRegisterDefined(X86::XMM13);
11419 MI->addRegisterDefined(X86::XMM14);
11420 MI->addRegisterDefined(X86::XMM15);
11421 }
11422 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011423 case X86::WIN_ALLOCA:
11424 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011425 case X86::TLSCall_32:
11426 case X86::TLSCall_64:
11427 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011428 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011429 case X86::CMOV_FR32:
11430 case X86::CMOV_FR64:
11431 case X86::CMOV_V4F32:
11432 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011433 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000011434 case X86::CMOV_V8F32:
11435 case X86::CMOV_V4F64:
11436 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011437 case X86::CMOV_GR16:
11438 case X86::CMOV_GR32:
11439 case X86::CMOV_RFP32:
11440 case X86::CMOV_RFP64:
11441 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011442 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011443
Dale Johannesen849f2142007-07-03 00:53:03 +000011444 case X86::FP32_TO_INT16_IN_MEM:
11445 case X86::FP32_TO_INT32_IN_MEM:
11446 case X86::FP32_TO_INT64_IN_MEM:
11447 case X86::FP64_TO_INT16_IN_MEM:
11448 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011449 case X86::FP64_TO_INT64_IN_MEM:
11450 case X86::FP80_TO_INT16_IN_MEM:
11451 case X86::FP80_TO_INT32_IN_MEM:
11452 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011453 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11454 DebugLoc DL = MI->getDebugLoc();
11455
Evan Cheng60c07e12006-07-05 22:17:51 +000011456 // Change the floating point control register to use "round towards zero"
11457 // mode when truncating to an integer value.
11458 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011459 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011460 addFrameReference(BuildMI(*BB, MI, DL,
11461 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011462
11463 // Load the old value of the high byte of the control word...
11464 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011465 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011466 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011467 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011468
11469 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011470 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011471 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011472
11473 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011474 addFrameReference(BuildMI(*BB, MI, DL,
11475 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011476
11477 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011478 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011479 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011480
11481 // Get the X86 opcode to use.
11482 unsigned Opc;
11483 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011484 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011485 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11486 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11487 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11488 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11489 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11490 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011491 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11492 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11493 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011494 }
11495
11496 X86AddressMode AM;
11497 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011498 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011499 AM.BaseType = X86AddressMode::RegBase;
11500 AM.Base.Reg = Op.getReg();
11501 } else {
11502 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011503 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011504 }
11505 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011506 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011507 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011508 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011509 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011510 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011511 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011512 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011513 AM.GV = Op.getGlobal();
11514 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011515 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011516 }
Dan Gohman14152b42010-07-06 20:24:04 +000011517 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011518 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011519
11520 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011521 addFrameReference(BuildMI(*BB, MI, DL,
11522 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011523
Dan Gohman14152b42010-07-06 20:24:04 +000011524 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011525 return BB;
11526 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011527 // String/text processing lowering.
11528 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011529 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011530 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11531 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011532 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011533 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11534 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011535 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011536 return EmitPCMP(MI, BB, 5, false /* in mem */);
11537 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011538 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011539 return EmitPCMP(MI, BB, 5, true /* in mem */);
11540
Eric Christopher228232b2010-11-30 07:20:12 +000011541 // Thread synchronization.
11542 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011543 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011544 case X86::MWAIT:
11545 return EmitMwait(MI, BB);
11546
Eric Christopherb120ab42009-08-18 22:50:32 +000011547 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011548 case X86::ATOMAND32:
11549 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011550 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011551 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011552 X86::NOT32r, X86::EAX,
11553 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011554 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011555 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11556 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011557 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011558 X86::NOT32r, X86::EAX,
11559 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011560 case X86::ATOMXOR32:
11561 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011562 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011563 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011564 X86::NOT32r, X86::EAX,
11565 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011566 case X86::ATOMNAND32:
11567 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011568 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011569 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011570 X86::NOT32r, X86::EAX,
11571 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011572 case X86::ATOMMIN32:
11573 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11574 case X86::ATOMMAX32:
11575 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11576 case X86::ATOMUMIN32:
11577 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11578 case X86::ATOMUMAX32:
11579 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011580
11581 case X86::ATOMAND16:
11582 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11583 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011584 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011585 X86::NOT16r, X86::AX,
11586 X86::GR16RegisterClass);
11587 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011588 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011589 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011590 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011591 X86::NOT16r, X86::AX,
11592 X86::GR16RegisterClass);
11593 case X86::ATOMXOR16:
11594 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11595 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011596 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011597 X86::NOT16r, X86::AX,
11598 X86::GR16RegisterClass);
11599 case X86::ATOMNAND16:
11600 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11601 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011602 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011603 X86::NOT16r, X86::AX,
11604 X86::GR16RegisterClass, true);
11605 case X86::ATOMMIN16:
11606 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11607 case X86::ATOMMAX16:
11608 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11609 case X86::ATOMUMIN16:
11610 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11611 case X86::ATOMUMAX16:
11612 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11613
11614 case X86::ATOMAND8:
11615 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11616 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011617 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011618 X86::NOT8r, X86::AL,
11619 X86::GR8RegisterClass);
11620 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011621 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011622 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011623 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011624 X86::NOT8r, X86::AL,
11625 X86::GR8RegisterClass);
11626 case X86::ATOMXOR8:
11627 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11628 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011629 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011630 X86::NOT8r, X86::AL,
11631 X86::GR8RegisterClass);
11632 case X86::ATOMNAND8:
11633 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11634 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011635 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011636 X86::NOT8r, X86::AL,
11637 X86::GR8RegisterClass, true);
11638 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011639 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011640 case X86::ATOMAND64:
11641 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011642 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011643 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011644 X86::NOT64r, X86::RAX,
11645 X86::GR64RegisterClass);
11646 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011647 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11648 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011649 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011650 X86::NOT64r, X86::RAX,
11651 X86::GR64RegisterClass);
11652 case X86::ATOMXOR64:
11653 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011654 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011655 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011656 X86::NOT64r, X86::RAX,
11657 X86::GR64RegisterClass);
11658 case X86::ATOMNAND64:
11659 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11660 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011661 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011662 X86::NOT64r, X86::RAX,
11663 X86::GR64RegisterClass, true);
11664 case X86::ATOMMIN64:
11665 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11666 case X86::ATOMMAX64:
11667 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11668 case X86::ATOMUMIN64:
11669 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11670 case X86::ATOMUMAX64:
11671 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011672
11673 // This group does 64-bit operations on a 32-bit host.
11674 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011675 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011676 X86::AND32rr, X86::AND32rr,
11677 X86::AND32ri, X86::AND32ri,
11678 false);
11679 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011680 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011681 X86::OR32rr, X86::OR32rr,
11682 X86::OR32ri, X86::OR32ri,
11683 false);
11684 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011685 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011686 X86::XOR32rr, X86::XOR32rr,
11687 X86::XOR32ri, X86::XOR32ri,
11688 false);
11689 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011690 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011691 X86::AND32rr, X86::AND32rr,
11692 X86::AND32ri, X86::AND32ri,
11693 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011694 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011695 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011696 X86::ADD32rr, X86::ADC32rr,
11697 X86::ADD32ri, X86::ADC32ri,
11698 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011699 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011700 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011701 X86::SUB32rr, X86::SBB32rr,
11702 X86::SUB32ri, X86::SBB32ri,
11703 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011704 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011705 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011706 X86::MOV32rr, X86::MOV32rr,
11707 X86::MOV32ri, X86::MOV32ri,
11708 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011709 case X86::VASTART_SAVE_XMM_REGS:
11710 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011711
11712 case X86::VAARG_64:
11713 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011714 }
11715}
11716
11717//===----------------------------------------------------------------------===//
11718// X86 Optimization Hooks
11719//===----------------------------------------------------------------------===//
11720
Dan Gohman475871a2008-07-27 21:46:04 +000011721void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011722 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011723 APInt &KnownZero,
11724 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011725 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011726 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011727 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011728 assert((Opc >= ISD::BUILTIN_OP_END ||
11729 Opc == ISD::INTRINSIC_WO_CHAIN ||
11730 Opc == ISD::INTRINSIC_W_CHAIN ||
11731 Opc == ISD::INTRINSIC_VOID) &&
11732 "Should use MaskedValueIsZero if you don't know whether Op"
11733 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011734
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011735 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011736 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011737 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011738 case X86ISD::ADD:
11739 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011740 case X86ISD::ADC:
11741 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011742 case X86ISD::SMUL:
11743 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011744 case X86ISD::INC:
11745 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011746 case X86ISD::OR:
11747 case X86ISD::XOR:
11748 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011749 // These nodes' second result is a boolean.
11750 if (Op.getResNo() == 0)
11751 break;
11752 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011753 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011754 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11755 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011756 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011757 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011758}
Chris Lattner259e97c2006-01-31 19:43:35 +000011759
Owen Andersonbc146b02010-09-21 20:42:50 +000011760unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11761 unsigned Depth) const {
11762 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11763 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11764 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011765
Owen Andersonbc146b02010-09-21 20:42:50 +000011766 // Fallback case.
11767 return 1;
11768}
11769
Evan Cheng206ee9d2006-07-07 08:33:52 +000011770/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011771/// node is a GlobalAddress + offset.
11772bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011773 const GlobalValue* &GA,
11774 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011775 if (N->getOpcode() == X86ISD::Wrapper) {
11776 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011777 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011778 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011779 return true;
11780 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011781 }
Evan Chengad4196b2008-05-12 19:56:52 +000011782 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011783}
11784
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011785/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
11786/// same as extracting the high 128-bit part of 256-bit vector and then
11787/// inserting the result into the low part of a new 256-bit vector
11788static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
11789 EVT VT = SVOp->getValueType(0);
11790 int NumElems = VT.getVectorNumElements();
11791
11792 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
11793 for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
11794 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
11795 SVOp->getMaskElt(j) >= 0)
11796 return false;
11797
11798 return true;
11799}
11800
11801/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
11802/// same as extracting the low 128-bit part of 256-bit vector and then
11803/// inserting the result into the high part of a new 256-bit vector
11804static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
11805 EVT VT = SVOp->getValueType(0);
11806 int NumElems = VT.getVectorNumElements();
11807
11808 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
11809 for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
11810 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
11811 SVOp->getMaskElt(j) >= 0)
11812 return false;
11813
11814 return true;
11815}
11816
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011817/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11818static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11819 TargetLowering::DAGCombinerInfo &DCI) {
11820 DebugLoc dl = N->getDebugLoc();
11821 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11822 SDValue V1 = SVOp->getOperand(0);
11823 SDValue V2 = SVOp->getOperand(1);
11824 EVT VT = SVOp->getValueType(0);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011825 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011826
11827 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11828 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11829 //
11830 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011831 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011832 // V UNDEF BUILD_VECTOR UNDEF
11833 // \ / \ /
11834 // CONCAT_VECTOR CONCAT_VECTOR
11835 // \ /
11836 // \ /
11837 // RESULT: V + zero extended
11838 //
11839 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11840 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11841 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11842 return SDValue();
11843
11844 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11845 return SDValue();
11846
11847 // To match the shuffle mask, the first half of the mask should
11848 // be exactly the first vector, and all the rest a splat with the
11849 // first element of the second one.
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011850 for (int i = 0; i < NumElems/2; ++i)
11851 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11852 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11853 return SDValue();
11854
11855 // Emit a zeroed vector and insert the desired subvector on its
11856 // first half.
11857 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11858 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11859 DAG.getConstant(0, MVT::i32), DAG, dl);
11860 return DCI.CombineTo(N, InsV);
11861 }
11862
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000011863 //===--------------------------------------------------------------------===//
11864 // Combine some shuffles into subvector extracts and inserts:
11865 //
11866
11867 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
11868 if (isShuffleHigh128VectorInsertLow(SVOp)) {
11869 SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
11870 DAG, dl);
11871 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
11872 V, DAG.getConstant(0, MVT::i32), DAG, dl);
11873 return DCI.CombineTo(N, InsV);
11874 }
11875
11876 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
11877 if (isShuffleLow128VectorInsertHigh(SVOp)) {
11878 SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
11879 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
11880 V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
11881 return DCI.CombineTo(N, InsV);
11882 }
11883
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011884 return SDValue();
11885}
11886
11887/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011888static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000011889 TargetLowering::DAGCombinerInfo &DCI,
11890 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011891 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011892 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011893
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011894 // Don't create instructions with illegal types after legalize types has run.
11895 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11896 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11897 return SDValue();
11898
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000011899 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
11900 if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
11901 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011902 return PerformShuffleCombine256(N, DAG, DCI);
11903
11904 // Only handle 128 wide vector from here on.
11905 if (VT.getSizeInBits() != 128)
11906 return SDValue();
11907
11908 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11909 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11910 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011911 SmallVector<SDValue, 16> Elts;
11912 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011913 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011914
Nate Begemanfdea31a2010-03-24 20:49:50 +000011915 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011916}
Evan Chengd880b972008-05-09 21:53:03 +000011917
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011918/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11919/// generation and convert it from being a bunch of shuffles and extracts
11920/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011921static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11922 const TargetLowering &TLI) {
11923 SDValue InputVector = N->getOperand(0);
11924
11925 // Only operate on vectors of 4 elements, where the alternative shuffling
11926 // gets to be more expensive.
11927 if (InputVector.getValueType() != MVT::v4i32)
11928 return SDValue();
11929
11930 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11931 // single use which is a sign-extend or zero-extend, and all elements are
11932 // used.
11933 SmallVector<SDNode *, 4> Uses;
11934 unsigned ExtractedElements = 0;
11935 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11936 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11937 if (UI.getUse().getResNo() != InputVector.getResNo())
11938 return SDValue();
11939
11940 SDNode *Extract = *UI;
11941 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11942 return SDValue();
11943
11944 if (Extract->getValueType(0) != MVT::i32)
11945 return SDValue();
11946 if (!Extract->hasOneUse())
11947 return SDValue();
11948 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11949 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11950 return SDValue();
11951 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11952 return SDValue();
11953
11954 // Record which element was extracted.
11955 ExtractedElements |=
11956 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11957
11958 Uses.push_back(Extract);
11959 }
11960
11961 // If not all the elements were used, this may not be worthwhile.
11962 if (ExtractedElements != 15)
11963 return SDValue();
11964
11965 // Ok, we've now decided to do the transformation.
11966 DebugLoc dl = InputVector.getDebugLoc();
11967
11968 // Store the value to a temporary stack slot.
11969 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011970 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11971 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011972
11973 // Replace each use (extract) with a load of the appropriate element.
11974 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11975 UE = Uses.end(); UI != UE; ++UI) {
11976 SDNode *Extract = *UI;
11977
Nadav Rotem86694292011-05-17 08:31:57 +000011978 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011979 SDValue Idx = Extract->getOperand(1);
11980 unsigned EltSize =
11981 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11982 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11983 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11984
Nadav Rotem86694292011-05-17 08:31:57 +000011985 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011986 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011987
11988 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011989 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011990 ScalarAddr, MachinePointerInfo(),
11991 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011992
11993 // Replace the exact with the load.
11994 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11995 }
11996
11997 // The replacement was made in place; don't return anything.
11998 return SDValue();
11999}
12000
Chris Lattner83e6c992006-10-04 06:57:07 +000012001/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012002static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000012003 const X86Subtarget *Subtarget) {
12004 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000012005 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000012006 // Get the LHS/RHS of the select.
12007 SDValue LHS = N->getOperand(1);
12008 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000012009
Dan Gohman670e5392009-09-21 18:03:22 +000012010 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000012011 // instructions match the semantics of the common C idiom x<y?x:y but not
12012 // x<=y?x:y, because of how they handle negative zero (which can be
12013 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000012014 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000012015 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000012016 Cond.getOpcode() == ISD::SETCC) {
12017 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012018
Chris Lattner47b4ce82009-03-11 05:48:52 +000012019 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000012020 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000012021 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
12022 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012023 switch (CC) {
12024 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012025 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012026 // Converting this to a min would handle NaNs incorrectly, and swapping
12027 // the operands would cause it to handle comparisons between positive
12028 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012029 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012030 if (!UnsafeFPMath &&
12031 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12032 break;
12033 std::swap(LHS, RHS);
12034 }
Dan Gohman670e5392009-09-21 18:03:22 +000012035 Opcode = X86ISD::FMIN;
12036 break;
12037 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012038 // Converting this to a min would handle comparisons between positive
12039 // and negative zero incorrectly.
12040 if (!UnsafeFPMath &&
12041 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
12042 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012043 Opcode = X86ISD::FMIN;
12044 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012045 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012046 // Converting this to a min would handle both negative zeros and NaNs
12047 // incorrectly, but we can swap the operands to fix both.
12048 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012049 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012050 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012051 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012052 Opcode = X86ISD::FMIN;
12053 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012054
Dan Gohman670e5392009-09-21 18:03:22 +000012055 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012056 // Converting this to a max would handle comparisons between positive
12057 // and negative zero incorrectly.
12058 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000012059 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012060 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012061 Opcode = X86ISD::FMAX;
12062 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012063 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012064 // Converting this to a max would handle NaNs incorrectly, and swapping
12065 // the operands would cause it to handle comparisons between positive
12066 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012067 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012068 if (!UnsafeFPMath &&
12069 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12070 break;
12071 std::swap(LHS, RHS);
12072 }
Dan Gohman670e5392009-09-21 18:03:22 +000012073 Opcode = X86ISD::FMAX;
12074 break;
12075 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012076 // Converting this to a max would handle both negative zeros and NaNs
12077 // incorrectly, but we can swap the operands to fix both.
12078 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012079 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012080 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012081 case ISD::SETGE:
12082 Opcode = X86ISD::FMAX;
12083 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000012084 }
Dan Gohman670e5392009-09-21 18:03:22 +000012085 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000012086 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
12087 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012088 switch (CC) {
12089 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012090 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012091 // Converting this to a min would handle comparisons between positive
12092 // and negative zero incorrectly, and swapping the operands would
12093 // cause it to handle NaNs incorrectly.
12094 if (!UnsafeFPMath &&
12095 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000012096 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012097 break;
12098 std::swap(LHS, RHS);
12099 }
Dan Gohman670e5392009-09-21 18:03:22 +000012100 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000012101 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012102 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012103 // Converting this to a min would handle NaNs incorrectly.
12104 if (!UnsafeFPMath &&
12105 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
12106 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012107 Opcode = X86ISD::FMIN;
12108 break;
12109 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012110 // Converting this to a min would handle both negative zeros and NaNs
12111 // incorrectly, but we can swap the operands to fix both.
12112 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012113 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012114 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012115 case ISD::SETGE:
12116 Opcode = X86ISD::FMIN;
12117 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012118
Dan Gohman670e5392009-09-21 18:03:22 +000012119 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012120 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012121 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012122 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012123 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000012124 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012125 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012126 // Converting this to a max would handle comparisons between positive
12127 // and negative zero incorrectly, and swapping the operands would
12128 // cause it to handle NaNs incorrectly.
12129 if (!UnsafeFPMath &&
12130 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000012131 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012132 break;
12133 std::swap(LHS, RHS);
12134 }
Dan Gohman670e5392009-09-21 18:03:22 +000012135 Opcode = X86ISD::FMAX;
12136 break;
12137 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012138 // Converting this to a max would handle both negative zeros and NaNs
12139 // incorrectly, but we can swap the operands to fix both.
12140 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012141 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012142 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012143 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012144 Opcode = X86ISD::FMAX;
12145 break;
12146 }
Chris Lattner83e6c992006-10-04 06:57:07 +000012147 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012148
Chris Lattner47b4ce82009-03-11 05:48:52 +000012149 if (Opcode)
12150 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000012151 }
Eric Christopherfd179292009-08-27 18:07:15 +000012152
Chris Lattnerd1980a52009-03-12 06:52:53 +000012153 // If this is a select between two integer constants, try to do some
12154 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000012155 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
12156 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000012157 // Don't do this for crazy integer types.
12158 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
12159 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000012160 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012161 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000012162
Chris Lattnercee56e72009-03-13 05:53:31 +000012163 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000012164 // Efficiently invertible.
12165 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
12166 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
12167 isa<ConstantSDNode>(Cond.getOperand(1))))) {
12168 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000012169 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012170 }
Eric Christopherfd179292009-08-27 18:07:15 +000012171
Chris Lattnerd1980a52009-03-12 06:52:53 +000012172 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012173 if (FalseC->getAPIntValue() == 0 &&
12174 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012175 if (NeedsCondInvert) // Invert the condition if needed.
12176 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12177 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012178
Chris Lattnerd1980a52009-03-12 06:52:53 +000012179 // Zero extend the condition if needed.
12180 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012181
Chris Lattnercee56e72009-03-13 05:53:31 +000012182 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000012183 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012184 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012185 }
Eric Christopherfd179292009-08-27 18:07:15 +000012186
Chris Lattner97a29a52009-03-13 05:22:11 +000012187 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000012188 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000012189 if (NeedsCondInvert) // Invert the condition if needed.
12190 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12191 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012192
Chris Lattner97a29a52009-03-13 05:22:11 +000012193 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012194 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12195 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012196 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000012197 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000012198 }
Eric Christopherfd179292009-08-27 18:07:15 +000012199
Chris Lattnercee56e72009-03-13 05:53:31 +000012200 // Optimize cases that will turn into an LEA instruction. This requires
12201 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012202 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012203 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012204 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012205
Chris Lattnercee56e72009-03-13 05:53:31 +000012206 bool isFastMultiplier = false;
12207 if (Diff < 10) {
12208 switch ((unsigned char)Diff) {
12209 default: break;
12210 case 1: // result = add base, cond
12211 case 2: // result = lea base( , cond*2)
12212 case 3: // result = lea base(cond, cond*2)
12213 case 4: // result = lea base( , cond*4)
12214 case 5: // result = lea base(cond, cond*4)
12215 case 8: // result = lea base( , cond*8)
12216 case 9: // result = lea base(cond, cond*8)
12217 isFastMultiplier = true;
12218 break;
12219 }
12220 }
Eric Christopherfd179292009-08-27 18:07:15 +000012221
Chris Lattnercee56e72009-03-13 05:53:31 +000012222 if (isFastMultiplier) {
12223 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
12224 if (NeedsCondInvert) // Invert the condition if needed.
12225 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12226 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012227
Chris Lattnercee56e72009-03-13 05:53:31 +000012228 // Zero extend the condition if needed.
12229 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12230 Cond);
12231 // Scale the condition by the difference.
12232 if (Diff != 1)
12233 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12234 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012235
Chris Lattnercee56e72009-03-13 05:53:31 +000012236 // Add the base if non-zero.
12237 if (FalseC->getAPIntValue() != 0)
12238 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12239 SDValue(FalseC, 0));
12240 return Cond;
12241 }
Eric Christopherfd179292009-08-27 18:07:15 +000012242 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012243 }
12244 }
Eric Christopherfd179292009-08-27 18:07:15 +000012245
Dan Gohman475871a2008-07-27 21:46:04 +000012246 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000012247}
12248
Chris Lattnerd1980a52009-03-12 06:52:53 +000012249/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
12250static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
12251 TargetLowering::DAGCombinerInfo &DCI) {
12252 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000012253
Chris Lattnerd1980a52009-03-12 06:52:53 +000012254 // If the flag operand isn't dead, don't touch this CMOV.
12255 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
12256 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000012257
Evan Chengb5a55d92011-05-24 01:48:22 +000012258 SDValue FalseOp = N->getOperand(0);
12259 SDValue TrueOp = N->getOperand(1);
12260 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
12261 SDValue Cond = N->getOperand(3);
12262 if (CC == X86::COND_E || CC == X86::COND_NE) {
12263 switch (Cond.getOpcode()) {
12264 default: break;
12265 case X86ISD::BSR:
12266 case X86ISD::BSF:
12267 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
12268 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
12269 return (CC == X86::COND_E) ? FalseOp : TrueOp;
12270 }
12271 }
12272
Chris Lattnerd1980a52009-03-12 06:52:53 +000012273 // If this is a select between two integer constants, try to do some
12274 // optimizations. Note that the operands are ordered the opposite of SELECT
12275 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000012276 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
12277 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012278 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
12279 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000012280 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
12281 CC = X86::GetOppositeBranchCondition(CC);
12282 std::swap(TrueC, FalseC);
12283 }
Eric Christopherfd179292009-08-27 18:07:15 +000012284
Chris Lattnerd1980a52009-03-12 06:52:53 +000012285 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012286 // This is efficient for any integer data type (including i8/i16) and
12287 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012288 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012289 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12290 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012291
Chris Lattnerd1980a52009-03-12 06:52:53 +000012292 // Zero extend the condition if needed.
12293 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012294
Chris Lattnerd1980a52009-03-12 06:52:53 +000012295 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
12296 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012297 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012298 if (N->getNumValues() == 2) // Dead flag value?
12299 return DCI.CombineTo(N, Cond, SDValue());
12300 return Cond;
12301 }
Eric Christopherfd179292009-08-27 18:07:15 +000012302
Chris Lattnercee56e72009-03-13 05:53:31 +000012303 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
12304 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000012305 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012306 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12307 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012308
Chris Lattner97a29a52009-03-13 05:22:11 +000012309 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012310 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12311 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012312 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12313 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012314
Chris Lattner97a29a52009-03-13 05:22:11 +000012315 if (N->getNumValues() == 2) // Dead flag value?
12316 return DCI.CombineTo(N, Cond, SDValue());
12317 return Cond;
12318 }
Eric Christopherfd179292009-08-27 18:07:15 +000012319
Chris Lattnercee56e72009-03-13 05:53:31 +000012320 // Optimize cases that will turn into an LEA instruction. This requires
12321 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012322 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012323 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012324 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012325
Chris Lattnercee56e72009-03-13 05:53:31 +000012326 bool isFastMultiplier = false;
12327 if (Diff < 10) {
12328 switch ((unsigned char)Diff) {
12329 default: break;
12330 case 1: // result = add base, cond
12331 case 2: // result = lea base( , cond*2)
12332 case 3: // result = lea base(cond, cond*2)
12333 case 4: // result = lea base( , cond*4)
12334 case 5: // result = lea base(cond, cond*4)
12335 case 8: // result = lea base( , cond*8)
12336 case 9: // result = lea base(cond, cond*8)
12337 isFastMultiplier = true;
12338 break;
12339 }
12340 }
Eric Christopherfd179292009-08-27 18:07:15 +000012341
Chris Lattnercee56e72009-03-13 05:53:31 +000012342 if (isFastMultiplier) {
12343 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012344 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12345 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012346 // Zero extend the condition if needed.
12347 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12348 Cond);
12349 // Scale the condition by the difference.
12350 if (Diff != 1)
12351 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12352 DAG.getConstant(Diff, Cond.getValueType()));
12353
12354 // Add the base if non-zero.
12355 if (FalseC->getAPIntValue() != 0)
12356 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12357 SDValue(FalseC, 0));
12358 if (N->getNumValues() == 2) // Dead flag value?
12359 return DCI.CombineTo(N, Cond, SDValue());
12360 return Cond;
12361 }
Eric Christopherfd179292009-08-27 18:07:15 +000012362 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012363 }
12364 }
12365 return SDValue();
12366}
12367
12368
Evan Cheng0b0cd912009-03-28 05:57:29 +000012369/// PerformMulCombine - Optimize a single multiply with constant into two
12370/// in order to implement it with two cheaper instructions, e.g.
12371/// LEA + SHL, LEA + LEA.
12372static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12373 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012374 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12375 return SDValue();
12376
Owen Andersone50ed302009-08-10 22:56:29 +000012377 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012378 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012379 return SDValue();
12380
12381 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12382 if (!C)
12383 return SDValue();
12384 uint64_t MulAmt = C->getZExtValue();
12385 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12386 return SDValue();
12387
12388 uint64_t MulAmt1 = 0;
12389 uint64_t MulAmt2 = 0;
12390 if ((MulAmt % 9) == 0) {
12391 MulAmt1 = 9;
12392 MulAmt2 = MulAmt / 9;
12393 } else if ((MulAmt % 5) == 0) {
12394 MulAmt1 = 5;
12395 MulAmt2 = MulAmt / 5;
12396 } else if ((MulAmt % 3) == 0) {
12397 MulAmt1 = 3;
12398 MulAmt2 = MulAmt / 3;
12399 }
12400 if (MulAmt2 &&
12401 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12402 DebugLoc DL = N->getDebugLoc();
12403
12404 if (isPowerOf2_64(MulAmt2) &&
12405 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12406 // If second multiplifer is pow2, issue it first. We want the multiply by
12407 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12408 // is an add.
12409 std::swap(MulAmt1, MulAmt2);
12410
12411 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012412 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012413 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012414 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012415 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012416 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012417 DAG.getConstant(MulAmt1, VT));
12418
Eric Christopherfd179292009-08-27 18:07:15 +000012419 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012420 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012421 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012422 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012423 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012424 DAG.getConstant(MulAmt2, VT));
12425
12426 // Do not add new nodes to DAG combiner worklist.
12427 DCI.CombineTo(N, NewMul, false);
12428 }
12429 return SDValue();
12430}
12431
Evan Chengad9c0a32009-12-15 00:53:42 +000012432static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12433 SDValue N0 = N->getOperand(0);
12434 SDValue N1 = N->getOperand(1);
12435 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12436 EVT VT = N0.getValueType();
12437
12438 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12439 // since the result of setcc_c is all zero's or all ones.
12440 if (N1C && N0.getOpcode() == ISD::AND &&
12441 N0.getOperand(1).getOpcode() == ISD::Constant) {
12442 SDValue N00 = N0.getOperand(0);
12443 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12444 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12445 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12446 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12447 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12448 APInt ShAmt = N1C->getAPIntValue();
12449 Mask = Mask.shl(ShAmt);
12450 if (Mask != 0)
12451 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12452 N00, DAG.getConstant(Mask, VT));
12453 }
12454 }
12455
12456 return SDValue();
12457}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012458
Nate Begeman740ab032009-01-26 00:52:55 +000012459/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12460/// when possible.
12461static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12462 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012463 EVT VT = N->getValueType(0);
12464 if (!VT.isVector() && VT.isInteger() &&
12465 N->getOpcode() == ISD::SHL)
12466 return PerformSHLCombine(N, DAG);
12467
Nate Begeman740ab032009-01-26 00:52:55 +000012468 // On X86 with SSE2 support, we can transform this to a vector shift if
12469 // all elements are shifted by the same amount. We can't do this in legalize
12470 // because the a constant vector is typically transformed to a constant pool
12471 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000012472 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012473 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012474
Owen Anderson825b72b2009-08-11 20:47:22 +000012475 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012476 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012477
Mon P Wang3becd092009-01-28 08:12:05 +000012478 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012479 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012480 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012481 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012482 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12483 unsigned NumElts = VT.getVectorNumElements();
12484 unsigned i = 0;
12485 for (; i != NumElts; ++i) {
12486 SDValue Arg = ShAmtOp.getOperand(i);
12487 if (Arg.getOpcode() == ISD::UNDEF) continue;
12488 BaseShAmt = Arg;
12489 break;
12490 }
12491 for (; i != NumElts; ++i) {
12492 SDValue Arg = ShAmtOp.getOperand(i);
12493 if (Arg.getOpcode() == ISD::UNDEF) continue;
12494 if (Arg != BaseShAmt) {
12495 return SDValue();
12496 }
12497 }
12498 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012499 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012500 SDValue InVec = ShAmtOp.getOperand(0);
12501 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12502 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12503 unsigned i = 0;
12504 for (; i != NumElts; ++i) {
12505 SDValue Arg = InVec.getOperand(i);
12506 if (Arg.getOpcode() == ISD::UNDEF) continue;
12507 BaseShAmt = Arg;
12508 break;
12509 }
12510 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12511 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012512 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012513 if (C->getZExtValue() == SplatIdx)
12514 BaseShAmt = InVec.getOperand(1);
12515 }
12516 }
12517 if (BaseShAmt.getNode() == 0)
12518 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12519 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012520 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012521 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012522
Mon P Wangefa42202009-09-03 19:56:25 +000012523 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012524 if (EltVT.bitsGT(MVT::i32))
12525 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12526 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012527 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012528
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012529 // The shift amount is identical so we can do a vector shift.
12530 SDValue ValOp = N->getOperand(0);
12531 switch (N->getOpcode()) {
12532 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012533 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012534 break;
12535 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012536 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012537 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012538 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012539 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012540 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012541 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012542 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012543 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012544 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012545 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012546 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012547 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012548 break;
12549 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012550 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012551 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012552 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012553 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012554 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012555 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012556 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012557 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012558 break;
12559 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012560 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012561 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012562 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012563 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012564 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012565 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012566 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012567 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012568 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012569 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012570 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012571 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012572 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012573 }
12574 return SDValue();
12575}
12576
Nate Begemanb65c1752010-12-17 22:55:37 +000012577
Stuart Hastings865f0932011-06-03 23:53:54 +000012578// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12579// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12580// and friends. Likewise for OR -> CMPNEQSS.
12581static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12582 TargetLowering::DAGCombinerInfo &DCI,
12583 const X86Subtarget *Subtarget) {
12584 unsigned opcode;
12585
12586 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12587 // we're requiring SSE2 for both.
12588 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12589 SDValue N0 = N->getOperand(0);
12590 SDValue N1 = N->getOperand(1);
12591 SDValue CMP0 = N0->getOperand(1);
12592 SDValue CMP1 = N1->getOperand(1);
12593 DebugLoc DL = N->getDebugLoc();
12594
12595 // The SETCCs should both refer to the same CMP.
12596 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12597 return SDValue();
12598
12599 SDValue CMP00 = CMP0->getOperand(0);
12600 SDValue CMP01 = CMP0->getOperand(1);
12601 EVT VT = CMP00.getValueType();
12602
12603 if (VT == MVT::f32 || VT == MVT::f64) {
12604 bool ExpectingFlags = false;
12605 // Check for any users that want flags:
12606 for (SDNode::use_iterator UI = N->use_begin(),
12607 UE = N->use_end();
12608 !ExpectingFlags && UI != UE; ++UI)
12609 switch (UI->getOpcode()) {
12610 default:
12611 case ISD::BR_CC:
12612 case ISD::BRCOND:
12613 case ISD::SELECT:
12614 ExpectingFlags = true;
12615 break;
12616 case ISD::CopyToReg:
12617 case ISD::SIGN_EXTEND:
12618 case ISD::ZERO_EXTEND:
12619 case ISD::ANY_EXTEND:
12620 break;
12621 }
12622
12623 if (!ExpectingFlags) {
12624 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12625 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12626
12627 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12628 X86::CondCode tmp = cc0;
12629 cc0 = cc1;
12630 cc1 = tmp;
12631 }
12632
12633 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12634 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12635 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12636 X86ISD::NodeType NTOperator = is64BitFP ?
12637 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12638 // FIXME: need symbolic constants for these magic numbers.
12639 // See X86ATTInstPrinter.cpp:printSSECC().
12640 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12641 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12642 DAG.getConstant(x86cc, MVT::i8));
12643 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12644 OnesOrZeroesF);
12645 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12646 DAG.getConstant(1, MVT::i32));
12647 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12648 return OneBitOfTruth;
12649 }
12650 }
12651 }
12652 }
12653 return SDValue();
12654}
12655
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012656/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12657/// so it can be folded inside ANDNP.
12658static bool CanFoldXORWithAllOnes(const SDNode *N) {
12659 EVT VT = N->getValueType(0);
12660
12661 // Match direct AllOnes for 128 and 256-bit vectors
12662 if (ISD::isBuildVectorAllOnes(N))
12663 return true;
12664
12665 // Look through a bit convert.
12666 if (N->getOpcode() == ISD::BITCAST)
12667 N = N->getOperand(0).getNode();
12668
12669 // Sometimes the operand may come from a insert_subvector building a 256-bit
12670 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012671 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000012672 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
12673 SDValue V1 = N->getOperand(0);
12674 SDValue V2 = N->getOperand(1);
12675
12676 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12677 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12678 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12679 ISD::isBuildVectorAllOnes(V2.getNode()))
12680 return true;
12681 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012682
12683 return false;
12684}
12685
Nate Begemanb65c1752010-12-17 22:55:37 +000012686static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12687 TargetLowering::DAGCombinerInfo &DCI,
12688 const X86Subtarget *Subtarget) {
12689 if (DCI.isBeforeLegalizeOps())
12690 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012691
Stuart Hastings865f0932011-06-03 23:53:54 +000012692 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12693 if (R.getNode())
12694 return R;
12695
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012696 // Want to form ANDNP nodes:
12697 // 1) In the hopes of then easily combining them with OR and AND nodes
12698 // to form PBLEND/PSIGN.
12699 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012700 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012701 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012702 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012703
Nate Begemanb65c1752010-12-17 22:55:37 +000012704 SDValue N0 = N->getOperand(0);
12705 SDValue N1 = N->getOperand(1);
12706 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012707
Nate Begemanb65c1752010-12-17 22:55:37 +000012708 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012709 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012710 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12711 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012712 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012713
12714 // Check RHS for vnot
12715 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012716 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12717 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012718 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012719
Nate Begemanb65c1752010-12-17 22:55:37 +000012720 return SDValue();
12721}
12722
Evan Cheng760d1942010-01-04 21:22:48 +000012723static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012724 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012725 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012726 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012727 return SDValue();
12728
Stuart Hastings865f0932011-06-03 23:53:54 +000012729 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12730 if (R.getNode())
12731 return R;
12732
Evan Cheng760d1942010-01-04 21:22:48 +000012733 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012734 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012735 return SDValue();
12736
Evan Cheng760d1942010-01-04 21:22:48 +000012737 SDValue N0 = N->getOperand(0);
12738 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012739
Nate Begemanb65c1752010-12-17 22:55:37 +000012740 // look for psign/blend
12741 if (Subtarget->hasSSSE3()) {
12742 if (VT == MVT::v2i64) {
12743 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012744 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012745 std::swap(N0, N1);
12746 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012747 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012748 SDValue Mask = N1.getOperand(0);
12749 SDValue X = N1.getOperand(1);
12750 SDValue Y;
12751 if (N0.getOperand(0) == Mask)
12752 Y = N0.getOperand(1);
12753 if (N0.getOperand(1) == Mask)
12754 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012755
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012756 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012757 if (!Y.getNode())
12758 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012759
Nate Begemanb65c1752010-12-17 22:55:37 +000012760 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12761 if (Mask.getOpcode() != ISD::BITCAST ||
12762 X.getOpcode() != ISD::BITCAST ||
12763 Y.getOpcode() != ISD::BITCAST)
12764 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012765
Nate Begemanb65c1752010-12-17 22:55:37 +000012766 // Look through mask bitcast.
12767 Mask = Mask.getOperand(0);
12768 EVT MaskVT = Mask.getValueType();
12769
12770 // Validate that the Mask operand is a vector sra node. The sra node
12771 // will be an intrinsic.
12772 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12773 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012774
Nate Begemanb65c1752010-12-17 22:55:37 +000012775 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12776 // there is no psrai.b
12777 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12778 case Intrinsic::x86_sse2_psrai_w:
12779 case Intrinsic::x86_sse2_psrai_d:
12780 break;
12781 default: return SDValue();
12782 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012783
Nate Begemanb65c1752010-12-17 22:55:37 +000012784 // Check that the SRA is all signbits.
12785 SDValue SraC = Mask.getOperand(2);
12786 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12787 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12788 if ((SraAmt + 1) != EltBits)
12789 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012790
Nate Begemanb65c1752010-12-17 22:55:37 +000012791 DebugLoc DL = N->getDebugLoc();
12792
12793 // Now we know we at least have a plendvb with the mask val. See if
12794 // we can form a psignb/w/d.
12795 // psign = x.type == y.type == mask.type && y = sub(0, x);
12796 X = X.getOperand(0);
12797 Y = Y.getOperand(0);
12798 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12799 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12800 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12801 unsigned Opc = 0;
12802 switch (EltBits) {
12803 case 8: Opc = X86ISD::PSIGNB; break;
12804 case 16: Opc = X86ISD::PSIGNW; break;
12805 case 32: Opc = X86ISD::PSIGND; break;
12806 default: break;
12807 }
12808 if (Opc) {
12809 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12810 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12811 }
12812 }
12813 // PBLENDVB only available on SSE 4.1
12814 if (!Subtarget->hasSSE41())
12815 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012816
Nate Begemanb65c1752010-12-17 22:55:37 +000012817 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12818 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12819 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012820 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012821 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12822 }
12823 }
12824 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012825
Nate Begemanb65c1752010-12-17 22:55:37 +000012826 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012827 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12828 std::swap(N0, N1);
12829 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12830 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012831 if (!N0.hasOneUse() || !N1.hasOneUse())
12832 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012833
12834 SDValue ShAmt0 = N0.getOperand(1);
12835 if (ShAmt0.getValueType() != MVT::i8)
12836 return SDValue();
12837 SDValue ShAmt1 = N1.getOperand(1);
12838 if (ShAmt1.getValueType() != MVT::i8)
12839 return SDValue();
12840 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12841 ShAmt0 = ShAmt0.getOperand(0);
12842 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12843 ShAmt1 = ShAmt1.getOperand(0);
12844
12845 DebugLoc DL = N->getDebugLoc();
12846 unsigned Opc = X86ISD::SHLD;
12847 SDValue Op0 = N0.getOperand(0);
12848 SDValue Op1 = N1.getOperand(0);
12849 if (ShAmt0.getOpcode() == ISD::SUB) {
12850 Opc = X86ISD::SHRD;
12851 std::swap(Op0, Op1);
12852 std::swap(ShAmt0, ShAmt1);
12853 }
12854
Evan Cheng8b1190a2010-04-28 01:18:01 +000012855 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012856 if (ShAmt1.getOpcode() == ISD::SUB) {
12857 SDValue Sum = ShAmt1.getOperand(0);
12858 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012859 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12860 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12861 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12862 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012863 return DAG.getNode(Opc, DL, VT,
12864 Op0, Op1,
12865 DAG.getNode(ISD::TRUNCATE, DL,
12866 MVT::i8, ShAmt0));
12867 }
12868 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12869 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12870 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012871 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012872 return DAG.getNode(Opc, DL, VT,
12873 N0.getOperand(0), N1.getOperand(0),
12874 DAG.getNode(ISD::TRUNCATE, DL,
12875 MVT::i8, ShAmt0));
12876 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012877
Evan Cheng760d1942010-01-04 21:22:48 +000012878 return SDValue();
12879}
12880
Chris Lattner149a4e52008-02-22 02:09:43 +000012881/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012882static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012883 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000012884 StoreSDNode *St = cast<StoreSDNode>(N);
12885 EVT VT = St->getValue().getValueType();
12886 EVT StVT = St->getMemoryVT();
12887 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000012888 SDValue StoredVal = St->getOperand(1);
12889 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12890
12891 // If we are saving a concatination of two XMM registers, perform two stores.
Nadav Rotem6236f7f2011-08-11 17:05:47 +000012892 // This is better in Sandy Bridge cause one 256-bit mem op is done via two
12893 // 128-bit ones. If in the future the cost becomes only one memory access the
12894 // first version would be better.
Nadav Rotem5e742a32011-08-11 16:41:21 +000012895 if (VT.getSizeInBits() == 256 &&
12896 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
12897 StoredVal.getNumOperands() == 2) {
12898
12899 SDValue Value0 = StoredVal.getOperand(0);
12900 SDValue Value1 = StoredVal.getOperand(1);
12901
12902 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
12903 SDValue Ptr0 = St->getBasePtr();
12904 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
12905
12906 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
12907 St->getPointerInfo(), St->isVolatile(),
12908 St->isNonTemporal(), St->getAlignment());
12909 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
12910 St->getPointerInfo(), St->isVolatile(),
12911 St->isNonTemporal(), St->getAlignment());
12912 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
12913 }
Nadav Rotem614061b2011-08-10 19:30:14 +000012914
12915 // Optimize trunc store (of multiple scalars) to shuffle and store.
12916 // First, pack all of the elements in one place. Next, store to memory
12917 // in fewer chunks.
12918 if (St->isTruncatingStore() && VT.isVector()) {
12919 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12920 unsigned NumElems = VT.getVectorNumElements();
12921 assert(StVT != VT && "Cannot truncate to the same type");
12922 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
12923 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
12924
12925 // From, To sizes and ElemCount must be pow of two
12926 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
12927 // We are going to use the original vector elt for storing.
12928 // accumulated smaller vector elements must be a multiple of bigger size.
12929 if (0 != (NumElems * ToSz) % FromSz) return SDValue();
12930 unsigned SizeRatio = FromSz / ToSz;
12931
12932 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
12933
12934 // Create a type on which we perform the shuffle
12935 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
12936 StVT.getScalarType(), NumElems*SizeRatio);
12937
12938 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
12939
12940 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
12941 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
12942 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
12943
12944 // Can't shuffle using an illegal type
12945 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
12946
12947 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
12948 DAG.getUNDEF(WideVec.getValueType()),
12949 ShuffleVec.data());
12950 // At this point all of the data is stored at the bottom of the
12951 // register. We now need to save it to mem.
12952
12953 // Find the largest store unit
12954 MVT StoreType = MVT::i8;
12955 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
12956 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
12957 MVT Tp = (MVT::SimpleValueType)tp;
12958 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
12959 StoreType = Tp;
12960 }
12961
12962 // Bitcast the original vector into a vector of store-size units
12963 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
12964 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
12965 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
12966 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
12967 SmallVector<SDValue, 8> Chains;
12968 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
12969 TLI.getPointerTy());
12970 SDValue Ptr = St->getBasePtr();
12971
12972 // Perform one or more big stores into memory.
12973 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
12974 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
12975 StoreType, ShuffWide,
12976 DAG.getIntPtrConstant(i));
12977 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
12978 St->getPointerInfo(), St->isVolatile(),
12979 St->isNonTemporal(), St->getAlignment());
12980 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
12981 Chains.push_back(Ch);
12982 }
12983
12984 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
12985 Chains.size());
12986 }
12987
12988
Chris Lattner149a4e52008-02-22 02:09:43 +000012989 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12990 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012991 // A preferable solution to the general problem is to figure out the right
12992 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012993
12994 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000012995 if (VT.getSizeInBits() != 64)
12996 return SDValue();
12997
Devang Patel578efa92009-06-05 21:57:13 +000012998 const Function *F = DAG.getMachineFunction().getFunction();
12999 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000013000 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000013001 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000013002 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000013003 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000013004 isa<LoadSDNode>(St->getValue()) &&
13005 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
13006 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013007 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013008 LoadSDNode *Ld = 0;
13009 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000013010 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000013011 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013012 // Must be a store of a load. We currently handle two cases: the load
13013 // is a direct child, and it's under an intervening TokenFactor. It is
13014 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000013015 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000013016 Ld = cast<LoadSDNode>(St->getChain());
13017 else if (St->getValue().hasOneUse() &&
13018 ChainVal->getOpcode() == ISD::TokenFactor) {
13019 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013020 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000013021 TokenFactorIndex = i;
13022 Ld = cast<LoadSDNode>(St->getValue());
13023 } else
13024 Ops.push_back(ChainVal->getOperand(i));
13025 }
13026 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000013027
Evan Cheng536e6672009-03-12 05:59:15 +000013028 if (!Ld || !ISD::isNormalLoad(Ld))
13029 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013030
Evan Cheng536e6672009-03-12 05:59:15 +000013031 // If this is not the MMX case, i.e. we are just turning i64 load/store
13032 // into f64 load/store, avoid the transformation if there are multiple
13033 // uses of the loaded value.
13034 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
13035 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013036
Evan Cheng536e6672009-03-12 05:59:15 +000013037 DebugLoc LdDL = Ld->getDebugLoc();
13038 DebugLoc StDL = N->getDebugLoc();
13039 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
13040 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
13041 // pair instead.
13042 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013043 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000013044 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
13045 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013046 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013047 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000013048 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000013049 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000013050 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000013051 Ops.size());
13052 }
Evan Cheng536e6672009-03-12 05:59:15 +000013053 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000013054 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013055 St->isVolatile(), St->isNonTemporal(),
13056 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000013057 }
Evan Cheng536e6672009-03-12 05:59:15 +000013058
13059 // Otherwise, lower to two pairs of 32-bit loads / stores.
13060 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013061 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
13062 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013063
Owen Anderson825b72b2009-08-11 20:47:22 +000013064 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013065 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013066 Ld->isVolatile(), Ld->isNonTemporal(),
13067 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000013068 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013069 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000013070 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013071 MinAlign(Ld->getAlignment(), 4));
13072
13073 SDValue NewChain = LoLd.getValue(1);
13074 if (TokenFactorIndex != -1) {
13075 Ops.push_back(LoLd);
13076 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000013077 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000013078 Ops.size());
13079 }
13080
13081 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013082 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
13083 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013084
13085 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013086 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013087 St->isVolatile(), St->isNonTemporal(),
13088 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013089 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013090 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000013091 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013092 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013093 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000013094 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000013095 }
Dan Gohman475871a2008-07-27 21:46:04 +000013096 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000013097}
13098
Chris Lattner6cf73262008-01-25 06:14:17 +000013099/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
13100/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013101static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000013102 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
13103 // F[X]OR(0.0, x) -> x
13104 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000013105 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13106 if (C->getValueAPF().isPosZero())
13107 return N->getOperand(1);
13108 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13109 if (C->getValueAPF().isPosZero())
13110 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000013111 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013112}
13113
13114/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013115static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000013116 // FAND(0.0, x) -> 0.0
13117 // FAND(x, 0.0) -> 0.0
13118 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13119 if (C->getValueAPF().isPosZero())
13120 return N->getOperand(0);
13121 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13122 if (C->getValueAPF().isPosZero())
13123 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000013124 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013125}
13126
Dan Gohmane5af2d32009-01-29 01:59:02 +000013127static SDValue PerformBTCombine(SDNode *N,
13128 SelectionDAG &DAG,
13129 TargetLowering::DAGCombinerInfo &DCI) {
13130 // BT ignores high bits in the bit index operand.
13131 SDValue Op1 = N->getOperand(1);
13132 if (Op1.hasOneUse()) {
13133 unsigned BitWidth = Op1.getValueSizeInBits();
13134 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
13135 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013136 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
13137 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000013138 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000013139 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
13140 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
13141 DCI.CommitTargetLoweringOpt(TLO);
13142 }
13143 return SDValue();
13144}
Chris Lattner83e6c992006-10-04 06:57:07 +000013145
Eli Friedman7a5e5552009-06-07 06:52:44 +000013146static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
13147 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013148 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000013149 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000013150 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000013151 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000013152 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000013153 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013154 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013155 }
13156 return SDValue();
13157}
13158
Evan Cheng2e489c42009-12-16 00:53:11 +000013159static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
13160 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
13161 // (and (i32 x86isd::setcc_carry), 1)
13162 // This eliminates the zext. This transformation is necessary because
13163 // ISD::SETCC is always legalized to i8.
13164 DebugLoc dl = N->getDebugLoc();
13165 SDValue N0 = N->getOperand(0);
13166 EVT VT = N->getValueType(0);
13167 if (N0.getOpcode() == ISD::AND &&
13168 N0.hasOneUse() &&
13169 N0.getOperand(0).hasOneUse()) {
13170 SDValue N00 = N0.getOperand(0);
13171 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
13172 return SDValue();
13173 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
13174 if (!C || C->getZExtValue() != 1)
13175 return SDValue();
13176 return DAG.getNode(ISD::AND, dl, VT,
13177 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
13178 N00.getOperand(0), N00.getOperand(1)),
13179 DAG.getConstant(1, VT));
13180 }
13181
13182 return SDValue();
13183}
13184
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013185// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
13186static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
13187 unsigned X86CC = N->getConstantOperandVal(0);
13188 SDValue EFLAG = N->getOperand(1);
13189 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013190
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013191 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
13192 // a zext and produces an all-ones bit which is more useful than 0/1 in some
13193 // cases.
13194 if (X86CC == X86::COND_B)
13195 return DAG.getNode(ISD::AND, DL, MVT::i8,
13196 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
13197 DAG.getConstant(X86CC, MVT::i8), EFLAG),
13198 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013199
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013200 return SDValue();
13201}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013202
Benjamin Kramer1396c402011-06-18 11:09:41 +000013203static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
13204 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013205 SDValue Op0 = N->getOperand(0);
13206 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
13207 // a 32-bit target where SSE doesn't support i64->FP operations.
13208 if (Op0.getOpcode() == ISD::LOAD) {
13209 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
13210 EVT VT = Ld->getValueType(0);
13211 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
13212 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
13213 !XTLI->getSubtarget()->is64Bit() &&
13214 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000013215 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
13216 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013217 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
13218 return FILDChain;
13219 }
13220 }
13221 return SDValue();
13222}
13223
Chris Lattner23a01992010-12-20 01:37:09 +000013224// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
13225static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
13226 X86TargetLowering::DAGCombinerInfo &DCI) {
13227 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
13228 // the result is either zero or one (depending on the input carry bit).
13229 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
13230 if (X86::isZeroNode(N->getOperand(0)) &&
13231 X86::isZeroNode(N->getOperand(1)) &&
13232 // We don't have a good way to replace an EFLAGS use, so only do this when
13233 // dead right now.
13234 SDValue(N, 1).use_empty()) {
13235 DebugLoc DL = N->getDebugLoc();
13236 EVT VT = N->getValueType(0);
13237 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
13238 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
13239 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
13240 DAG.getConstant(X86::COND_B,MVT::i8),
13241 N->getOperand(2)),
13242 DAG.getConstant(1, VT));
13243 return DCI.CombineTo(N, Res1, CarryOut);
13244 }
13245
13246 return SDValue();
13247}
13248
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013249// fold (add Y, (sete X, 0)) -> adc 0, Y
13250// (add Y, (setne X, 0)) -> sbb -1, Y
13251// (sub (sete X, 0), Y) -> sbb 0, Y
13252// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013253static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013254 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013255
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013256 // Look through ZExts.
13257 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
13258 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
13259 return SDValue();
13260
13261 SDValue SetCC = Ext.getOperand(0);
13262 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
13263 return SDValue();
13264
13265 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
13266 if (CC != X86::COND_E && CC != X86::COND_NE)
13267 return SDValue();
13268
13269 SDValue Cmp = SetCC.getOperand(1);
13270 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000013271 !X86::isZeroNode(Cmp.getOperand(1)) ||
13272 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013273 return SDValue();
13274
13275 SDValue CmpOp0 = Cmp.getOperand(0);
13276 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
13277 DAG.getConstant(1, CmpOp0.getValueType()));
13278
13279 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
13280 if (CC == X86::COND_NE)
13281 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
13282 DL, OtherVal.getValueType(), OtherVal,
13283 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
13284 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
13285 DL, OtherVal.getValueType(), OtherVal,
13286 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
13287}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013288
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013289static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
13290 SDValue Op0 = N->getOperand(0);
13291 SDValue Op1 = N->getOperand(1);
13292
13293 // X86 can't encode an immediate LHS of a sub. See if we can push the
13294 // negation into a preceding instruction.
13295 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013296 // If the RHS of the sub is a XOR with one use and a constant, invert the
13297 // immediate. Then add one to the LHS of the sub so we can turn
13298 // X-Y -> X+~Y+1, saving one register.
13299 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
13300 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000013301 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013302 EVT VT = Op0.getValueType();
13303 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
13304 Op1.getOperand(0),
13305 DAG.getConstant(~XorC, VT));
13306 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000013307 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013308 }
13309 }
13310
13311 return OptimizeConditionalInDecrement(N, DAG);
13312}
13313
Dan Gohman475871a2008-07-27 21:46:04 +000013314SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000013315 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000013316 SelectionDAG &DAG = DCI.DAG;
13317 switch (N->getOpcode()) {
13318 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000013319 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013320 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000013321 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000013322 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013323 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
13324 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000013325 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000013326 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000013327 case ISD::SHL:
13328 case ISD::SRA:
13329 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000013330 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000013331 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000013332 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013333 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000013334 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000013335 case X86ISD::FOR: return PerformFORCombine(N, DAG);
13336 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000013337 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013338 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000013339 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013340 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013341 case X86ISD::SHUFPS: // Handle all target specific shuffles
13342 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000013343 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013344 case X86ISD::PUNPCKHBW:
13345 case X86ISD::PUNPCKHWD:
13346 case X86ISD::PUNPCKHDQ:
13347 case X86ISD::PUNPCKHQDQ:
13348 case X86ISD::UNPCKHPS:
13349 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000013350 case X86ISD::VUNPCKHPSY:
13351 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013352 case X86ISD::PUNPCKLBW:
13353 case X86ISD::PUNPCKLWD:
13354 case X86ISD::PUNPCKLDQ:
13355 case X86ISD::PUNPCKLQDQ:
13356 case X86ISD::UNPCKLPS:
13357 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000013358 case X86ISD::VUNPCKLPSY:
13359 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013360 case X86ISD::MOVHLPS:
13361 case X86ISD::MOVLHPS:
13362 case X86ISD::PSHUFD:
13363 case X86ISD::PSHUFHW:
13364 case X86ISD::PSHUFLW:
13365 case X86ISD::MOVSS:
13366 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000013367 case X86ISD::VPERMILPS:
13368 case X86ISD::VPERMILPSY:
13369 case X86ISD::VPERMILPD:
13370 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000013371 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000013372 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000013373 }
13374
Dan Gohman475871a2008-07-27 21:46:04 +000013375 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000013376}
13377
Evan Chenge5b51ac2010-04-17 06:13:15 +000013378/// isTypeDesirableForOp - Return true if the target has native support for
13379/// the specified value type and it is 'desirable' to use the type for the
13380/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
13381/// instruction encodings are longer and some i16 instructions are slow.
13382bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
13383 if (!isTypeLegal(VT))
13384 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013385 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000013386 return true;
13387
13388 switch (Opc) {
13389 default:
13390 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000013391 case ISD::LOAD:
13392 case ISD::SIGN_EXTEND:
13393 case ISD::ZERO_EXTEND:
13394 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013395 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013396 case ISD::SRL:
13397 case ISD::SUB:
13398 case ISD::ADD:
13399 case ISD::MUL:
13400 case ISD::AND:
13401 case ISD::OR:
13402 case ISD::XOR:
13403 return false;
13404 }
13405}
13406
13407/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013408/// beneficial for dag combiner to promote the specified node. If true, it
13409/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013410bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013411 EVT VT = Op.getValueType();
13412 if (VT != MVT::i16)
13413 return false;
13414
Evan Cheng4c26e932010-04-19 19:29:22 +000013415 bool Promote = false;
13416 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013417 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013418 default: break;
13419 case ISD::LOAD: {
13420 LoadSDNode *LD = cast<LoadSDNode>(Op);
13421 // If the non-extending load has a single use and it's not live out, then it
13422 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013423 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13424 Op.hasOneUse()*/) {
13425 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13426 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13427 // The only case where we'd want to promote LOAD (rather then it being
13428 // promoted as an operand is when it's only use is liveout.
13429 if (UI->getOpcode() != ISD::CopyToReg)
13430 return false;
13431 }
13432 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013433 Promote = true;
13434 break;
13435 }
13436 case ISD::SIGN_EXTEND:
13437 case ISD::ZERO_EXTEND:
13438 case ISD::ANY_EXTEND:
13439 Promote = true;
13440 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013441 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013442 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013443 SDValue N0 = Op.getOperand(0);
13444 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013445 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013446 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013447 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013448 break;
13449 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013450 case ISD::ADD:
13451 case ISD::MUL:
13452 case ISD::AND:
13453 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013454 case ISD::XOR:
13455 Commute = true;
13456 // fallthrough
13457 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013458 SDValue N0 = Op.getOperand(0);
13459 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000013460 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013461 return false;
13462 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000013463 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013464 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000013465 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013466 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013467 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013468 }
13469 }
13470
13471 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013472 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013473}
13474
Evan Cheng60c07e12006-07-05 22:17:51 +000013475//===----------------------------------------------------------------------===//
13476// X86 Inline Assembly Support
13477//===----------------------------------------------------------------------===//
13478
Chris Lattnerb8105652009-07-20 17:51:36 +000013479bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13480 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013481
13482 std::string AsmStr = IA->getAsmString();
13483
13484 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013485 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013486 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013487
13488 switch (AsmPieces.size()) {
13489 default: return false;
13490 case 1:
13491 AsmStr = AsmPieces[0];
13492 AsmPieces.clear();
13493 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13494
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013495 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013496 // we will turn this bswap into something that will be lowered to logical ops
13497 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13498 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013499 // bswap $0
13500 if (AsmPieces.size() == 2 &&
13501 (AsmPieces[0] == "bswap" ||
13502 AsmPieces[0] == "bswapq" ||
13503 AsmPieces[0] == "bswapl") &&
13504 (AsmPieces[1] == "$0" ||
13505 AsmPieces[1] == "${0:q}")) {
13506 // No need to check constraints, nothing other than the equivalent of
13507 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013508 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013509 if (!Ty || Ty->getBitWidth() % 16 != 0)
13510 return false;
13511 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013512 }
13513 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013514 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013515 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013516 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013517 AsmPieces[1] == "$$8," &&
13518 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013519 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13520 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013521 const std::string &ConstraintsStr = IA->getConstraintString();
13522 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013523 std::sort(AsmPieces.begin(), AsmPieces.end());
13524 if (AsmPieces.size() == 4 &&
13525 AsmPieces[0] == "~{cc}" &&
13526 AsmPieces[1] == "~{dirflag}" &&
13527 AsmPieces[2] == "~{flags}" &&
13528 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013529 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013530 if (!Ty || Ty->getBitWidth() % 16 != 0)
13531 return false;
13532 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013533 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013534 }
13535 break;
13536 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013537 if (CI->getType()->isIntegerTy(32) &&
13538 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13539 SmallVector<StringRef, 4> Words;
13540 SplitString(AsmPieces[0], Words, " \t,");
13541 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13542 Words[2] == "${0:w}") {
13543 Words.clear();
13544 SplitString(AsmPieces[1], Words, " \t,");
13545 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13546 Words[2] == "$0") {
13547 Words.clear();
13548 SplitString(AsmPieces[2], Words, " \t,");
13549 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13550 Words[2] == "${0:w}") {
13551 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013552 const std::string &ConstraintsStr = IA->getConstraintString();
13553 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013554 std::sort(AsmPieces.begin(), AsmPieces.end());
13555 if (AsmPieces.size() == 4 &&
13556 AsmPieces[0] == "~{cc}" &&
13557 AsmPieces[1] == "~{dirflag}" &&
13558 AsmPieces[2] == "~{flags}" &&
13559 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013560 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013561 if (!Ty || Ty->getBitWidth() % 16 != 0)
13562 return false;
13563 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013564 }
13565 }
13566 }
13567 }
13568 }
Evan Cheng55d42002011-01-08 01:24:27 +000013569
13570 if (CI->getType()->isIntegerTy(64)) {
13571 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13572 if (Constraints.size() >= 2 &&
13573 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13574 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13575 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13576 SmallVector<StringRef, 4> Words;
13577 SplitString(AsmPieces[0], Words, " \t");
13578 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013579 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013580 SplitString(AsmPieces[1], Words, " \t");
13581 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13582 Words.clear();
13583 SplitString(AsmPieces[2], Words, " \t,");
13584 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13585 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013586 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013587 if (!Ty || Ty->getBitWidth() % 16 != 0)
13588 return false;
13589 return IntrinsicLowering::LowerToByteSwap(CI);
13590 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013591 }
13592 }
13593 }
13594 }
13595 break;
13596 }
13597 return false;
13598}
13599
13600
13601
Chris Lattnerf4dff842006-07-11 02:54:03 +000013602/// getConstraintType - Given a constraint letter, return the type of
13603/// constraint it is for this target.
13604X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013605X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13606 if (Constraint.size() == 1) {
13607 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013608 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013609 case 'q':
13610 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013611 case 'f':
13612 case 't':
13613 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013614 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013615 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013616 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013617 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013618 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013619 case 'a':
13620 case 'b':
13621 case 'c':
13622 case 'd':
13623 case 'S':
13624 case 'D':
13625 case 'A':
13626 return C_Register;
13627 case 'I':
13628 case 'J':
13629 case 'K':
13630 case 'L':
13631 case 'M':
13632 case 'N':
13633 case 'G':
13634 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013635 case 'e':
13636 case 'Z':
13637 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013638 default:
13639 break;
13640 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013641 }
Chris Lattner4234f572007-03-25 02:14:49 +000013642 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013643}
13644
John Thompson44ab89e2010-10-29 17:29:13 +000013645/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013646/// This object must already have been set up with the operand type
13647/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013648TargetLowering::ConstraintWeight
13649 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013650 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013651 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013652 Value *CallOperandVal = info.CallOperandVal;
13653 // If we don't have a value, we can't do a match,
13654 // but allow it at the lowest weight.
13655 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013656 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013657 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013658 // Look at the constraint type.
13659 switch (*constraint) {
13660 default:
John Thompson44ab89e2010-10-29 17:29:13 +000013661 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13662 case 'R':
13663 case 'q':
13664 case 'Q':
13665 case 'a':
13666 case 'b':
13667 case 'c':
13668 case 'd':
13669 case 'S':
13670 case 'D':
13671 case 'A':
13672 if (CallOperandVal->getType()->isIntegerTy())
13673 weight = CW_SpecificReg;
13674 break;
13675 case 'f':
13676 case 't':
13677 case 'u':
13678 if (type->isFloatingPointTy())
13679 weight = CW_SpecificReg;
13680 break;
13681 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000013682 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000013683 weight = CW_SpecificReg;
13684 break;
13685 case 'x':
13686 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013687 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000013688 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013689 break;
13690 case 'I':
13691 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13692 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000013693 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013694 }
13695 break;
John Thompson44ab89e2010-10-29 17:29:13 +000013696 case 'J':
13697 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13698 if (C->getZExtValue() <= 63)
13699 weight = CW_Constant;
13700 }
13701 break;
13702 case 'K':
13703 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13704 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13705 weight = CW_Constant;
13706 }
13707 break;
13708 case 'L':
13709 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13710 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13711 weight = CW_Constant;
13712 }
13713 break;
13714 case 'M':
13715 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13716 if (C->getZExtValue() <= 3)
13717 weight = CW_Constant;
13718 }
13719 break;
13720 case 'N':
13721 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13722 if (C->getZExtValue() <= 0xff)
13723 weight = CW_Constant;
13724 }
13725 break;
13726 case 'G':
13727 case 'C':
13728 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13729 weight = CW_Constant;
13730 }
13731 break;
13732 case 'e':
13733 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13734 if ((C->getSExtValue() >= -0x80000000LL) &&
13735 (C->getSExtValue() <= 0x7fffffffLL))
13736 weight = CW_Constant;
13737 }
13738 break;
13739 case 'Z':
13740 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13741 if (C->getZExtValue() <= 0xffffffff)
13742 weight = CW_Constant;
13743 }
13744 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013745 }
13746 return weight;
13747}
13748
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013749/// LowerXConstraint - try to replace an X constraint, which matches anything,
13750/// with another that has more specific requirements based on the type of the
13751/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013752const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013753LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013754 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13755 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013756 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013757 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013758 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013759 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013760 return "x";
13761 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013762
Chris Lattner5e764232008-04-26 23:02:14 +000013763 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013764}
13765
Chris Lattner48884cd2007-08-25 00:47:38 +000013766/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13767/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013768void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013769 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013770 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013771 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013772 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013773
Eric Christopher100c8332011-06-02 23:16:42 +000013774 // Only support length 1 constraints for now.
13775 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013776
Eric Christopher100c8332011-06-02 23:16:42 +000013777 char ConstraintLetter = Constraint[0];
13778 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013779 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013780 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013781 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013782 if (C->getZExtValue() <= 31) {
13783 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013784 break;
13785 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013786 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013787 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013788 case 'J':
13789 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013790 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013791 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13792 break;
13793 }
13794 }
13795 return;
13796 case 'K':
13797 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013798 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013799 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13800 break;
13801 }
13802 }
13803 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013804 case 'N':
13805 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013806 if (C->getZExtValue() <= 255) {
13807 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013808 break;
13809 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013810 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013811 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013812 case 'e': {
13813 // 32-bit signed value
13814 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013815 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13816 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013817 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013818 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013819 break;
13820 }
13821 // FIXME gcc accepts some relocatable values here too, but only in certain
13822 // memory models; it's complicated.
13823 }
13824 return;
13825 }
13826 case 'Z': {
13827 // 32-bit unsigned value
13828 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013829 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13830 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013831 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13832 break;
13833 }
13834 }
13835 // FIXME gcc accepts some relocatable values here too, but only in certain
13836 // memory models; it's complicated.
13837 return;
13838 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013839 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013840 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013841 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013842 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013843 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013844 break;
13845 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013846
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013847 // In any sort of PIC mode addresses need to be computed at runtime by
13848 // adding in a register or some sort of table lookup. These can't
13849 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013850 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013851 return;
13852
Chris Lattnerdc43a882007-05-03 16:52:29 +000013853 // If we are in non-pic codegen mode, we allow the address of a global (with
13854 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013855 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013856 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013857
Chris Lattner49921962009-05-08 18:23:14 +000013858 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13859 while (1) {
13860 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13861 Offset += GA->getOffset();
13862 break;
13863 } else if (Op.getOpcode() == ISD::ADD) {
13864 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13865 Offset += C->getZExtValue();
13866 Op = Op.getOperand(0);
13867 continue;
13868 }
13869 } else if (Op.getOpcode() == ISD::SUB) {
13870 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13871 Offset += -C->getZExtValue();
13872 Op = Op.getOperand(0);
13873 continue;
13874 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013875 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013876
Chris Lattner49921962009-05-08 18:23:14 +000013877 // Otherwise, this isn't something we can handle, reject it.
13878 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013879 }
Eric Christopherfd179292009-08-27 18:07:15 +000013880
Dan Gohman46510a72010-04-15 01:51:59 +000013881 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013882 // If we require an extra load to get this address, as in PIC mode, we
13883 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013884 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13885 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013886 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013887
Devang Patel0d881da2010-07-06 22:08:15 +000013888 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13889 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013890 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013891 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013892 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013893
Gabor Greifba36cb52008-08-28 21:40:38 +000013894 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013895 Ops.push_back(Result);
13896 return;
13897 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013898 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013899}
13900
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013901std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013902X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013903 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013904 // First, see if this is a constraint that directly corresponds to an LLVM
13905 // register class.
13906 if (Constraint.size() == 1) {
13907 // GCC Constraint Letters
13908 switch (Constraint[0]) {
13909 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013910 // TODO: Slight differences here in allocation order and leaving
13911 // RIP in the class. Do they matter any more here than they do
13912 // in the normal allocation?
13913 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13914 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013915 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013916 return std::make_pair(0U, X86::GR32RegisterClass);
13917 else if (VT == MVT::i16)
13918 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013919 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013920 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013921 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013922 return std::make_pair(0U, X86::GR64RegisterClass);
13923 break;
13924 }
13925 // 32-bit fallthrough
13926 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013927 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013928 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13929 else if (VT == MVT::i16)
13930 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013931 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013932 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13933 else if (VT == MVT::i64)
13934 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13935 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013936 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013937 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013938 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013939 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013940 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013941 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013942 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013943 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013944 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013945 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013946 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013947 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13948 if (VT == MVT::i16)
13949 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13950 if (VT == MVT::i32 || !Subtarget->is64Bit())
13951 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13952 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013953 case 'f': // FP Stack registers.
13954 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13955 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013956 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013957 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013958 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013959 return std::make_pair(0U, X86::RFP64RegisterClass);
13960 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013961 case 'y': // MMX_REGS if MMX allowed.
13962 if (!Subtarget->hasMMX()) break;
13963 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013964 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013965 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013966 // FALL THROUGH.
13967 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013968 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013969
Owen Anderson825b72b2009-08-11 20:47:22 +000013970 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013971 default: break;
13972 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013973 case MVT::f32:
13974 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013975 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013976 case MVT::f64:
13977 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013978 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013979 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013980 case MVT::v16i8:
13981 case MVT::v8i16:
13982 case MVT::v4i32:
13983 case MVT::v2i64:
13984 case MVT::v4f32:
13985 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013986 return std::make_pair(0U, X86::VR128RegisterClass);
13987 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013988 break;
13989 }
13990 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013991
Chris Lattnerf76d1802006-07-31 23:26:50 +000013992 // Use the default implementation in TargetLowering to convert the register
13993 // constraint into a member of a register class.
13994 std::pair<unsigned, const TargetRegisterClass*> Res;
13995 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013996
13997 // Not found as a standard register?
13998 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013999 // Map st(0) -> st(7) -> ST0
14000 if (Constraint.size() == 7 && Constraint[0] == '{' &&
14001 tolower(Constraint[1]) == 's' &&
14002 tolower(Constraint[2]) == 't' &&
14003 Constraint[3] == '(' &&
14004 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
14005 Constraint[5] == ')' &&
14006 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000014007
Chris Lattner56d77c72009-09-13 22:41:48 +000014008 Res.first = X86::ST0+Constraint[4]-'0';
14009 Res.second = X86::RFP80RegisterClass;
14010 return Res;
14011 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014012
Chris Lattner56d77c72009-09-13 22:41:48 +000014013 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014014 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000014015 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000014016 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014017 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000014018 }
Chris Lattner56d77c72009-09-13 22:41:48 +000014019
14020 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014021 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014022 Res.first = X86::EFLAGS;
14023 Res.second = X86::CCRRegisterClass;
14024 return Res;
14025 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014026
Dale Johannesen330169f2008-11-13 21:52:36 +000014027 // 'A' means EAX + EDX.
14028 if (Constraint == "A") {
14029 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000014030 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014031 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000014032 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000014033 return Res;
14034 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014035
Chris Lattnerf76d1802006-07-31 23:26:50 +000014036 // Otherwise, check to see if this is a register class of the wrong value
14037 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
14038 // turn into {ax},{dx}.
14039 if (Res.second->hasType(VT))
14040 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014041
Chris Lattnerf76d1802006-07-31 23:26:50 +000014042 // All of the single-register GCC register classes map their values onto
14043 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
14044 // really want an 8-bit or 32-bit register, map to the appropriate register
14045 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000014046 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000014047 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014048 unsigned DestReg = 0;
14049 switch (Res.first) {
14050 default: break;
14051 case X86::AX: DestReg = X86::AL; break;
14052 case X86::DX: DestReg = X86::DL; break;
14053 case X86::CX: DestReg = X86::CL; break;
14054 case X86::BX: DestReg = X86::BL; break;
14055 }
14056 if (DestReg) {
14057 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014058 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014059 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014060 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014061 unsigned DestReg = 0;
14062 switch (Res.first) {
14063 default: break;
14064 case X86::AX: DestReg = X86::EAX; break;
14065 case X86::DX: DestReg = X86::EDX; break;
14066 case X86::CX: DestReg = X86::ECX; break;
14067 case X86::BX: DestReg = X86::EBX; break;
14068 case X86::SI: DestReg = X86::ESI; break;
14069 case X86::DI: DestReg = X86::EDI; break;
14070 case X86::BP: DestReg = X86::EBP; break;
14071 case X86::SP: DestReg = X86::ESP; break;
14072 }
14073 if (DestReg) {
14074 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014075 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014076 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014077 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014078 unsigned DestReg = 0;
14079 switch (Res.first) {
14080 default: break;
14081 case X86::AX: DestReg = X86::RAX; break;
14082 case X86::DX: DestReg = X86::RDX; break;
14083 case X86::CX: DestReg = X86::RCX; break;
14084 case X86::BX: DestReg = X86::RBX; break;
14085 case X86::SI: DestReg = X86::RSI; break;
14086 case X86::DI: DestReg = X86::RDI; break;
14087 case X86::BP: DestReg = X86::RBP; break;
14088 case X86::SP: DestReg = X86::RSP; break;
14089 }
14090 if (DestReg) {
14091 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014092 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014093 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000014094 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000014095 } else if (Res.second == X86::FR32RegisterClass ||
14096 Res.second == X86::FR64RegisterClass ||
14097 Res.second == X86::VR128RegisterClass) {
14098 // Handle references to XMM physical registers that got mapped into the
14099 // wrong class. This can happen with constraints like {xmm0} where the
14100 // target independent register mapper will just pick the first match it can
14101 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000014102 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014103 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000014104 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014105 Res.second = X86::FR64RegisterClass;
14106 else if (X86::VR128RegisterClass->hasType(VT))
14107 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000014108 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014109
Chris Lattnerf76d1802006-07-31 23:26:50 +000014110 return Res;
14111}