blob: d709bc09da95b9fba73cd6e25b0290ce1df804af [file] [log] [blame]
Arnold Schwaighofer92226dd2007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chengb1712452010-01-27 06:25:16 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000016#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000017#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86ISelLowering.h"
19#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000020#include "X86TargetObjectFile.h"
David Greene583b68f2011-02-17 19:18:59 +000021#include "Utils/X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000022#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000023#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000024#include "llvm/DerivedTypes.h"
Chris Lattnerb903bed2009-06-26 21:20:29 +000025#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000026#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/Function.h"
Chris Lattnerb8105652009-07-20 17:51:36 +000028#include "llvm/Instructions.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000029#include "llvm/Intrinsics.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000030#include "llvm/LLVMContext.h"
Evan Cheng55d42002011-01-08 01:24:27 +000031#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000032#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000033#include "llvm/CodeGen/MachineFunction.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000035#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000036#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000037#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000039#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000040#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000041#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000043#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000044#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000045#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000046#include "llvm/ADT/StringExtras.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000047#include "llvm/ADT/VectorExtras.h"
Evan Cheng485fafc2011-03-21 01:19:09 +000048#include "llvm/Support/CallSite.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000049#include "llvm/Support/Debug.h"
Bill Wendlingec041eb2010-03-12 19:20:40 +000050#include "llvm/Support/Dwarf.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000051#include "llvm/Support/ErrorHandling.h"
52#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000053#include "llvm/Support/raw_ostream.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000054using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000055using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000056
Evan Chengb1712452010-01-27 06:25:16 +000057STATISTIC(NumTailCalls, "Number of tail calls");
58
Evan Cheng10e86422008-04-25 19:11:04 +000059// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000060static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000061 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000062
David Greenea5f26012011-02-07 19:36:54 +000063static SDValue Insert128BitVector(SDValue Result,
64 SDValue Vec,
65 SDValue Idx,
66 SelectionDAG &DAG,
67 DebugLoc dl);
David Greenef125a292011-02-08 19:04:41 +000068
David Greenea5f26012011-02-07 19:36:54 +000069static SDValue Extract128BitVector(SDValue Vec,
70 SDValue Idx,
71 SelectionDAG &DAG,
72 DebugLoc dl);
73
74/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
75/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000076/// simple subregister reference. Idx is an index in the 128 bits we
77/// want. It need not be aligned to a 128-bit bounday. That makes
78/// lowering EXTRACT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +000079static SDValue Extract128BitVector(SDValue Vec,
80 SDValue Idx,
81 SelectionDAG &DAG,
82 DebugLoc dl) {
83 EVT VT = Vec.getValueType();
84 assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
David Greenea5f26012011-02-07 19:36:54 +000085 EVT ElVT = VT.getVectorElementType();
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000086 int Factor = VT.getSizeInBits()/128;
87 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
88 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000089
90 // Extract from UNDEF is UNDEF.
91 if (Vec.getOpcode() == ISD::UNDEF)
92 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
93
94 if (isa<ConstantSDNode>(Idx)) {
95 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
96
97 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
98 // we can match to VEXTRACTF128.
99 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
100
101 // This is the index of the first element of the 128-bit chunk
102 // we want.
103 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
104 * ElemsPerChunk);
105
106 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000107 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
108 VecIdx);
109
110 return Result;
111 }
112
113 return SDValue();
114}
115
116/// Generate a DAG to put 128-bits into a vector > 128 bits. This
117/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +0000118/// simple superregister reference. Idx is an index in the 128 bits
119/// we want. It need not be aligned to a 128-bit bounday. That makes
120/// lowering INSERT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +0000121static SDValue Insert128BitVector(SDValue Result,
122 SDValue Vec,
123 SDValue Idx,
124 SelectionDAG &DAG,
125 DebugLoc dl) {
126 if (isa<ConstantSDNode>(Idx)) {
127 EVT VT = Vec.getValueType();
128 assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
129
130 EVT ElVT = VT.getVectorElementType();
David Greenea5f26012011-02-07 19:36:54 +0000131 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greenea5f26012011-02-07 19:36:54 +0000132 EVT ResultVT = Result.getValueType();
133
134 // Insert the relevant 128 bits.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000135 unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +0000136
137 // This is the index of the first element of the 128-bit chunk
138 // we want.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000139 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
David Greenea5f26012011-02-07 19:36:54 +0000140 * ElemsPerChunk);
141
142 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000143 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
144 VecIdx);
145 return Result;
146 }
147
148 return SDValue();
149}
150
Chris Lattnerf0144122009-07-28 03:13:23 +0000151static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000152 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
153 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000154
Evan Cheng2bffee22011-02-01 01:14:13 +0000155 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000156 if (is64Bit)
157 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000158 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000159 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000160
Evan Cheng203576a2011-07-20 19:50:42 +0000161 if (Subtarget->isTargetELF())
162 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000163 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000164 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000165 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000166}
167
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000168X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000169 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000170 Subtarget = &TM.getSubtarget<X86Subtarget>();
Bruno Cardoso Lopesaed890b2011-08-01 21:54:05 +0000171 X86ScalarSSEf64 = Subtarget->hasXMMInt() || Subtarget->hasAVX();
172 X86ScalarSSEf32 = Subtarget->hasXMM() || Subtarget->hasAVX();
Evan Cheng25ab6902006-09-08 06:48:29 +0000173 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000174
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000175 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000176 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000177
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000178 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000179 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000180
181 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000182 setBooleanContents(ZeroOrOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000183
Eric Christopherde5e1012011-03-11 01:05:58 +0000184 // For 64-bit since we have so many registers use the ILP scheduler, for
185 // 32-bit code use the register pressure specific scheduling.
186 if (Subtarget->is64Bit())
187 setSchedulingPreference(Sched::ILP);
188 else
189 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +0000190 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000191
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000192 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000193 // Setup Windows compiler runtime calls.
194 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000195 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000196 setLibcallName(RTLIB::SREM_I64, "_allrem");
197 setLibcallName(RTLIB::UREM_I64, "_aullrem");
198 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000199 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000200 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000201 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000202 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000203 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
204 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
205 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000206 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
207 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000208 }
209
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000210 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000211 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000212 setUseUnderscoreSetJmp(false);
213 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000214 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000215 // MS runtime is weird: it exports _setjmp, but longjmp!
216 setUseUnderscoreSetJmp(true);
217 setUseUnderscoreLongJmp(false);
218 } else {
219 setUseUnderscoreSetJmp(true);
220 setUseUnderscoreLongJmp(true);
221 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000222
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000223 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000224 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000225 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000226 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000227 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000228 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000229
Owen Anderson825b72b2009-08-11 20:47:22 +0000230 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000231
Scott Michelfdc40a02009-02-17 22:15:04 +0000232 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000233 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000234 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000236 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000237 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
238 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000239
240 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000241 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
242 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
243 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
244 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
245 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
246 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000247
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000248 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
249 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
251 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
252 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000253
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
256 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000257 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000258 // We have an algorithm for SSE2->double, and we turn this into a
259 // 64-bit FILD followed by conditional FADD for other targets.
260 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000261 // We have an algorithm for SSE2, and we turn this into a 64-bit
262 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000263 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000264 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000265
266 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
267 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
269 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000270
Devang Patel6a784892009-06-05 18:48:29 +0000271 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000272 // SSE has no i16 to fp conversion, only i32
273 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000274 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000275 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000277 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
279 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000280 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000281 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000282 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
283 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000284 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000285
Dale Johannesen73328d12007-09-19 23:55:34 +0000286 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
287 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000288 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
289 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000290
Evan Cheng02568ff2006-01-30 22:13:22 +0000291 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
292 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
294 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000295
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000296 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000297 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000298 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000300 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000301 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
302 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000303 }
304
305 // Handle FP_TO_UINT by promoting the destination to a larger signed
306 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000307 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
308 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
309 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000310
Evan Cheng25ab6902006-09-08 06:48:29 +0000311 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000312 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
313 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000314 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000315 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 // Expand FP_TO_UINT into a select.
317 // FIXME: We would like to use a Custom expander here eventually to do
318 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000319 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000320 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000321 // With SSE3 we can use fisttpll to convert to a signed i64; without
322 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000325
Chris Lattner399610a2006-12-05 18:22:22 +0000326 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000327 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000328 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
329 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000330 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000331 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000332 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000333 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000334 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000335 }
Chris Lattner21f66852005-12-23 05:15:23 +0000336
Dan Gohmanb00ee212008-02-18 19:34:53 +0000337 // Scalar integer divide and remainder are lowered to use operations that
338 // produce two results, to match the available instructions. This exposes
339 // the two-result form to trivial CSE, which is able to combine x/y and x%y
340 // into a single instruction.
341 //
342 // Scalar integer multiply-high is also lowered to use two-result
343 // operations, to match the available instructions. However, plain multiply
344 // (low) operations are left as Legal, as there are single-result
345 // instructions for this in x86. Using the two-result multiply instructions
346 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000347 for (unsigned i = 0, e = 4; i != e; ++i) {
348 MVT VT = IntVTs[i];
349 setOperationAction(ISD::MULHS, VT, Expand);
350 setOperationAction(ISD::MULHU, VT, Expand);
351 setOperationAction(ISD::SDIV, VT, Expand);
352 setOperationAction(ISD::UDIV, VT, Expand);
353 setOperationAction(ISD::SREM, VT, Expand);
354 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000355
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000356 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000357 setOperationAction(ISD::ADDC, VT, Custom);
358 setOperationAction(ISD::ADDE, VT, Custom);
359 setOperationAction(ISD::SUBC, VT, Custom);
360 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000361 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000362
Owen Anderson825b72b2009-08-11 20:47:22 +0000363 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
364 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
365 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
366 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000367 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000368 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
369 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
370 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
371 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
372 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
373 setOperationAction(ISD::FREM , MVT::f32 , Expand);
374 setOperationAction(ISD::FREM , MVT::f64 , Expand);
375 setOperationAction(ISD::FREM , MVT::f80 , Expand);
376 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000377
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
379 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000380 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
381 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000382 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
383 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000384 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000385 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
386 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000387 }
388
Benjamin Kramer1292c222010-12-04 20:32:23 +0000389 if (Subtarget->hasPOPCNT()) {
390 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
391 } else {
392 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
393 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
394 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
395 if (Subtarget->is64Bit())
396 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
397 }
398
Owen Anderson825b72b2009-08-11 20:47:22 +0000399 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
400 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000401
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000402 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000403 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000404 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000405 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000406 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000407 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
408 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
409 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
410 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
411 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000412 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000413 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
414 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
415 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
416 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000417 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000418 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000419 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000420 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000422
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000423 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
425 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
426 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
427 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000428 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000429 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
430 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000431 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000432 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
434 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
435 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
436 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000437 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000438 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000439 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000440 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
441 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
442 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000443 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
445 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
446 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000447 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000448
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000449 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000450 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000451
Eric Christopher9a9d2752010-07-22 02:48:34 +0000452 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000453 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000454
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000455 // On X86 and X86-64, atomic operations are lowered to locked instructions.
456 // Locked instructions, in turn, have implicit fence semantics (all memory
457 // operations are flushed before issuing the locked instruction, and they
458 // are not buffered), so we can fold away the common pattern of
459 // fence-atomic-fence.
460 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000461
Mon P Wang63307c32008-05-05 19:05:59 +0000462 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000463 for (unsigned i = 0, e = 4; i != e; ++i) {
464 MVT VT = IntVTs[i];
465 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
466 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
467 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000468
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000469 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
471 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
472 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
473 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
474 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
475 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
476 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000477 }
478
Evan Cheng3c992d22006-03-07 02:02:57 +0000479 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000480 if (!Subtarget->isTargetDarwin() &&
481 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000482 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000483 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000484 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000485
Owen Anderson825b72b2009-08-11 20:47:22 +0000486 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
487 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
488 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
489 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000490 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000491 setExceptionPointerRegister(X86::RAX);
492 setExceptionSelectorRegister(X86::RDX);
493 } else {
494 setExceptionPointerRegister(X86::EAX);
495 setExceptionSelectorRegister(X86::EDX);
496 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000497 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
498 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000499
Owen Anderson825b72b2009-08-11 20:47:22 +0000500 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000501
Owen Anderson825b72b2009-08-11 20:47:22 +0000502 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000503
Nate Begemanacc398c2006-01-25 18:21:52 +0000504 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::VASTART , MVT::Other, Custom);
506 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000507 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000508 setOperationAction(ISD::VAARG , MVT::Other, Custom);
509 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000510 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 setOperationAction(ISD::VAARG , MVT::Other, Expand);
512 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000513 }
Evan Chengae642192007-03-02 23:16:35 +0000514
Owen Anderson825b72b2009-08-11 20:47:22 +0000515 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
516 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000517 setOperationAction(ISD::DYNAMIC_STACKALLOC,
518 (Subtarget->is64Bit() ? MVT::i64 : MVT::i32),
519 (Subtarget->isTargetCOFF()
520 && !Subtarget->isTargetEnvMacho()
521 ? Custom : Expand));
Chris Lattnerb99329e2006-01-13 02:42:53 +0000522
Evan Chengc7ce29b2009-02-13 22:36:38 +0000523 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000524 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000525 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
527 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000528
Evan Cheng223547a2006-01-31 22:28:30 +0000529 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000530 setOperationAction(ISD::FABS , MVT::f64, Custom);
531 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000532
533 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000534 setOperationAction(ISD::FNEG , MVT::f64, Custom);
535 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000536
Evan Cheng68c47cb2007-01-05 07:55:56 +0000537 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
539 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000540
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000541 // Lower this to FGETSIGNx86 plus an AND.
542 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
543 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
544
Evan Chengd25e9e82006-02-02 00:28:23 +0000545 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::FSIN , MVT::f64, Expand);
547 setOperationAction(ISD::FCOS , MVT::f64, Expand);
548 setOperationAction(ISD::FSIN , MVT::f32, Expand);
549 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000550
Chris Lattnera54aa942006-01-29 06:26:08 +0000551 // Expand FP immediates into loads from the stack, except for the special
552 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000553 addLegalFPImmediate(APFloat(+0.0)); // xorpd
554 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000555 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000556 // Use SSE for f32, x87 for f64.
557 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
559 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000560
561 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000563
564 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000565 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000566
Owen Anderson825b72b2009-08-11 20:47:22 +0000567 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000568
569 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000570 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
571 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000572
573 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000574 setOperationAction(ISD::FSIN , MVT::f32, Expand);
575 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000576
Nate Begemane1795842008-02-14 08:57:00 +0000577 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000578 addLegalFPImmediate(APFloat(+0.0f)); // xorps
579 addLegalFPImmediate(APFloat(+0.0)); // FLD0
580 addLegalFPImmediate(APFloat(+1.0)); // FLD1
581 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
582 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
583
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000584 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000585 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
586 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000587 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000588 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000589 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000590 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000591 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
592 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000593
Owen Anderson825b72b2009-08-11 20:47:22 +0000594 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
595 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
596 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
597 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000598
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000599 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
601 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000602 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000603 addLegalFPImmediate(APFloat(+0.0)); // FLD0
604 addLegalFPImmediate(APFloat(+1.0)); // FLD1
605 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
606 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000607 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
608 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
609 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
610 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000611 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000612
Cameron Zwarich33390842011-07-08 21:39:21 +0000613 // We don't support FMA.
614 setOperationAction(ISD::FMA, MVT::f64, Expand);
615 setOperationAction(ISD::FMA, MVT::f32, Expand);
616
Dale Johannesen59a58732007-08-05 18:49:15 +0000617 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000618 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000619 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
620 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
621 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000622 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000623 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000624 addLegalFPImmediate(TmpFlt); // FLD0
625 TmpFlt.changeSign();
626 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000627
628 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000629 APFloat TmpFlt2(+1.0);
630 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
631 &ignored);
632 addLegalFPImmediate(TmpFlt2); // FLD1
633 TmpFlt2.changeSign();
634 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
635 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000636
Evan Chengc7ce29b2009-02-13 22:36:38 +0000637 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000638 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
639 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000640 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000641
642 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000643 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000644
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000645 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000646 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
647 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
648 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000649
Owen Anderson825b72b2009-08-11 20:47:22 +0000650 setOperationAction(ISD::FLOG, MVT::f80, Expand);
651 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
652 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
653 setOperationAction(ISD::FEXP, MVT::f80, Expand);
654 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000655
Mon P Wangf007a8b2008-11-06 05:31:54 +0000656 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000657 // (for widening) or expand (for scalarization). Then we will selectively
658 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
660 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
661 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
662 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
663 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
664 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
665 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
666 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
667 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
668 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
669 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
670 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
671 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
672 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
673 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
674 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
675 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000677 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
678 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000679 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
680 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
681 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
682 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
683 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
684 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
685 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
686 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
687 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000710 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000711 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
715 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
716 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
717 setTruncStoreAction((MVT::SimpleValueType)VT,
718 (MVT::SimpleValueType)InnerVT, Expand);
719 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
720 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
721 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000722 }
723
Evan Chengc7ce29b2009-02-13 22:36:38 +0000724 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
725 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000726 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000727 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000728 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000729 }
730
Dale Johannesen0488fb62010-09-30 23:57:10 +0000731 // MMX-sized vectors (other than x86mmx) are expected to be expanded
732 // into smaller operations.
733 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
734 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
735 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
736 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
737 setOperationAction(ISD::AND, MVT::v8i8, Expand);
738 setOperationAction(ISD::AND, MVT::v4i16, Expand);
739 setOperationAction(ISD::AND, MVT::v2i32, Expand);
740 setOperationAction(ISD::AND, MVT::v1i64, Expand);
741 setOperationAction(ISD::OR, MVT::v8i8, Expand);
742 setOperationAction(ISD::OR, MVT::v4i16, Expand);
743 setOperationAction(ISD::OR, MVT::v2i32, Expand);
744 setOperationAction(ISD::OR, MVT::v1i64, Expand);
745 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
746 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
747 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
748 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
749 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
750 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
751 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
752 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
753 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
754 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
755 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
756 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
757 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000758 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
759 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
760 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
761 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000762
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000763 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000764 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000765
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
767 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
768 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
769 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
770 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
771 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
772 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
773 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
774 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
775 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
776 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
777 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000778 }
779
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000780 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000782
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000783 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
784 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000785 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
786 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
787 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
788 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000789
Owen Anderson825b72b2009-08-11 20:47:22 +0000790 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
791 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
792 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
793 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
794 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
795 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
796 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
797 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
798 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
799 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
800 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
801 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
802 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
803 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
804 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
805 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000806
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
808 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
809 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
810 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000811
Owen Anderson825b72b2009-08-11 20:47:22 +0000812 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
813 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
814 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000817
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000818 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
819 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
820 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
821 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
822 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
823
Evan Cheng2c3ae372006-04-12 21:21:57 +0000824 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000825 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
826 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000827 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000828 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000829 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000830 // Do not attempt to custom lower non-128-bit vectors
831 if (!VT.is128BitVector())
832 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 setOperationAction(ISD::BUILD_VECTOR,
834 VT.getSimpleVT().SimpleTy, Custom);
835 setOperationAction(ISD::VECTOR_SHUFFLE,
836 VT.getSimpleVT().SimpleTy, Custom);
837 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
838 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000839 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000840
Owen Anderson825b72b2009-08-11 20:47:22 +0000841 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
842 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
843 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
844 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
845 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
846 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000847
Nate Begemancdd1eec2008-02-12 22:51:28 +0000848 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000849 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
850 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000851 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000852
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000853 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000854 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
855 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000856 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000857
858 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000859 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000860 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000861
Owen Andersond6662ad2009-08-10 20:46:15 +0000862 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000863 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000864 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000865 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000866 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000868 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000869 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000870 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000871 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000872 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000873
Owen Anderson825b72b2009-08-11 20:47:22 +0000874 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000875
Evan Cheng2c3ae372006-04-12 21:21:57 +0000876 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000877 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
878 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
879 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
880 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000881
Owen Anderson825b72b2009-08-11 20:47:22 +0000882 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
883 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000884 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000885
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000886 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000887 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
888 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
889 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
890 setOperationAction(ISD::FRINT, MVT::f32, Legal);
891 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
892 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
893 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
894 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
895 setOperationAction(ISD::FRINT, MVT::f64, Legal);
896 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
897
Nate Begeman14d12ca2008-02-11 04:19:36 +0000898 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000899 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000900
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000901 // Can turn SHL into an integer multiply.
902 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000903 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000904
Nate Begeman14d12ca2008-02-11 04:19:36 +0000905 // i8 and i16 vectors are custom , because the source register and source
906 // source memory operand types are not the same width. f32 vectors are
907 // custom since the immediate controlling the insert encodes additional
908 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
910 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
911 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
912 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000913
Owen Anderson825b72b2009-08-11 20:47:22 +0000914 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
915 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
916 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
917 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000918
919 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
921 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000922 }
923 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000924
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000925 if (Subtarget->hasSSE2() || Subtarget->hasAVX()) {
Nadav Rotem43012222011-05-11 08:12:09 +0000926 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
927 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
928 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000929 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000930
931 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
932 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
933 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
934
935 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
936 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
937 }
938
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000939 if (Subtarget->hasSSE42() || Subtarget->hasAVX())
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000941
David Greene9b9838d2009-06-29 16:47:10 +0000942 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000943 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
944 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
945 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
946 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
947 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
948 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000949
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000951 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
952 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000953
Owen Anderson825b72b2009-08-11 20:47:22 +0000954 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
955 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
956 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
957 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
958 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
959 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000960
Owen Anderson825b72b2009-08-11 20:47:22 +0000961 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
962 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
963 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
964 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
965 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
966 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000967
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000968 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
969 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000970 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000971
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000972 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
973 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
974 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
975 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
976 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
977 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
978
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000979 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
980 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
981 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
982 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
983
984 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
985 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
986 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
987 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
988
989 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
990 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
991
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +0000992 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
993 setOperationAction(ISD::VSETCC, MVT::v4i64, Custom);
994
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +0000995 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
996 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
997 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
998
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000999 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001000 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001001 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1002 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1003 EVT VT = SVT;
1004
1005 // Extract subvector is special because the value type
1006 // (result) is 128-bit but the source is 256-bit wide.
1007 if (VT.is128BitVector())
1008 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1009
1010 // Do not attempt to custom lower other non-256-bit vectors
1011 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001012 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001013
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001014 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1015 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1016 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1017 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001018 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001019 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001020 }
1021
David Greene54d8eba2011-01-27 22:38:56 +00001022 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001023 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1024 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1025 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001026
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001027 // Do not attempt to promote non-256-bit vectors
1028 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001029 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001030
1031 setOperationAction(ISD::AND, SVT, Promote);
1032 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1033 setOperationAction(ISD::OR, SVT, Promote);
1034 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1035 setOperationAction(ISD::XOR, SVT, Promote);
1036 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1037 setOperationAction(ISD::LOAD, SVT, Promote);
1038 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1039 setOperationAction(ISD::SELECT, SVT, Promote);
1040 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001041 }
David Greene9b9838d2009-06-29 16:47:10 +00001042 }
1043
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001044 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1045 // of this type with custom code.
1046 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1047 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1048 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1049 }
1050
Evan Cheng6be2c582006-04-05 23:38:46 +00001051 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001052 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001053
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001054
Eli Friedman962f5492010-06-02 19:35:46 +00001055 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1056 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001057 //
Eli Friedman962f5492010-06-02 19:35:46 +00001058 // FIXME: We really should do custom legalization for addition and
1059 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1060 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001061 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1062 // Add/Sub/Mul with overflow operations are custom lowered.
1063 MVT VT = IntVTs[i];
1064 setOperationAction(ISD::SADDO, VT, Custom);
1065 setOperationAction(ISD::UADDO, VT, Custom);
1066 setOperationAction(ISD::SSUBO, VT, Custom);
1067 setOperationAction(ISD::USUBO, VT, Custom);
1068 setOperationAction(ISD::SMULO, VT, Custom);
1069 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001070 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001071
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001072 // There are no 8-bit 3-address imul/mul instructions
1073 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1074 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001075
Evan Chengd54f2d52009-03-31 19:38:51 +00001076 if (!Subtarget->is64Bit()) {
1077 // These libcalls are not available in 32-bit.
1078 setLibcallName(RTLIB::SHL_I128, 0);
1079 setLibcallName(RTLIB::SRL_I128, 0);
1080 setLibcallName(RTLIB::SRA_I128, 0);
1081 }
1082
Evan Cheng206ee9d2006-07-07 08:33:52 +00001083 // We have target-specific dag combine patterns for the following nodes:
1084 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001085 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001086 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001087 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001088 setTargetDAGCombine(ISD::SHL);
1089 setTargetDAGCombine(ISD::SRA);
1090 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001091 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001092 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001093 setTargetDAGCombine(ISD::ADD);
1094 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001095 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001096 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001097 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001098 if (Subtarget->is64Bit())
1099 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001100
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001101 computeRegisterProperties();
1102
Evan Cheng05219282011-01-06 06:52:41 +00001103 // On Darwin, -Os means optimize for size without hurting performance,
1104 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001105 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001106 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001107 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001108 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1109 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1110 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001111 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001112 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001113
1114 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001115}
1116
Scott Michel5b8f82e2008-03-10 15:42:14 +00001117
Owen Anderson825b72b2009-08-11 20:47:22 +00001118MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1119 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001120}
1121
1122
Evan Cheng29286502008-01-23 23:17:41 +00001123/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1124/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001125static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001126 if (MaxAlign == 16)
1127 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001128 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001129 if (VTy->getBitWidth() == 128)
1130 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001131 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001132 unsigned EltAlign = 0;
1133 getMaxByValAlign(ATy->getElementType(), EltAlign);
1134 if (EltAlign > MaxAlign)
1135 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001136 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001137 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1138 unsigned EltAlign = 0;
1139 getMaxByValAlign(STy->getElementType(i), EltAlign);
1140 if (EltAlign > MaxAlign)
1141 MaxAlign = EltAlign;
1142 if (MaxAlign == 16)
1143 break;
1144 }
1145 }
1146 return;
1147}
1148
1149/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1150/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001151/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1152/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001153unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001154 if (Subtarget->is64Bit()) {
1155 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001156 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001157 if (TyAlign > 8)
1158 return TyAlign;
1159 return 8;
1160 }
1161
Evan Cheng29286502008-01-23 23:17:41 +00001162 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001163 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001164 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001165 return Align;
1166}
Chris Lattner2b02a442007-02-25 08:29:00 +00001167
Evan Chengf0df0312008-05-15 08:39:06 +00001168/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001169/// and store operations as a result of memset, memcpy, and memmove
1170/// lowering. If DstAlign is zero that means it's safe to destination
1171/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1172/// means there isn't a need to check it against alignment requirement,
1173/// probably because the source does not need to be loaded. If
1174/// 'NonScalarIntSafe' is true, that means it's safe to return a
1175/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1176/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1177/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001178/// It returns EVT::Other if the type should be determined using generic
1179/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001180EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001181X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1182 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001183 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001184 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001185 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001186 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1187 // linux. This is because the stack realignment code can't handle certain
1188 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001189 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001190 if (NonScalarIntSafe &&
1191 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001192 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001193 (Subtarget->isUnalignedMemAccessFast() ||
1194 ((DstAlign == 0 || DstAlign >= 16) &&
1195 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001196 Subtarget->getStackAlignment() >= 16) {
1197 if (Subtarget->hasSSE2())
1198 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001199 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001200 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001201 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001202 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001203 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001204 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001205 // Do not use f64 to lower memcpy if source is string constant. It's
1206 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001207 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001208 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001209 }
Evan Chengf0df0312008-05-15 08:39:06 +00001210 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001211 return MVT::i64;
1212 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001213}
1214
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001215/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1216/// current function. The returned value is a member of the
1217/// MachineJumpTableInfo::JTEntryKind enum.
1218unsigned X86TargetLowering::getJumpTableEncoding() const {
1219 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1220 // symbol.
1221 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1222 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001223 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001224
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001225 // Otherwise, use the normal jump table encoding heuristics.
1226 return TargetLowering::getJumpTableEncoding();
1227}
1228
Chris Lattnerc64daab2010-01-26 05:02:42 +00001229const MCExpr *
1230X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1231 const MachineBasicBlock *MBB,
1232 unsigned uid,MCContext &Ctx) const{
1233 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1234 Subtarget->isPICStyleGOT());
1235 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1236 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001237 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1238 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001239}
1240
Evan Chengcc415862007-11-09 01:32:10 +00001241/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1242/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001243SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001244 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001245 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001246 // This doesn't have DebugLoc associated with it, but is not really the
1247 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001248 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001249 return Table;
1250}
1251
Chris Lattner589c6f62010-01-26 06:28:43 +00001252/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1253/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1254/// MCExpr.
1255const MCExpr *X86TargetLowering::
1256getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1257 MCContext &Ctx) const {
1258 // X86-64 uses RIP relative addressing based on the jump table label.
1259 if (Subtarget->isPICStyleRIPRel())
1260 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1261
1262 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001263 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001264}
1265
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001266// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001267std::pair<const TargetRegisterClass*, uint8_t>
1268X86TargetLowering::findRepresentativeClass(EVT VT) const{
1269 const TargetRegisterClass *RRC = 0;
1270 uint8_t Cost = 1;
1271 switch (VT.getSimpleVT().SimpleTy) {
1272 default:
1273 return TargetLowering::findRepresentativeClass(VT);
1274 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1275 RRC = (Subtarget->is64Bit()
1276 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1277 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001278 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001279 RRC = X86::VR64RegisterClass;
1280 break;
1281 case MVT::f32: case MVT::f64:
1282 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1283 case MVT::v4f32: case MVT::v2f64:
1284 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1285 case MVT::v4f64:
1286 RRC = X86::VR128RegisterClass;
1287 break;
1288 }
1289 return std::make_pair(RRC, Cost);
1290}
1291
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001292bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1293 unsigned &Offset) const {
1294 if (!Subtarget->isTargetLinux())
1295 return false;
1296
1297 if (Subtarget->is64Bit()) {
1298 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1299 Offset = 0x28;
1300 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1301 AddressSpace = 256;
1302 else
1303 AddressSpace = 257;
1304 } else {
1305 // %gs:0x14 on i386
1306 Offset = 0x14;
1307 AddressSpace = 256;
1308 }
1309 return true;
1310}
1311
1312
Chris Lattner2b02a442007-02-25 08:29:00 +00001313//===----------------------------------------------------------------------===//
1314// Return Value Calling Convention Implementation
1315//===----------------------------------------------------------------------===//
1316
Chris Lattner59ed56b2007-02-28 04:55:35 +00001317#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001318
Michael J. Spencerec38de22010-10-10 22:04:20 +00001319bool
Eric Christopher471e4222011-06-08 23:55:35 +00001320X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1321 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001322 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001323 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001324 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001325 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001326 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001327 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001328}
1329
Dan Gohman98ca4f22009-08-05 01:29:28 +00001330SDValue
1331X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001332 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001333 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001334 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001335 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001336 MachineFunction &MF = DAG.getMachineFunction();
1337 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001338
Chris Lattner9774c912007-02-27 05:28:59 +00001339 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001340 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001341 RVLocs, *DAG.getContext());
1342 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001343
Evan Chengdcea1632010-02-04 02:40:39 +00001344 // Add the regs to the liveout set for the function.
1345 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1346 for (unsigned i = 0; i != RVLocs.size(); ++i)
1347 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1348 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001349
Dan Gohman475871a2008-07-27 21:46:04 +00001350 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001351
Dan Gohman475871a2008-07-27 21:46:04 +00001352 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001353 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1354 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001355 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1356 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001357
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001358 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001359 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1360 CCValAssign &VA = RVLocs[i];
1361 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001362 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001363 EVT ValVT = ValToCopy.getValueType();
1364
Dale Johannesenc4510512010-09-24 19:05:48 +00001365 // If this is x86-64, and we disabled SSE, we can't return FP values,
1366 // or SSE or MMX vectors.
1367 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1368 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001369 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001370 report_fatal_error("SSE register return with SSE disabled");
1371 }
1372 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1373 // llvm-gcc has never done it right and no one has noticed, so this
1374 // should be OK for now.
1375 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001376 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001377 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001378
Chris Lattner447ff682008-03-11 03:23:40 +00001379 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1380 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001381 if (VA.getLocReg() == X86::ST0 ||
1382 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001383 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1384 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001385 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001386 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001387 RetOps.push_back(ValToCopy);
1388 // Don't emit a copytoreg.
1389 continue;
1390 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001391
Evan Cheng242b38b2009-02-23 09:03:22 +00001392 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1393 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001394 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001395 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001396 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001397 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001398 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1399 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001400 // If we don't have SSE2 available, convert to v4f32 so the generated
1401 // register is legal.
1402 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001403 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001404 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001405 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001406 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001407
Dale Johannesendd64c412009-02-04 00:33:20 +00001408 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001409 Flag = Chain.getValue(1);
1410 }
Dan Gohman61a92132008-04-21 23:59:07 +00001411
1412 // The x86-64 ABI for returning structs by value requires that we copy
1413 // the sret argument into %rax for the return. We saved the argument into
1414 // a virtual register in the entry block, so now we copy the value out
1415 // and into %rax.
1416 if (Subtarget->is64Bit() &&
1417 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1418 MachineFunction &MF = DAG.getMachineFunction();
1419 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1420 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001421 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001422 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001423 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001424
Dale Johannesendd64c412009-02-04 00:33:20 +00001425 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001426 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001427
1428 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001429 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001430 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001431
Chris Lattner447ff682008-03-11 03:23:40 +00001432 RetOps[0] = Chain; // Update chain.
1433
1434 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001435 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001436 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001437
1438 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001439 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001440}
1441
Evan Cheng3d2125c2010-11-30 23:55:39 +00001442bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1443 if (N->getNumValues() != 1)
1444 return false;
1445 if (!N->hasNUsesOfValue(1, 0))
1446 return false;
1447
1448 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001449 if (Copy->getOpcode() != ISD::CopyToReg &&
1450 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001451 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001452
1453 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001454 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001455 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001456 if (UI->getOpcode() != X86ISD::RET_FLAG)
1457 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001458 HasRet = true;
1459 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001460
Evan Cheng1bf891a2010-12-01 22:59:46 +00001461 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001462}
1463
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001464EVT
1465X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001466 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001467 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001468 // TODO: Is this also valid on 32-bit?
1469 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001470 ReturnMVT = MVT::i8;
1471 else
1472 ReturnMVT = MVT::i32;
1473
1474 EVT MinVT = getRegisterType(Context, ReturnMVT);
1475 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001476}
1477
Dan Gohman98ca4f22009-08-05 01:29:28 +00001478/// LowerCallResult - Lower the result values of a call into the
1479/// appropriate copies out of appropriate physical registers.
1480///
1481SDValue
1482X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001483 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001484 const SmallVectorImpl<ISD::InputArg> &Ins,
1485 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001486 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001487
Chris Lattnere32bbf62007-02-28 07:09:55 +00001488 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001489 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001490 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001491 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1492 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001493 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001494
Chris Lattner3085e152007-02-25 08:59:22 +00001495 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001496 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001497 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001498 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001499
Torok Edwin3f142c32009-02-01 18:15:56 +00001500 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001501 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001502 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001503 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001504 }
1505
Evan Cheng79fb3b42009-02-20 20:43:02 +00001506 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001507
1508 // If this is a call to a function that returns an fp value on the floating
1509 // point stack, we must guarantee the the value is popped from the stack, so
1510 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001511 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001512 // instead.
1513 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1514 // If we prefer to use the value in xmm registers, copy it out as f80 and
1515 // use a truncate to move it from fp stack reg to xmm reg.
1516 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001517 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001518 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1519 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001520 Val = Chain.getValue(0);
1521
1522 // Round the f80 to the right size, which also moves it to the appropriate
1523 // xmm register.
1524 if (CopyVT != VA.getValVT())
1525 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1526 // This truncation won't change the value.
1527 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001528 } else {
1529 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1530 CopyVT, InFlag).getValue(1);
1531 Val = Chain.getValue(0);
1532 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001533 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001534 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001535 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001536
Dan Gohman98ca4f22009-08-05 01:29:28 +00001537 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001538}
1539
1540
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001541//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001542// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001543//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001544// StdCall calling convention seems to be standard for many Windows' API
1545// routines and around. It differs from C calling convention just a little:
1546// callee should clean up the stack, not caller. Symbols should be also
1547// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001548// For info on fast calling convention see Fast Calling Convention (tail call)
1549// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001550
Dan Gohman98ca4f22009-08-05 01:29:28 +00001551/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001552/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001553static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1554 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001555 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001556
Dan Gohman98ca4f22009-08-05 01:29:28 +00001557 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001558}
1559
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001560/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001561/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001562static bool
1563ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1564 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001565 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001566
Dan Gohman98ca4f22009-08-05 01:29:28 +00001567 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001568}
1569
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001570/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1571/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001572/// the specific parameter attribute. The copy will be passed as a byval
1573/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001574static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001575CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001576 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1577 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001578 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001579
Dale Johannesendd64c412009-02-04 00:33:20 +00001580 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001581 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001582 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001583}
1584
Chris Lattner29689432010-03-11 00:22:57 +00001585/// IsTailCallConvention - Return true if the calling convention is one that
1586/// supports tail call optimization.
1587static bool IsTailCallConvention(CallingConv::ID CC) {
1588 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1589}
1590
Evan Cheng485fafc2011-03-21 01:19:09 +00001591bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1592 if (!CI->isTailCall())
1593 return false;
1594
1595 CallSite CS(CI);
1596 CallingConv::ID CalleeCC = CS.getCallingConv();
1597 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1598 return false;
1599
1600 return true;
1601}
1602
Evan Cheng0c439eb2010-01-27 00:07:07 +00001603/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1604/// a tailcall target by changing its ABI.
1605static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001606 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001607}
1608
Dan Gohman98ca4f22009-08-05 01:29:28 +00001609SDValue
1610X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001611 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001612 const SmallVectorImpl<ISD::InputArg> &Ins,
1613 DebugLoc dl, SelectionDAG &DAG,
1614 const CCValAssign &VA,
1615 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001616 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001617 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001618 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001619 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001620 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001621 EVT ValVT;
1622
1623 // If value is passed by pointer we have address passed instead of the value
1624 // itself.
1625 if (VA.getLocInfo() == CCValAssign::Indirect)
1626 ValVT = VA.getLocVT();
1627 else
1628 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001629
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001630 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001631 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001632 // In case of tail call optimization mark all arguments mutable. Since they
1633 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001634 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001635 unsigned Bytes = Flags.getByValSize();
1636 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1637 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001638 return DAG.getFrameIndex(FI, getPointerTy());
1639 } else {
1640 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001641 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001642 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1643 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001644 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001645 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001646 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001647}
1648
Dan Gohman475871a2008-07-27 21:46:04 +00001649SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001650X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001651 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001652 bool isVarArg,
1653 const SmallVectorImpl<ISD::InputArg> &Ins,
1654 DebugLoc dl,
1655 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001656 SmallVectorImpl<SDValue> &InVals)
1657 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001658 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001659 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001660
Gordon Henriksen86737662008-01-05 16:56:59 +00001661 const Function* Fn = MF.getFunction();
1662 if (Fn->hasExternalLinkage() &&
1663 Subtarget->isTargetCygMing() &&
1664 Fn->getName() == "main")
1665 FuncInfo->setForceFramePointer(true);
1666
Evan Cheng1bc78042006-04-26 01:20:17 +00001667 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001668 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001669 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001670
Chris Lattner29689432010-03-11 00:22:57 +00001671 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1672 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001673
Chris Lattner638402b2007-02-28 07:00:42 +00001674 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001675 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001676 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001677 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001678
1679 // Allocate shadow area for Win64
1680 if (IsWin64) {
1681 CCInfo.AllocateStack(32, 8);
1682 }
1683
Duncan Sands45907662010-10-31 13:21:44 +00001684 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001685
Chris Lattnerf39f7712007-02-28 05:46:49 +00001686 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001687 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001688 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1689 CCValAssign &VA = ArgLocs[i];
1690 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1691 // places.
1692 assert(VA.getValNo() != LastVal &&
1693 "Don't support value assigned to multiple locs yet");
1694 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001695
Chris Lattnerf39f7712007-02-28 05:46:49 +00001696 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001697 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001698 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001699 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001700 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001701 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001702 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001703 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001704 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001705 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001706 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001707 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1708 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001709 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001710 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001711 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001712 RC = X86::VR64RegisterClass;
1713 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001714 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001715
Devang Patel68e6bee2011-02-21 23:21:26 +00001716 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001717 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001718
Chris Lattnerf39f7712007-02-28 05:46:49 +00001719 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1720 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1721 // right size.
1722 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001723 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001724 DAG.getValueType(VA.getValVT()));
1725 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001726 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001727 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001728 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001729 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001730
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001731 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001732 // Handle MMX values passed in XMM regs.
1733 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001734 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1735 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001736 } else
1737 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001738 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001739 } else {
1740 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001741 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001742 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001743
1744 // If value is passed via pointer - do a load.
1745 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001746 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1747 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001748
Dan Gohman98ca4f22009-08-05 01:29:28 +00001749 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001750 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001751
Dan Gohman61a92132008-04-21 23:59:07 +00001752 // The x86-64 ABI for returning structs by value requires that we copy
1753 // the sret argument into %rax for the return. Save the argument into
1754 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001755 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001756 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1757 unsigned Reg = FuncInfo->getSRetReturnReg();
1758 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001759 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001760 FuncInfo->setSRetReturnReg(Reg);
1761 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001762 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001763 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001764 }
1765
Chris Lattnerf39f7712007-02-28 05:46:49 +00001766 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001767 // Align stack specially for tail calls.
1768 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001769 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001770
Evan Cheng1bc78042006-04-26 01:20:17 +00001771 // If the function takes variable number of arguments, make a frame index for
1772 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001773 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001774 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1775 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001776 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001777 }
1778 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001779 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1780
1781 // FIXME: We should really autogenerate these arrays
1782 static const unsigned GPR64ArgRegsWin64[] = {
1783 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001784 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001785 static const unsigned GPR64ArgRegs64Bit[] = {
1786 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1787 };
1788 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001789 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1790 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1791 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001792 const unsigned *GPR64ArgRegs;
1793 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001794
1795 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001796 // The XMM registers which might contain var arg parameters are shadowed
1797 // in their paired GPR. So we only need to save the GPR to their home
1798 // slots.
1799 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001800 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001801 } else {
1802 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1803 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001804
1805 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001806 }
1807 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1808 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001809
Devang Patel578efa92009-06-05 21:57:13 +00001810 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001811 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001812 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001813 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001814 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001815 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001816 // Kernel mode asks for SSE to be disabled, so don't push them
1817 // on the stack.
1818 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001819
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001820 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001821 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001822 // Get to the caller-allocated home save location. Add 8 to account
1823 // for the return address.
1824 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001825 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001826 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001827 // Fixup to set vararg frame on shadow area (4 x i64).
1828 if (NumIntRegs < 4)
1829 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001830 } else {
1831 // For X86-64, if there are vararg parameters that are passed via
1832 // registers, then we must store them to their spots on the stack so they
1833 // may be loaded by deferencing the result of va_next.
1834 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1835 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1836 FuncInfo->setRegSaveFrameIndex(
1837 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001838 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001839 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001840
Gordon Henriksen86737662008-01-05 16:56:59 +00001841 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001842 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001843 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1844 getPointerTy());
1845 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001846 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001847 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1848 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001849 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001850 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001851 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001852 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001853 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001854 MachinePointerInfo::getFixedStack(
1855 FuncInfo->getRegSaveFrameIndex(), Offset),
1856 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001857 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001858 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001859 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001860
Dan Gohmanface41a2009-08-16 21:24:25 +00001861 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1862 // Now store the XMM (fp + vector) parameter registers.
1863 SmallVector<SDValue, 11> SaveXMMOps;
1864 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001865
Devang Patel68e6bee2011-02-21 23:21:26 +00001866 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001867 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1868 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001869
Dan Gohman1e93df62010-04-17 14:41:14 +00001870 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1871 FuncInfo->getRegSaveFrameIndex()));
1872 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1873 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001874
Dan Gohmanface41a2009-08-16 21:24:25 +00001875 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001876 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001877 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001878 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1879 SaveXMMOps.push_back(Val);
1880 }
1881 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1882 MVT::Other,
1883 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001884 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001885
1886 if (!MemOps.empty())
1887 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1888 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001889 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001890 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001891
Gordon Henriksen86737662008-01-05 16:56:59 +00001892 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001893 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001894 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001895 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001896 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001897 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001898 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001899 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001900 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001901
Gordon Henriksen86737662008-01-05 16:56:59 +00001902 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001903 // RegSaveFrameIndex is X86-64 only.
1904 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001905 if (CallConv == CallingConv::X86_FastCall ||
1906 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001907 // fastcc functions can't have varargs.
1908 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001909 }
Evan Cheng25caf632006-05-23 21:06:34 +00001910
Dan Gohman98ca4f22009-08-05 01:29:28 +00001911 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001912}
1913
Dan Gohman475871a2008-07-27 21:46:04 +00001914SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001915X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1916 SDValue StackPtr, SDValue Arg,
1917 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001918 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001919 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001920 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001921 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001922 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001923 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001924 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001925
1926 return DAG.getStore(Chain, dl, Arg, PtrOff,
1927 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001928 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001929}
1930
Bill Wendling64e87322009-01-16 19:25:27 +00001931/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001932/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001933SDValue
1934X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001935 SDValue &OutRetAddr, SDValue Chain,
1936 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001937 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001938 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001939 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001940 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001941
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001942 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001943 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1944 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001945 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001946}
1947
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001948/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001949/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001950static SDValue
1951EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001952 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001953 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001954 // Store the return address to the appropriate stack slot.
1955 if (!FPDiff) return Chain;
1956 // Calculate the new stack slot for the return address.
1957 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001958 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001959 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001960 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001961 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001962 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001963 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001964 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001965 return Chain;
1966}
1967
Dan Gohman98ca4f22009-08-05 01:29:28 +00001968SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001969X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001970 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001971 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001972 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001973 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001974 const SmallVectorImpl<ISD::InputArg> &Ins,
1975 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001976 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001977 MachineFunction &MF = DAG.getMachineFunction();
1978 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001979 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001980 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001981 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001982
Evan Cheng5f941932010-02-05 02:21:12 +00001983 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001984 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001985 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1986 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001987 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001988
1989 // Sibcalls are automatically detected tailcalls which do not require
1990 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001991 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001992 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001993
1994 if (isTailCall)
1995 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001996 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001997
Chris Lattner29689432010-03-11 00:22:57 +00001998 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1999 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002000
Chris Lattner638402b2007-02-28 07:00:42 +00002001 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002002 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002003 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002004 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002005
2006 // Allocate shadow area for Win64
2007 if (IsWin64) {
2008 CCInfo.AllocateStack(32, 8);
2009 }
2010
Duncan Sands45907662010-10-31 13:21:44 +00002011 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002012
Chris Lattner423c5f42007-02-28 05:31:48 +00002013 // Get a count of how many bytes are to be pushed on the stack.
2014 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002015 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002016 // This is a sibcall. The memory operands are available in caller's
2017 // own caller's stack.
2018 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002019 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002020 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002021
Gordon Henriksen86737662008-01-05 16:56:59 +00002022 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002023 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002024 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002025 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002026 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2027 FPDiff = NumBytesCallerPushed - NumBytes;
2028
2029 // Set the delta of movement of the returnaddr stackslot.
2030 // But only set if delta is greater than previous delta.
2031 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2032 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2033 }
2034
Evan Chengf22f9b32010-02-06 03:28:46 +00002035 if (!IsSibcall)
2036 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002037
Dan Gohman475871a2008-07-27 21:46:04 +00002038 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002039 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002040 if (isTailCall && FPDiff)
2041 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2042 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002043
Dan Gohman475871a2008-07-27 21:46:04 +00002044 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2045 SmallVector<SDValue, 8> MemOpChains;
2046 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002047
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002048 // Walk the register/memloc assignments, inserting copies/loads. In the case
2049 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002050 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2051 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002052 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002053 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002054 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002055 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002056
Chris Lattner423c5f42007-02-28 05:31:48 +00002057 // Promote the value if needed.
2058 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002059 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002060 case CCValAssign::Full: break;
2061 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002062 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002063 break;
2064 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002065 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002066 break;
2067 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002068 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2069 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002070 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002071 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2072 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002073 } else
2074 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2075 break;
2076 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002077 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002078 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002079 case CCValAssign::Indirect: {
2080 // Store the argument.
2081 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002082 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002083 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002084 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002085 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002086 Arg = SpillSlot;
2087 break;
2088 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002089 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002090
Chris Lattner423c5f42007-02-28 05:31:48 +00002091 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002092 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2093 if (isVarArg && IsWin64) {
2094 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2095 // shadow reg if callee is a varargs function.
2096 unsigned ShadowReg = 0;
2097 switch (VA.getLocReg()) {
2098 case X86::XMM0: ShadowReg = X86::RCX; break;
2099 case X86::XMM1: ShadowReg = X86::RDX; break;
2100 case X86::XMM2: ShadowReg = X86::R8; break;
2101 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002102 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002103 if (ShadowReg)
2104 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002105 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002106 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002107 assert(VA.isMemLoc());
2108 if (StackPtr.getNode() == 0)
2109 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2110 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2111 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002112 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002113 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002114
Evan Cheng32fe1032006-05-25 00:59:30 +00002115 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002116 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002117 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002118
Evan Cheng347d5f72006-04-28 21:29:37 +00002119 // Build a sequence of copy-to-reg nodes chained together with token chain
2120 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002121 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002122 // Tail call byval lowering might overwrite argument registers so in case of
2123 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002124 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002125 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002126 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002127 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002128 InFlag = Chain.getValue(1);
2129 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002130
Chris Lattner88e1fd52009-07-09 04:24:46 +00002131 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002132 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2133 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002134 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002135 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2136 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002137 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002138 InFlag);
2139 InFlag = Chain.getValue(1);
2140 } else {
2141 // If we are tail calling and generating PIC/GOT style code load the
2142 // address of the callee into ECX. The value in ecx is used as target of
2143 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2144 // for tail calls on PIC/GOT architectures. Normally we would just put the
2145 // address of GOT into ebx and then call target@PLT. But for tail calls
2146 // ebx would be restored (since ebx is callee saved) before jumping to the
2147 // target@PLT.
2148
2149 // Note: The actual moving to ECX is done further down.
2150 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2151 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2152 !G->getGlobal()->hasProtectedVisibility())
2153 Callee = LowerGlobalAddress(Callee, DAG);
2154 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002155 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002156 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002157 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002158
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002159 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002160 // From AMD64 ABI document:
2161 // For calls that may call functions that use varargs or stdargs
2162 // (prototype-less calls or calls to functions containing ellipsis (...) in
2163 // the declaration) %al is used as hidden argument to specify the number
2164 // of SSE registers used. The contents of %al do not need to match exactly
2165 // the number of registers, but must be an ubound on the number of SSE
2166 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002167
Gordon Henriksen86737662008-01-05 16:56:59 +00002168 // Count the number of XMM registers allocated.
2169 static const unsigned XMMArgRegs[] = {
2170 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2171 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2172 };
2173 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002174 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002175 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002176
Dale Johannesendd64c412009-02-04 00:33:20 +00002177 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002178 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002179 InFlag = Chain.getValue(1);
2180 }
2181
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002182
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002183 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002184 if (isTailCall) {
2185 // Force all the incoming stack arguments to be loaded from the stack
2186 // before any new outgoing arguments are stored to the stack, because the
2187 // outgoing stack slots may alias the incoming argument stack slots, and
2188 // the alias isn't otherwise explicit. This is slightly more conservative
2189 // than necessary, because it means that each store effectively depends
2190 // on every argument instead of just those arguments it would clobber.
2191 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2192
Dan Gohman475871a2008-07-27 21:46:04 +00002193 SmallVector<SDValue, 8> MemOpChains2;
2194 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002195 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002196 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002197 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002198 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002199 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2200 CCValAssign &VA = ArgLocs[i];
2201 if (VA.isRegLoc())
2202 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002203 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002204 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002205 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002206 // Create frame index.
2207 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002208 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002209 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002210 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002211
Duncan Sands276dcbd2008-03-21 09:14:45 +00002212 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002213 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002214 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002215 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002216 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002217 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002218 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002219
Dan Gohman98ca4f22009-08-05 01:29:28 +00002220 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2221 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002222 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002223 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002224 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002225 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002226 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002227 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002228 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002229 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002230 }
2231 }
2232
2233 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002234 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002235 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002236
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002237 // Copy arguments to their registers.
2238 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002239 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002240 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002241 InFlag = Chain.getValue(1);
2242 }
Dan Gohman475871a2008-07-27 21:46:04 +00002243 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002244
Gordon Henriksen86737662008-01-05 16:56:59 +00002245 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002246 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002247 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002248 }
2249
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002250 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2251 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2252 // In the 64-bit large code model, we have to make all calls
2253 // through a register, since the call instruction's 32-bit
2254 // pc-relative offset may not be large enough to hold the whole
2255 // address.
2256 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002257 // If the callee is a GlobalAddress node (quite common, every direct call
2258 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2259 // it.
2260
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002261 // We should use extra load for direct calls to dllimported functions in
2262 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002263 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002264 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002265 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002266 bool ExtraLoad = false;
2267 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002268
Chris Lattner48a7d022009-07-09 05:02:21 +00002269 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2270 // external symbols most go through the PLT in PIC mode. If the symbol
2271 // has hidden or protected visibility, or if it is static or local, then
2272 // we don't need to use the PLT - we can directly call it.
2273 if (Subtarget->isTargetELF() &&
2274 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002275 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002276 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002277 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002278 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002279 (!Subtarget->getTargetTriple().isMacOSX() ||
2280 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002281 // PC-relative references to external symbols should go through $stub,
2282 // unless we're building with the leopard linker or later, which
2283 // automatically synthesizes these stubs.
2284 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002285 } else if (Subtarget->isPICStyleRIPRel() &&
2286 isa<Function>(GV) &&
2287 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2288 // If the function is marked as non-lazy, generate an indirect call
2289 // which loads from the GOT directly. This avoids runtime overhead
2290 // at the cost of eager binding (and one extra byte of encoding).
2291 OpFlags = X86II::MO_GOTPCREL;
2292 WrapperKind = X86ISD::WrapperRIP;
2293 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002294 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002295
Devang Patel0d881da2010-07-06 22:08:15 +00002296 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002297 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002298
2299 // Add a wrapper if needed.
2300 if (WrapperKind != ISD::DELETED_NODE)
2301 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2302 // Add extra indirection if needed.
2303 if (ExtraLoad)
2304 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2305 MachinePointerInfo::getGOT(),
2306 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002307 }
Bill Wendling056292f2008-09-16 21:48:12 +00002308 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002309 unsigned char OpFlags = 0;
2310
Evan Cheng1bf891a2010-12-01 22:59:46 +00002311 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2312 // external symbols should go through the PLT.
2313 if (Subtarget->isTargetELF() &&
2314 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2315 OpFlags = X86II::MO_PLT;
2316 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002317 (!Subtarget->getTargetTriple().isMacOSX() ||
2318 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002319 // PC-relative references to external symbols should go through $stub,
2320 // unless we're building with the leopard linker or later, which
2321 // automatically synthesizes these stubs.
2322 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002323 }
Eric Christopherfd179292009-08-27 18:07:15 +00002324
Chris Lattner48a7d022009-07-09 05:02:21 +00002325 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2326 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002327 }
2328
Chris Lattnerd96d0722007-02-25 06:40:16 +00002329 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002330 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002331 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002332
Evan Chengf22f9b32010-02-06 03:28:46 +00002333 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002334 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2335 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002336 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002338
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002339 Ops.push_back(Chain);
2340 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002341
Dan Gohman98ca4f22009-08-05 01:29:28 +00002342 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002343 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002344
Gordon Henriksen86737662008-01-05 16:56:59 +00002345 // Add argument registers to the end of the list so that they are known live
2346 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002347 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2348 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2349 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002350
Evan Cheng586ccac2008-03-18 23:36:35 +00002351 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002352 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002353 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2354
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002355 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002356 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002357 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002358
Gabor Greifba36cb52008-08-28 21:40:38 +00002359 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002360 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002361
Dan Gohman98ca4f22009-08-05 01:29:28 +00002362 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002363 // We used to do:
2364 //// If this is the first return lowered for this function, add the regs
2365 //// to the liveout set for the function.
2366 // This isn't right, although it's probably harmless on x86; liveouts
2367 // should be computed from returns not tail calls. Consider a void
2368 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002369 return DAG.getNode(X86ISD::TC_RETURN, dl,
2370 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002371 }
2372
Dale Johannesenace16102009-02-03 19:33:06 +00002373 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002374 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002375
Chris Lattner2d297092006-05-23 18:50:38 +00002376 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002377 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002378 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002379 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002380 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002381 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002382 // pops the hidden struct pointer, so we have to push it back.
2383 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002384 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002385 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002386 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002387
Gordon Henriksenae636f82008-01-03 16:47:34 +00002388 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002389 if (!IsSibcall) {
2390 Chain = DAG.getCALLSEQ_END(Chain,
2391 DAG.getIntPtrConstant(NumBytes, true),
2392 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2393 true),
2394 InFlag);
2395 InFlag = Chain.getValue(1);
2396 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002397
Chris Lattner3085e152007-02-25 08:59:22 +00002398 // Handle result values, copying them out of physregs into vregs that we
2399 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002400 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2401 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002402}
2403
Evan Cheng25ab6902006-09-08 06:48:29 +00002404
2405//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002406// Fast Calling Convention (tail call) implementation
2407//===----------------------------------------------------------------------===//
2408
2409// Like std call, callee cleans arguments, convention except that ECX is
2410// reserved for storing the tail called function address. Only 2 registers are
2411// free for argument passing (inreg). Tail call optimization is performed
2412// provided:
2413// * tailcallopt is enabled
2414// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002415// On X86_64 architecture with GOT-style position independent code only local
2416// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002417// To keep the stack aligned according to platform abi the function
2418// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2419// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002420// If a tail called function callee has more arguments than the caller the
2421// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002422// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002423// original REtADDR, but before the saved framepointer or the spilled registers
2424// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2425// stack layout:
2426// arg1
2427// arg2
2428// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002429// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002430// move area ]
2431// (possible EBP)
2432// ESI
2433// EDI
2434// local1 ..
2435
2436/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2437/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002438unsigned
2439X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2440 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002441 MachineFunction &MF = DAG.getMachineFunction();
2442 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002443 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002444 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002445 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002446 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002447 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002448 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2449 // Number smaller than 12 so just add the difference.
2450 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2451 } else {
2452 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002453 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002454 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002455 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002456 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002457}
2458
Evan Cheng5f941932010-02-05 02:21:12 +00002459/// MatchingStackOffset - Return true if the given stack call argument is
2460/// already available in the same position (relatively) of the caller's
2461/// incoming argument stack.
2462static
2463bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2464 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2465 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002466 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2467 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002468 if (Arg.getOpcode() == ISD::CopyFromReg) {
2469 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002470 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002471 return false;
2472 MachineInstr *Def = MRI->getVRegDef(VR);
2473 if (!Def)
2474 return false;
2475 if (!Flags.isByVal()) {
2476 if (!TII->isLoadFromStackSlot(Def, FI))
2477 return false;
2478 } else {
2479 unsigned Opcode = Def->getOpcode();
2480 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2481 Def->getOperand(1).isFI()) {
2482 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002483 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002484 } else
2485 return false;
2486 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002487 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2488 if (Flags.isByVal())
2489 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002490 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002491 // define @foo(%struct.X* %A) {
2492 // tail call @bar(%struct.X* byval %A)
2493 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002494 return false;
2495 SDValue Ptr = Ld->getBasePtr();
2496 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2497 if (!FINode)
2498 return false;
2499 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002500 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002501 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002502 FI = FINode->getIndex();
2503 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002504 } else
2505 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002506
Evan Cheng4cae1332010-03-05 08:38:04 +00002507 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002508 if (!MFI->isFixedObjectIndex(FI))
2509 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002510 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002511}
2512
Dan Gohman98ca4f22009-08-05 01:29:28 +00002513/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2514/// for tail call optimization. Targets which want to do tail call
2515/// optimization should implement this function.
2516bool
2517X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002518 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002519 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002520 bool isCalleeStructRet,
2521 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002522 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002523 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002524 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002525 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002526 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002527 CalleeCC != CallingConv::C)
2528 return false;
2529
Evan Cheng7096ae42010-01-29 06:45:59 +00002530 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002531 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002532 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002533 CallingConv::ID CallerCC = CallerF->getCallingConv();
2534 bool CCMatch = CallerCC == CalleeCC;
2535
Dan Gohman1797ed52010-02-08 20:27:50 +00002536 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002537 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002538 return true;
2539 return false;
2540 }
2541
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002542 // Look for obvious safe cases to perform tail call optimization that do not
2543 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002544
Evan Cheng2c12cb42010-03-26 16:26:03 +00002545 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2546 // emit a special epilogue.
2547 if (RegInfo->needsStackRealignment(MF))
2548 return false;
2549
Evan Chenga375d472010-03-15 18:54:48 +00002550 // Also avoid sibcall optimization if either caller or callee uses struct
2551 // return semantics.
2552 if (isCalleeStructRet || isCallerStructRet)
2553 return false;
2554
Chad Rosier2416da32011-06-24 21:15:36 +00002555 // An stdcall caller is expected to clean up its arguments; the callee
2556 // isn't going to do that.
2557 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2558 return false;
2559
Chad Rosier871f6642011-05-18 19:59:50 +00002560 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002561 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002562 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002563
2564 // Optimizing for varargs on Win64 is unlikely to be safe without
2565 // additional testing.
2566 if (Subtarget->isTargetWin64())
2567 return false;
2568
Chad Rosier871f6642011-05-18 19:59:50 +00002569 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002570 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2571 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002572
Chad Rosier871f6642011-05-18 19:59:50 +00002573 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2574 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2575 if (!ArgLocs[i].isRegLoc())
2576 return false;
2577 }
2578
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002579 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2580 // Therefore if it's not used by the call it is not safe to optimize this into
2581 // a sibcall.
2582 bool Unused = false;
2583 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2584 if (!Ins[i].Used) {
2585 Unused = true;
2586 break;
2587 }
2588 }
2589 if (Unused) {
2590 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002591 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2592 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002593 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002594 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002595 CCValAssign &VA = RVLocs[i];
2596 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2597 return false;
2598 }
2599 }
2600
Evan Cheng13617962010-04-30 01:12:32 +00002601 // If the calling conventions do not match, then we'd better make sure the
2602 // results are returned in the same way as what the caller expects.
2603 if (!CCMatch) {
2604 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002605 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2606 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002607 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2608
2609 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002610 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2611 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002612 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2613
2614 if (RVLocs1.size() != RVLocs2.size())
2615 return false;
2616 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2617 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2618 return false;
2619 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2620 return false;
2621 if (RVLocs1[i].isRegLoc()) {
2622 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2623 return false;
2624 } else {
2625 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2626 return false;
2627 }
2628 }
2629 }
2630
Evan Chenga6bff982010-01-30 01:22:00 +00002631 // If the callee takes no arguments then go on to check the results of the
2632 // call.
2633 if (!Outs.empty()) {
2634 // Check if stack adjustment is needed. For now, do not do this if any
2635 // argument is passed on the stack.
2636 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002637 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2638 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002639
2640 // Allocate shadow area for Win64
2641 if (Subtarget->isTargetWin64()) {
2642 CCInfo.AllocateStack(32, 8);
2643 }
2644
Duncan Sands45907662010-10-31 13:21:44 +00002645 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002646 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002647 MachineFunction &MF = DAG.getMachineFunction();
2648 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2649 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002650
2651 // Check if the arguments are already laid out in the right way as
2652 // the caller's fixed stack objects.
2653 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002654 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2655 const X86InstrInfo *TII =
2656 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002657 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2658 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002659 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002660 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002661 if (VA.getLocInfo() == CCValAssign::Indirect)
2662 return false;
2663 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002664 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2665 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002666 return false;
2667 }
2668 }
2669 }
Evan Cheng9c044672010-05-29 01:35:22 +00002670
2671 // If the tailcall address may be in a register, then make sure it's
2672 // possible to register allocate for it. In 32-bit, the call address can
2673 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002674 // callee-saved registers are restored. These happen to be the same
2675 // registers used to pass 'inreg' arguments so watch out for those.
2676 if (!Subtarget->is64Bit() &&
2677 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002678 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002679 unsigned NumInRegs = 0;
2680 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2681 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002682 if (!VA.isRegLoc())
2683 continue;
2684 unsigned Reg = VA.getLocReg();
2685 switch (Reg) {
2686 default: break;
2687 case X86::EAX: case X86::EDX: case X86::ECX:
2688 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002689 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002690 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002691 }
2692 }
2693 }
Evan Chenga6bff982010-01-30 01:22:00 +00002694 }
Evan Chengb1712452010-01-27 06:25:16 +00002695
Evan Cheng86809cc2010-02-03 03:28:02 +00002696 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002697}
2698
Dan Gohman3df24e62008-09-03 23:12:08 +00002699FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002700X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2701 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002702}
2703
2704
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002705//===----------------------------------------------------------------------===//
2706// Other Lowering Hooks
2707//===----------------------------------------------------------------------===//
2708
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002709static bool MayFoldLoad(SDValue Op) {
2710 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2711}
2712
2713static bool MayFoldIntoStore(SDValue Op) {
2714 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2715}
2716
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002717static bool isTargetShuffle(unsigned Opcode) {
2718 switch(Opcode) {
2719 default: return false;
2720 case X86ISD::PSHUFD:
2721 case X86ISD::PSHUFHW:
2722 case X86ISD::PSHUFLW:
2723 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002724 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002725 case X86ISD::SHUFPS:
2726 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002727 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002728 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002729 case X86ISD::MOVLPS:
2730 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002731 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002732 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002733 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002734 case X86ISD::MOVSS:
2735 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002736 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002737 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002738 case X86ISD::VUNPCKLPSY:
2739 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002740 case X86ISD::PUNPCKLWD:
2741 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002742 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002743 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002744 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002745 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002746 case X86ISD::VUNPCKHPSY:
2747 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002748 case X86ISD::PUNPCKHWD:
2749 case X86ISD::PUNPCKHBW:
2750 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002751 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002752 case X86ISD::VPERMILPS:
2753 case X86ISD::VPERMILPSY:
2754 case X86ISD::VPERMILPD:
2755 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002756 return true;
2757 }
2758 return false;
2759}
2760
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002761static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002762 SDValue V1, SelectionDAG &DAG) {
2763 switch(Opc) {
2764 default: llvm_unreachable("Unknown x86 shuffle node");
2765 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002766 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002767 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002768 return DAG.getNode(Opc, dl, VT, V1);
2769 }
2770
2771 return SDValue();
2772}
2773
2774static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002775 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002776 switch(Opc) {
2777 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002778 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002779 case X86ISD::PSHUFHW:
2780 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002781 case X86ISD::VPERMILPS:
2782 case X86ISD::VPERMILPSY:
2783 case X86ISD::VPERMILPD:
2784 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002785 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2786 }
2787
2788 return SDValue();
2789}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002790
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002791static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2792 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2793 switch(Opc) {
2794 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002795 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002796 case X86ISD::SHUFPD:
2797 case X86ISD::SHUFPS:
2798 return DAG.getNode(Opc, dl, VT, V1, V2,
2799 DAG.getConstant(TargetMask, MVT::i8));
2800 }
2801 return SDValue();
2802}
2803
2804static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2805 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2806 switch(Opc) {
2807 default: llvm_unreachable("Unknown x86 shuffle node");
2808 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002809 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002810 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002811 case X86ISD::MOVLPS:
2812 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002813 case X86ISD::MOVSS:
2814 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002815 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002816 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002817 case X86ISD::VUNPCKLPSY:
2818 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002819 case X86ISD::PUNPCKLWD:
2820 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002821 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002822 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002823 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002824 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002825 case X86ISD::VUNPCKHPSY:
2826 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002827 case X86ISD::PUNPCKHWD:
2828 case X86ISD::PUNPCKHBW:
2829 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002830 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002831 return DAG.getNode(Opc, dl, VT, V1, V2);
2832 }
2833 return SDValue();
2834}
2835
Dan Gohmand858e902010-04-17 15:26:15 +00002836SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002837 MachineFunction &MF = DAG.getMachineFunction();
2838 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2839 int ReturnAddrIndex = FuncInfo->getRAIndex();
2840
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002841 if (ReturnAddrIndex == 0) {
2842 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002843 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002844 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002845 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002846 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002847 }
2848
Evan Cheng25ab6902006-09-08 06:48:29 +00002849 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002850}
2851
2852
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002853bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2854 bool hasSymbolicDisplacement) {
2855 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002856 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002857 return false;
2858
2859 // If we don't have a symbolic displacement - we don't have any extra
2860 // restrictions.
2861 if (!hasSymbolicDisplacement)
2862 return true;
2863
2864 // FIXME: Some tweaks might be needed for medium code model.
2865 if (M != CodeModel::Small && M != CodeModel::Kernel)
2866 return false;
2867
2868 // For small code model we assume that latest object is 16MB before end of 31
2869 // bits boundary. We may also accept pretty large negative constants knowing
2870 // that all objects are in the positive half of address space.
2871 if (M == CodeModel::Small && Offset < 16*1024*1024)
2872 return true;
2873
2874 // For kernel code model we know that all object resist in the negative half
2875 // of 32bits address space. We may not accept negative offsets, since they may
2876 // be just off and we may accept pretty large positive ones.
2877 if (M == CodeModel::Kernel && Offset > 0)
2878 return true;
2879
2880 return false;
2881}
2882
Evan Chengef41ff62011-06-23 17:54:54 +00002883/// isCalleePop - Determines whether the callee is required to pop its
2884/// own arguments. Callee pop is necessary to support tail calls.
2885bool X86::isCalleePop(CallingConv::ID CallingConv,
2886 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2887 if (IsVarArg)
2888 return false;
2889
2890 switch (CallingConv) {
2891 default:
2892 return false;
2893 case CallingConv::X86_StdCall:
2894 return !is64Bit;
2895 case CallingConv::X86_FastCall:
2896 return !is64Bit;
2897 case CallingConv::X86_ThisCall:
2898 return !is64Bit;
2899 case CallingConv::Fast:
2900 return TailCallOpt;
2901 case CallingConv::GHC:
2902 return TailCallOpt;
2903 }
2904}
2905
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002906/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2907/// specific condition code, returning the condition code and the LHS/RHS of the
2908/// comparison to make.
2909static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2910 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002911 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002912 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2913 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2914 // X > -1 -> X == 0, jump !sign.
2915 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002916 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002917 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2918 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002919 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002920 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002921 // X < 1 -> X <= 0
2922 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002923 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002924 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002925 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002926
Evan Chengd9558e02006-01-06 00:43:03 +00002927 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002928 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002929 case ISD::SETEQ: return X86::COND_E;
2930 case ISD::SETGT: return X86::COND_G;
2931 case ISD::SETGE: return X86::COND_GE;
2932 case ISD::SETLT: return X86::COND_L;
2933 case ISD::SETLE: return X86::COND_LE;
2934 case ISD::SETNE: return X86::COND_NE;
2935 case ISD::SETULT: return X86::COND_B;
2936 case ISD::SETUGT: return X86::COND_A;
2937 case ISD::SETULE: return X86::COND_BE;
2938 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002939 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002940 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002941
Chris Lattner4c78e022008-12-23 23:42:27 +00002942 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002943
Chris Lattner4c78e022008-12-23 23:42:27 +00002944 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002945 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2946 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002947 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2948 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002949 }
2950
Chris Lattner4c78e022008-12-23 23:42:27 +00002951 switch (SetCCOpcode) {
2952 default: break;
2953 case ISD::SETOLT:
2954 case ISD::SETOLE:
2955 case ISD::SETUGT:
2956 case ISD::SETUGE:
2957 std::swap(LHS, RHS);
2958 break;
2959 }
2960
2961 // On a floating point condition, the flags are set as follows:
2962 // ZF PF CF op
2963 // 0 | 0 | 0 | X > Y
2964 // 0 | 0 | 1 | X < Y
2965 // 1 | 0 | 0 | X == Y
2966 // 1 | 1 | 1 | unordered
2967 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002968 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002969 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002970 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002971 case ISD::SETOLT: // flipped
2972 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002973 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002974 case ISD::SETOLE: // flipped
2975 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002976 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002977 case ISD::SETUGT: // flipped
2978 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002979 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002980 case ISD::SETUGE: // flipped
2981 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002982 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002983 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002984 case ISD::SETNE: return X86::COND_NE;
2985 case ISD::SETUO: return X86::COND_P;
2986 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002987 case ISD::SETOEQ:
2988 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002989 }
Evan Chengd9558e02006-01-06 00:43:03 +00002990}
2991
Evan Cheng4a460802006-01-11 00:33:36 +00002992/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2993/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002994/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002995static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002996 switch (X86CC) {
2997 default:
2998 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002999 case X86::COND_B:
3000 case X86::COND_BE:
3001 case X86::COND_E:
3002 case X86::COND_P:
3003 case X86::COND_A:
3004 case X86::COND_AE:
3005 case X86::COND_NE:
3006 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003007 return true;
3008 }
3009}
3010
Evan Chengeb2f9692009-10-27 19:56:55 +00003011/// isFPImmLegal - Returns true if the target can instruction select the
3012/// specified FP immediate natively. If false, the legalizer will
3013/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003014bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003015 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3016 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3017 return true;
3018 }
3019 return false;
3020}
3021
Nate Begeman9008ca62009-04-27 18:41:29 +00003022/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3023/// the specified range (L, H].
3024static bool isUndefOrInRange(int Val, int Low, int Hi) {
3025 return (Val < 0) || (Val >= Low && Val < Hi);
3026}
3027
3028/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3029/// specified value.
3030static bool isUndefOrEqual(int Val, int CmpVal) {
3031 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003032 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003033 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003034}
3035
Nate Begeman9008ca62009-04-27 18:41:29 +00003036/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3037/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3038/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003039static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003040 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003041 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003042 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003043 return (Mask[0] < 2 && Mask[1] < 2);
3044 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003045}
3046
Nate Begeman9008ca62009-04-27 18:41:29 +00003047bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003048 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003049 N->getMask(M);
3050 return ::isPSHUFDMask(M, N->getValueType(0));
3051}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003052
Nate Begeman9008ca62009-04-27 18:41:29 +00003053/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3054/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003055static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003056 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003057 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003058
Nate Begeman9008ca62009-04-27 18:41:29 +00003059 // Lower quadword copied in order or undef.
3060 for (int i = 0; i != 4; ++i)
3061 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003062 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003063
Evan Cheng506d3df2006-03-29 23:07:14 +00003064 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003065 for (int i = 4; i != 8; ++i)
3066 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003067 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003068
Evan Cheng506d3df2006-03-29 23:07:14 +00003069 return true;
3070}
3071
Nate Begeman9008ca62009-04-27 18:41:29 +00003072bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003073 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003074 N->getMask(M);
3075 return ::isPSHUFHWMask(M, N->getValueType(0));
3076}
Evan Cheng506d3df2006-03-29 23:07:14 +00003077
Nate Begeman9008ca62009-04-27 18:41:29 +00003078/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3079/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003080static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003081 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003082 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003083
Rafael Espindola15684b22009-04-24 12:40:33 +00003084 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003085 for (int i = 4; i != 8; ++i)
3086 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003087 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003088
Rafael Espindola15684b22009-04-24 12:40:33 +00003089 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003090 for (int i = 0; i != 4; ++i)
3091 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003092 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003093
Rafael Espindola15684b22009-04-24 12:40:33 +00003094 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003095}
3096
Nate Begeman9008ca62009-04-27 18:41:29 +00003097bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003098 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003099 N->getMask(M);
3100 return ::isPSHUFLWMask(M, N->getValueType(0));
3101}
3102
Nate Begemana09008b2009-10-19 02:17:23 +00003103/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3104/// is suitable for input to PALIGNR.
3105static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3106 bool hasSSSE3) {
3107 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003108 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3109 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003110
Nate Begemana09008b2009-10-19 02:17:23 +00003111 // Do not handle v2i64 / v2f64 shuffles with palignr.
3112 if (e < 4 || !hasSSSE3)
3113 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003114
Nate Begemana09008b2009-10-19 02:17:23 +00003115 for (i = 0; i != e; ++i)
3116 if (Mask[i] >= 0)
3117 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003118
Nate Begemana09008b2009-10-19 02:17:23 +00003119 // All undef, not a palignr.
3120 if (i == e)
3121 return false;
3122
Eli Friedman63f8dde2011-07-25 21:36:45 +00003123 // Make sure we're shifting in the right direction.
3124 if (Mask[i] <= i)
3125 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003126
3127 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003128
Nate Begemana09008b2009-10-19 02:17:23 +00003129 // Check the rest of the elements to see if they are consecutive.
3130 for (++i; i != e; ++i) {
3131 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003132 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003133 return false;
3134 }
3135 return true;
3136}
3137
Evan Cheng14aed5e2006-03-24 01:18:28 +00003138/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3139/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003140static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003141 int NumElems = VT.getVectorNumElements();
3142 if (NumElems != 2 && NumElems != 4)
3143 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003144
Nate Begeman9008ca62009-04-27 18:41:29 +00003145 int Half = NumElems / 2;
3146 for (int i = 0; i < Half; ++i)
3147 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003148 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003149 for (int i = Half; i < NumElems; ++i)
3150 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003151 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003152
Evan Cheng14aed5e2006-03-24 01:18:28 +00003153 return true;
3154}
3155
Nate Begeman9008ca62009-04-27 18:41:29 +00003156bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3157 SmallVector<int, 8> M;
3158 N->getMask(M);
3159 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003160}
3161
Evan Cheng213d2cf2007-05-17 18:45:50 +00003162/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003163/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3164/// half elements to come from vector 1 (which would equal the dest.) and
3165/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003166static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003167 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003168
3169 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003170 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003171
Nate Begeman9008ca62009-04-27 18:41:29 +00003172 int Half = NumElems / 2;
3173 for (int i = 0; i < Half; ++i)
3174 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003175 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003176 for (int i = Half; i < NumElems; ++i)
3177 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003178 return false;
3179 return true;
3180}
3181
Nate Begeman9008ca62009-04-27 18:41:29 +00003182static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3183 SmallVector<int, 8> M;
3184 N->getMask(M);
3185 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003186}
3187
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003188/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3189/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003190bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003191 EVT VT = N->getValueType(0);
3192 unsigned NumElems = VT.getVectorNumElements();
3193
3194 if (VT.getSizeInBits() != 128)
3195 return false;
3196
3197 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003198 return false;
3199
Evan Cheng2064a2b2006-03-28 06:50:32 +00003200 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003201 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3202 isUndefOrEqual(N->getMaskElt(1), 7) &&
3203 isUndefOrEqual(N->getMaskElt(2), 2) &&
3204 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003205}
3206
Nate Begeman0b10b912009-11-07 23:17:15 +00003207/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3208/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3209/// <2, 3, 2, 3>
3210bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003211 EVT VT = N->getValueType(0);
3212 unsigned NumElems = VT.getVectorNumElements();
3213
3214 if (VT.getSizeInBits() != 128)
3215 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003216
Nate Begeman0b10b912009-11-07 23:17:15 +00003217 if (NumElems != 4)
3218 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003219
Nate Begeman0b10b912009-11-07 23:17:15 +00003220 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003221 isUndefOrEqual(N->getMaskElt(1), 3) &&
3222 isUndefOrEqual(N->getMaskElt(2), 2) &&
3223 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003224}
3225
Evan Cheng5ced1d82006-04-06 23:23:56 +00003226/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3227/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003228bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3229 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003230
Evan Cheng5ced1d82006-04-06 23:23:56 +00003231 if (NumElems != 2 && NumElems != 4)
3232 return false;
3233
Evan Chengc5cdff22006-04-07 21:53:05 +00003234 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003235 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003236 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003237
Evan Chengc5cdff22006-04-07 21:53:05 +00003238 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003239 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003240 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003241
3242 return true;
3243}
3244
Nate Begeman0b10b912009-11-07 23:17:15 +00003245/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3246/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3247bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003248 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003249
David Greenea20244d2011-03-02 17:23:43 +00003250 if ((NumElems != 2 && NumElems != 4)
3251 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003252 return false;
3253
Evan Chengc5cdff22006-04-07 21:53:05 +00003254 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003255 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003256 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003257
Nate Begeman9008ca62009-04-27 18:41:29 +00003258 for (unsigned i = 0; i < NumElems/2; ++i)
3259 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003260 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003261
3262 return true;
3263}
3264
Evan Cheng0038e592006-03-28 00:39:58 +00003265/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3266/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003267static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003268 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003269 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003270
3271 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3272 "Unsupported vector type for unpckh");
3273
3274 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003275 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003276
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003277 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3278 // independently on 128-bit lanes.
3279 unsigned NumLanes = VT.getSizeInBits()/128;
3280 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003281
3282 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003283 unsigned End = NumLaneElts;
3284 for (unsigned s = 0; s < NumLanes; ++s) {
3285 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003286 i != End;
3287 i += 2, ++j) {
3288 int BitI = Mask[i];
3289 int BitI1 = Mask[i+1];
3290 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003291 return false;
David Greenea20244d2011-03-02 17:23:43 +00003292 if (V2IsSplat) {
3293 if (!isUndefOrEqual(BitI1, NumElts))
3294 return false;
3295 } else {
3296 if (!isUndefOrEqual(BitI1, j + NumElts))
3297 return false;
3298 }
Evan Cheng39623da2006-04-20 08:58:49 +00003299 }
David Greenea20244d2011-03-02 17:23:43 +00003300 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003301 Start += NumLaneElts;
3302 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003303 }
David Greenea20244d2011-03-02 17:23:43 +00003304
Evan Cheng0038e592006-03-28 00:39:58 +00003305 return true;
3306}
3307
Nate Begeman9008ca62009-04-27 18:41:29 +00003308bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3309 SmallVector<int, 8> M;
3310 N->getMask(M);
3311 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003312}
3313
Evan Cheng4fcb9222006-03-28 02:43:26 +00003314/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3315/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003316static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003317 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003318 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003319
3320 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3321 "Unsupported vector type for unpckh");
3322
3323 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003324 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003325
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003326 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3327 // independently on 128-bit lanes.
3328 unsigned NumLanes = VT.getSizeInBits()/128;
3329 unsigned NumLaneElts = NumElts/NumLanes;
3330
3331 unsigned Start = 0;
3332 unsigned End = NumLaneElts;
3333 for (unsigned l = 0; l != NumLanes; ++l) {
3334 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3335 i != End; i += 2, ++j) {
3336 int BitI = Mask[i];
3337 int BitI1 = Mask[i+1];
3338 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003339 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003340 if (V2IsSplat) {
3341 if (isUndefOrEqual(BitI1, NumElts))
3342 return false;
3343 } else {
3344 if (!isUndefOrEqual(BitI1, j+NumElts))
3345 return false;
3346 }
Evan Cheng39623da2006-04-20 08:58:49 +00003347 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003348 // Process the next 128 bits.
3349 Start += NumLaneElts;
3350 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003351 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003352 return true;
3353}
3354
Nate Begeman9008ca62009-04-27 18:41:29 +00003355bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3356 SmallVector<int, 8> M;
3357 N->getMask(M);
3358 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003359}
3360
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003361/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3362/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3363/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003364static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003365 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003366 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003367 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003368
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003369 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3370 // independently on 128-bit lanes.
3371 unsigned NumLanes = VT.getSizeInBits() / 128;
3372 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003373
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003374 for (unsigned s = 0; s < NumLanes; ++s) {
3375 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3376 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003377 i += 2, ++j) {
3378 int BitI = Mask[i];
3379 int BitI1 = Mask[i+1];
3380
3381 if (!isUndefOrEqual(BitI, j))
3382 return false;
3383 if (!isUndefOrEqual(BitI1, j))
3384 return false;
3385 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003386 }
David Greenea20244d2011-03-02 17:23:43 +00003387
Rafael Espindola15684b22009-04-24 12:40:33 +00003388 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003389}
3390
Nate Begeman9008ca62009-04-27 18:41:29 +00003391bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3392 SmallVector<int, 8> M;
3393 N->getMask(M);
3394 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3395}
3396
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003397/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3398/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3399/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003400static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003401 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003402 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3403 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003404
Nate Begeman9008ca62009-04-27 18:41:29 +00003405 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3406 int BitI = Mask[i];
3407 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003408 if (!isUndefOrEqual(BitI, j))
3409 return false;
3410 if (!isUndefOrEqual(BitI1, j))
3411 return false;
3412 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003413 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003414}
3415
Nate Begeman9008ca62009-04-27 18:41:29 +00003416bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3417 SmallVector<int, 8> M;
3418 N->getMask(M);
3419 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3420}
3421
Evan Cheng017dcc62006-04-21 01:05:10 +00003422/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3423/// specifies a shuffle of elements that is suitable for input to MOVSS,
3424/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003425static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003426 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003427 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003428
3429 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003430
Nate Begeman9008ca62009-04-27 18:41:29 +00003431 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003432 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003433
Nate Begeman9008ca62009-04-27 18:41:29 +00003434 for (int i = 1; i < NumElts; ++i)
3435 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003436 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003437
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003438 return true;
3439}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003440
Nate Begeman9008ca62009-04-27 18:41:29 +00003441bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3442 SmallVector<int, 8> M;
3443 N->getMask(M);
3444 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003445}
3446
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003447/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3448/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3449/// Note that VPERMIL mask matching is different depending whether theunderlying
3450/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3451/// to the same elements of the low, but to the higher half of the source.
3452/// In VPERMILPD the two lanes could be shuffled independently of each other
3453/// with the same restriction that lanes can't be crossed.
3454static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3455 const X86Subtarget *Subtarget) {
3456 int NumElts = VT.getVectorNumElements();
3457 int NumLanes = VT.getSizeInBits()/128;
3458
3459 if (!Subtarget->hasAVX())
3460 return false;
3461
3462 // Match any permutation of 128-bit vector with 64-bit types
3463 if (NumLanes == 1 && NumElts != 2)
3464 return false;
3465
3466 // Only match 256-bit with 32 types
3467 if (VT.getSizeInBits() == 256 && NumElts != 4)
3468 return false;
3469
3470 // The mask on the high lane is independent of the low. Both can match
3471 // any element in inside its own lane, but can't cross.
3472 int LaneSize = NumElts/NumLanes;
3473 for (int l = 0; l < NumLanes; ++l)
3474 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3475 int LaneStart = l*LaneSize;
3476 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3477 return false;
3478 }
3479
3480 return true;
3481}
3482
3483/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3484/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3485/// Note that VPERMIL mask matching is different depending whether theunderlying
3486/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3487/// to the same elements of the low, but to the higher half of the source.
3488/// In VPERMILPD the two lanes could be shuffled independently of each other
3489/// with the same restriction that lanes can't be crossed.
3490static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3491 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003492 unsigned NumElts = VT.getVectorNumElements();
3493 unsigned NumLanes = VT.getSizeInBits()/128;
3494
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003495 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003496 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003497
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003498 // Match any permutation of 128-bit vector with 32-bit types
3499 if (NumLanes == 1 && NumElts != 4)
3500 return false;
3501
3502 // Only match 256-bit with 32 types
3503 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003504 return false;
3505
3506 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003507 // they can differ if any of the corresponding index in a lane is undef
3508 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003509 int LaneSize = NumElts/NumLanes;
3510 for (int i = 0; i < LaneSize; ++i) {
3511 int HighElt = i+LaneSize;
Bruno Cardoso Lopes155a92a2011-08-10 01:54:17 +00003512 bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3513 bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3514
3515 if (!HighValid || !LowValid)
3516 return false;
3517 if (Mask[i] < 0 || Mask[HighElt] < 0)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003518 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003519 if (Mask[HighElt]-Mask[i] != LaneSize)
3520 return false;
3521 }
3522
3523 return true;
3524}
3525
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003526/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3527/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3528static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003529 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3530 EVT VT = SVOp->getValueType(0);
3531
3532 int NumElts = VT.getVectorNumElements();
3533 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003534 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003535
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003536 // Although the mask is equal for both lanes do it twice to get the cases
3537 // where a mask will match because the same mask element is undef on the
3538 // first half but valid on the second. This would get pathological cases
3539 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003540 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003541 for (int l = 0; l < NumLanes; ++l) {
3542 for (int i = 0; i < LaneSize; ++i) {
3543 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3544 if (MaskElt < 0)
3545 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003546 if (MaskElt >= LaneSize)
3547 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003548 Mask |= MaskElt << (i*2);
3549 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003550 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003551
3552 return Mask;
3553}
3554
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003555/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3556/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3557static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3558 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3559 EVT VT = SVOp->getValueType(0);
3560
3561 int NumElts = VT.getVectorNumElements();
3562 int NumLanes = VT.getSizeInBits()/128;
3563
3564 unsigned Mask = 0;
3565 int LaneSize = NumElts/NumLanes;
3566 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003567 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3568 int MaskElt = SVOp->getMaskElt(i);
3569 if (MaskElt < 0)
3570 continue;
3571 Mask |= (MaskElt-l*LaneSize) << i;
3572 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003573
3574 return Mask;
3575}
3576
Evan Cheng017dcc62006-04-21 01:05:10 +00003577/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3578/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003579/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003580static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003581 bool V2IsSplat = false, bool V2IsUndef = false) {
3582 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003583 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003584 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003585
Nate Begeman9008ca62009-04-27 18:41:29 +00003586 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003587 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003588
Nate Begeman9008ca62009-04-27 18:41:29 +00003589 for (int i = 1; i < NumOps; ++i)
3590 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3591 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3592 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003593 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003594
Evan Cheng39623da2006-04-20 08:58:49 +00003595 return true;
3596}
3597
Nate Begeman9008ca62009-04-27 18:41:29 +00003598static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003599 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003600 SmallVector<int, 8> M;
3601 N->getMask(M);
3602 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003603}
3604
Evan Chengd9539472006-04-14 21:59:03 +00003605/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3606/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003607/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3608bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3609 const X86Subtarget *Subtarget) {
3610 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003611 return false;
3612
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003613 // The second vector must be undef
3614 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3615 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003616
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003617 EVT VT = N->getValueType(0);
3618 unsigned NumElems = VT.getVectorNumElements();
3619
3620 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3621 (VT.getSizeInBits() == 256 && NumElems != 8))
3622 return false;
3623
3624 // "i+1" is the value the indexed mask element must have
3625 for (unsigned i = 0; i < NumElems; i += 2)
3626 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3627 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003628 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003629
3630 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003631}
3632
3633/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3634/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003635/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3636bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3637 const X86Subtarget *Subtarget) {
3638 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003639 return false;
3640
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003641 // The second vector must be undef
3642 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3643 return false;
3644
3645 EVT VT = N->getValueType(0);
3646 unsigned NumElems = VT.getVectorNumElements();
3647
3648 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3649 (VT.getSizeInBits() == 256 && NumElems != 8))
3650 return false;
3651
3652 // "i" is the value the indexed mask element must have
3653 for (unsigned i = 0; i < NumElems; i += 2)
3654 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3655 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003656 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003657
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003658 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003659}
3660
Evan Cheng0b457f02008-09-25 20:50:48 +00003661/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3662/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003663bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3664 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003665
Nate Begeman9008ca62009-04-27 18:41:29 +00003666 for (int i = 0; i < e; ++i)
3667 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003668 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003669 for (int i = 0; i < e; ++i)
3670 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003671 return false;
3672 return true;
3673}
3674
David Greenec38a03e2011-02-03 15:50:00 +00003675/// isVEXTRACTF128Index - Return true if the specified
3676/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3677/// suitable for input to VEXTRACTF128.
3678bool X86::isVEXTRACTF128Index(SDNode *N) {
3679 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3680 return false;
3681
3682 // The index should be aligned on a 128-bit boundary.
3683 uint64_t Index =
3684 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3685
3686 unsigned VL = N->getValueType(0).getVectorNumElements();
3687 unsigned VBits = N->getValueType(0).getSizeInBits();
3688 unsigned ElSize = VBits / VL;
3689 bool Result = (Index * ElSize) % 128 == 0;
3690
3691 return Result;
3692}
3693
David Greeneccacdc12011-02-04 16:08:29 +00003694/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3695/// operand specifies a subvector insert that is suitable for input to
3696/// VINSERTF128.
3697bool X86::isVINSERTF128Index(SDNode *N) {
3698 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3699 return false;
3700
3701 // The index should be aligned on a 128-bit boundary.
3702 uint64_t Index =
3703 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3704
3705 unsigned VL = N->getValueType(0).getVectorNumElements();
3706 unsigned VBits = N->getValueType(0).getSizeInBits();
3707 unsigned ElSize = VBits / VL;
3708 bool Result = (Index * ElSize) % 128 == 0;
3709
3710 return Result;
3711}
3712
Evan Cheng63d33002006-03-22 08:01:21 +00003713/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003714/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003715unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003716 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3717 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3718
Evan Chengb9df0ca2006-03-22 02:53:00 +00003719 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3720 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003721 for (int i = 0; i < NumOperands; ++i) {
3722 int Val = SVOp->getMaskElt(NumOperands-i-1);
3723 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003724 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003725 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003726 if (i != NumOperands - 1)
3727 Mask <<= Shift;
3728 }
Evan Cheng63d33002006-03-22 08:01:21 +00003729 return Mask;
3730}
3731
Evan Cheng506d3df2006-03-29 23:07:14 +00003732/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003733/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003734unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003735 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003736 unsigned Mask = 0;
3737 // 8 nodes, but we only care about the last 4.
3738 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003739 int Val = SVOp->getMaskElt(i);
3740 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003741 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003742 if (i != 4)
3743 Mask <<= 2;
3744 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003745 return Mask;
3746}
3747
3748/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003749/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003750unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003751 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003752 unsigned Mask = 0;
3753 // 8 nodes, but we only care about the first 4.
3754 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003755 int Val = SVOp->getMaskElt(i);
3756 if (Val >= 0)
3757 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003758 if (i != 0)
3759 Mask <<= 2;
3760 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003761 return Mask;
3762}
3763
Nate Begemana09008b2009-10-19 02:17:23 +00003764/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3765/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3766unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3767 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3768 EVT VVT = N->getValueType(0);
3769 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3770 int Val = 0;
3771
3772 unsigned i, e;
3773 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3774 Val = SVOp->getMaskElt(i);
3775 if (Val >= 0)
3776 break;
3777 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003778 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003779 return (Val - i) * EltSize;
3780}
3781
David Greenec38a03e2011-02-03 15:50:00 +00003782/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3783/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3784/// instructions.
3785unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3786 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3787 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3788
3789 uint64_t Index =
3790 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3791
3792 EVT VecVT = N->getOperand(0).getValueType();
3793 EVT ElVT = VecVT.getVectorElementType();
3794
3795 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003796 return Index / NumElemsPerChunk;
3797}
3798
David Greeneccacdc12011-02-04 16:08:29 +00003799/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3800/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3801/// instructions.
3802unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3803 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3804 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3805
3806 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003807 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003808
3809 EVT VecVT = N->getValueType(0);
3810 EVT ElVT = VecVT.getVectorElementType();
3811
3812 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003813 return Index / NumElemsPerChunk;
3814}
3815
Evan Cheng37b73872009-07-30 08:33:02 +00003816/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3817/// constant +0.0.
3818bool X86::isZeroNode(SDValue Elt) {
3819 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003820 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003821 (isa<ConstantFPSDNode>(Elt) &&
3822 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3823}
3824
Nate Begeman9008ca62009-04-27 18:41:29 +00003825/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3826/// their permute mask.
3827static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3828 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003829 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003830 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003831 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003832
Nate Begeman5a5ca152009-04-29 05:20:52 +00003833 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003834 int idx = SVOp->getMaskElt(i);
3835 if (idx < 0)
3836 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003837 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003838 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003839 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003840 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003841 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003842 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3843 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003844}
3845
Evan Cheng779ccea2007-12-07 21:30:01 +00003846/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3847/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003848static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003849 unsigned NumElems = VT.getVectorNumElements();
3850 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003851 int idx = Mask[i];
3852 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003853 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003854 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003855 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003856 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003857 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003858 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003859}
3860
Evan Cheng533a0aa2006-04-19 20:35:22 +00003861/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3862/// match movhlps. The lower half elements should come from upper half of
3863/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003864/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003865static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3866 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003867 return false;
3868 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003869 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003870 return false;
3871 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003872 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003873 return false;
3874 return true;
3875}
3876
Evan Cheng5ced1d82006-04-06 23:23:56 +00003877/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003878/// is promoted to a vector. It also returns the LoadSDNode by reference if
3879/// required.
3880static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003881 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3882 return false;
3883 N = N->getOperand(0).getNode();
3884 if (!ISD::isNON_EXTLoad(N))
3885 return false;
3886 if (LD)
3887 *LD = cast<LoadSDNode>(N);
3888 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003889}
3890
Evan Cheng533a0aa2006-04-19 20:35:22 +00003891/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3892/// match movlp{s|d}. The lower half elements should come from lower half of
3893/// V1 (and in order), and the upper half elements should come from the upper
3894/// half of V2 (and in order). And since V1 will become the source of the
3895/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003896static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3897 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003898 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003899 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003900 // Is V2 is a vector load, don't do this transformation. We will try to use
3901 // load folding shufps op.
3902 if (ISD::isNON_EXTLoad(V2))
3903 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003904
Nate Begeman5a5ca152009-04-29 05:20:52 +00003905 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003906
Evan Cheng533a0aa2006-04-19 20:35:22 +00003907 if (NumElems != 2 && NumElems != 4)
3908 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003909 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003910 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003911 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003912 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003913 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003914 return false;
3915 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003916}
3917
Evan Cheng39623da2006-04-20 08:58:49 +00003918/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3919/// all the same.
3920static bool isSplatVector(SDNode *N) {
3921 if (N->getOpcode() != ISD::BUILD_VECTOR)
3922 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003923
Dan Gohman475871a2008-07-27 21:46:04 +00003924 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003925 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3926 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003927 return false;
3928 return true;
3929}
3930
Evan Cheng213d2cf2007-05-17 18:45:50 +00003931/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003932/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003933/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003934static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003935 SDValue V1 = N->getOperand(0);
3936 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003937 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3938 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003939 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003940 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003941 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003942 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3943 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003944 if (Opc != ISD::BUILD_VECTOR ||
3945 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003946 return false;
3947 } else if (Idx >= 0) {
3948 unsigned Opc = V1.getOpcode();
3949 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3950 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003951 if (Opc != ISD::BUILD_VECTOR ||
3952 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003953 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003954 }
3955 }
3956 return true;
3957}
3958
3959/// getZeroVector - Returns a vector of specified type with all zero elements.
3960///
Owen Andersone50ed302009-08-10 22:56:29 +00003961static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003962 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003963 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003964
Dale Johannesen0488fb62010-09-30 23:57:10 +00003965 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003966 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003967 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003968 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003969 if (HasSSE2) { // SSE2
3970 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3971 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3972 } else { // SSE1
3973 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3974 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3975 }
3976 } else if (VT.getSizeInBits() == 256) { // AVX
3977 // 256-bit logic and arithmetic instructions in AVX are
3978 // all floating-point, no support for integer ops. Default
3979 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003980 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003981 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3982 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003983 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003984 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003985}
3986
Chris Lattner8a594482007-11-25 00:24:49 +00003987/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003988/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
3989/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
3990/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00003991static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003992 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003993 assert((VT.is128BitVector() || VT.is256BitVector())
3994 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003995
Owen Anderson825b72b2009-08-11 20:47:22 +00003996 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003997 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3998 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003999
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004000 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004001 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4002 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4003 Vec = Insert128BitVector(InsV, Vec,
4004 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4005 }
4006
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004007 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004008}
4009
Evan Cheng39623da2006-04-20 08:58:49 +00004010/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4011/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004012static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004013 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004014 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004015
Evan Cheng39623da2006-04-20 08:58:49 +00004016 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004017 SmallVector<int, 8> MaskVec;
4018 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004019
Nate Begeman5a5ca152009-04-29 05:20:52 +00004020 for (unsigned i = 0; i != NumElems; ++i) {
4021 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004022 MaskVec[i] = NumElems;
4023 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004024 }
Evan Cheng39623da2006-04-20 08:58:49 +00004025 }
Evan Cheng39623da2006-04-20 08:58:49 +00004026 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004027 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4028 SVOp->getOperand(1), &MaskVec[0]);
4029 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004030}
4031
Evan Cheng017dcc62006-04-21 01:05:10 +00004032/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4033/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004034static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004035 SDValue V2) {
4036 unsigned NumElems = VT.getVectorNumElements();
4037 SmallVector<int, 8> Mask;
4038 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004039 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004040 Mask.push_back(i);
4041 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004042}
4043
Nate Begeman9008ca62009-04-27 18:41:29 +00004044/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004045static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004046 SDValue V2) {
4047 unsigned NumElems = VT.getVectorNumElements();
4048 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004049 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004050 Mask.push_back(i);
4051 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004052 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004053 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004054}
4055
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004056/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004057static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004058 SDValue V2) {
4059 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004060 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004061 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004062 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004063 Mask.push_back(i + Half);
4064 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004065 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004066 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004067}
4068
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004069// PromoteSplatv8v16 - All i16 and i8 vector types can't be used directly by
4070// a generic shuffle instruction because the target has no such instructions.
4071// Generate shuffles which repeat i16 and i8 several times until they can be
4072// represented by v4f32 and then be manipulated by target suported shuffles.
4073static SDValue PromoteSplatv8v16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4074 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004075 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004076 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004077
Nate Begeman9008ca62009-04-27 18:41:29 +00004078 while (NumElems > 4) {
4079 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004080 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004081 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004082 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004083 EltNo -= NumElems/2;
4084 }
4085 NumElems >>= 1;
4086 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004087 return V;
4088}
Eric Christopherfd179292009-08-27 18:07:15 +00004089
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004090/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4091static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4092 EVT VT = V.getValueType();
4093 DebugLoc dl = V.getDebugLoc();
4094 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4095 && "Vector size not supported");
4096
4097 bool Is128 = VT.getSizeInBits() == 128;
4098 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
4099 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
4100
4101 if (Is128) {
4102 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4103 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4104 } else {
4105 // The second half of indicies refer to the higher part, which is a
4106 // duplication of the lower one. This makes this shuffle a perfect match
4107 // for the VPERM instruction.
4108 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4109 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4110 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4111 }
4112
4113 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4114}
4115
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00004116/// PromoteVectorToScalarSplat - Since there's no native support for
4117/// scalar_to_vector for 256-bit AVX, a 128-bit scalar_to_vector +
4118/// INSERT_SUBVECTOR is generated. Recognize this idiom and do the
4119/// shuffle before the insertion, this yields less instructions in the end.
4120static SDValue PromoteVectorToScalarSplat(ShuffleVectorSDNode *SV,
4121 SelectionDAG &DAG) {
4122 EVT SrcVT = SV->getValueType(0);
4123 SDValue V1 = SV->getOperand(0);
4124 DebugLoc dl = SV->getDebugLoc();
4125 int NumElems = SrcVT.getVectorNumElements();
4126
4127 assert(SrcVT.is256BitVector() && "unknown howto handle vector type");
4128
4129 SmallVector<int, 4> Mask;
4130 for (int i = 0; i < NumElems/2; ++i)
4131 Mask.push_back(SV->getMaskElt(i));
4132
4133 EVT SVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
4134 NumElems/2);
4135 SDValue SV1 = DAG.getVectorShuffle(SVT, dl, V1.getOperand(1),
4136 DAG.getUNDEF(SVT), &Mask[0]);
4137 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), SV1,
4138 DAG.getConstant(0, MVT::i32), DAG, dl);
4139
4140 return Insert128BitVector(InsV, SV1,
4141 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4142}
4143
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004144/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32 and
4145/// v8i32, v16i16 or v32i8 to v8f32.
4146static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4147 EVT SrcVT = SV->getValueType(0);
4148 SDValue V1 = SV->getOperand(0);
4149 DebugLoc dl = SV->getDebugLoc();
4150
4151 int EltNo = SV->getSplatIndex();
4152 int NumElems = SrcVT.getVectorNumElements();
4153 unsigned Size = SrcVT.getSizeInBits();
4154
4155 // Extract the 128-bit part containing the splat element and update
4156 // the splat element index when it refers to the higher register.
4157 if (Size == 256) {
4158 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4159 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4160 if (Idx > 0)
4161 EltNo -= NumElems/2;
4162 }
4163
4164 // Make this 128-bit vector duplicate i8 and i16 elements
4165 if (NumElems > 4)
4166 V1 = PromoteSplatv8v16(V1, DAG, EltNo);
4167
4168 // Recreate the 256-bit vector and place the same 128-bit vector
4169 // into the low and high part. This is necessary because we want
4170 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4171 // inside each separate v4f32 lane.
4172 if (Size == 256) {
4173 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4174 DAG.getConstant(0, MVT::i32), DAG, dl);
4175 V1 = Insert128BitVector(InsV, V1,
4176 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4177 }
4178
4179 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004180}
4181
Evan Chengba05f722006-04-21 23:03:30 +00004182/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004183/// vector of zero or undef vector. This produces a shuffle where the low
4184/// element of V2 is swizzled into the zero/undef vector, landing at element
4185/// 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 +00004186static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004187 bool isZero, bool HasSSE2,
4188 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004189 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004190 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004191 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4192 unsigned NumElems = VT.getVectorNumElements();
4193 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004194 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004195 // If this is the insertion idx, put the low elt of V2 here.
4196 MaskVec.push_back(i == Idx ? NumElems : i);
4197 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004198}
4199
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004200/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4201/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004202static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4203 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004204 if (Depth == 6)
4205 return SDValue(); // Limit search depth.
4206
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004207 SDValue V = SDValue(N, 0);
4208 EVT VT = V.getValueType();
4209 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004210
4211 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4212 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4213 Index = SV->getMaskElt(Index);
4214
4215 if (Index < 0)
4216 return DAG.getUNDEF(VT.getVectorElementType());
4217
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004218 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004219 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004220 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004221 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004222
4223 // Recurse into target specific vector shuffles to find scalars.
4224 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004225 int NumElems = VT.getVectorNumElements();
4226 SmallVector<unsigned, 16> ShuffleMask;
4227 SDValue ImmN;
4228
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004229 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004230 case X86ISD::SHUFPS:
4231 case X86ISD::SHUFPD:
4232 ImmN = N->getOperand(N->getNumOperands()-1);
4233 DecodeSHUFPSMask(NumElems,
4234 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4235 ShuffleMask);
4236 break;
4237 case X86ISD::PUNPCKHBW:
4238 case X86ISD::PUNPCKHWD:
4239 case X86ISD::PUNPCKHDQ:
4240 case X86ISD::PUNPCKHQDQ:
4241 DecodePUNPCKHMask(NumElems, ShuffleMask);
4242 break;
4243 case X86ISD::UNPCKHPS:
4244 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004245 case X86ISD::VUNPCKHPSY:
4246 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004247 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4248 break;
4249 case X86ISD::PUNPCKLBW:
4250 case X86ISD::PUNPCKLWD:
4251 case X86ISD::PUNPCKLDQ:
4252 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004253 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004254 break;
4255 case X86ISD::UNPCKLPS:
4256 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004257 case X86ISD::VUNPCKLPSY:
4258 case X86ISD::VUNPCKLPDY:
4259 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004260 break;
4261 case X86ISD::MOVHLPS:
4262 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4263 break;
4264 case X86ISD::MOVLHPS:
4265 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4266 break;
4267 case X86ISD::PSHUFD:
4268 ImmN = N->getOperand(N->getNumOperands()-1);
4269 DecodePSHUFMask(NumElems,
4270 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4271 ShuffleMask);
4272 break;
4273 case X86ISD::PSHUFHW:
4274 ImmN = N->getOperand(N->getNumOperands()-1);
4275 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4276 ShuffleMask);
4277 break;
4278 case X86ISD::PSHUFLW:
4279 ImmN = N->getOperand(N->getNumOperands()-1);
4280 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4281 ShuffleMask);
4282 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004283 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004284 case X86ISD::MOVSD: {
4285 // The index 0 always comes from the first element of the second source,
4286 // this is why MOVSS and MOVSD are used in the first place. The other
4287 // elements come from the other positions of the first source vector.
4288 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004289 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4290 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004291 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004292 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004293 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004294 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004295 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004296 break;
4297 case X86ISD::VPERMILPSY:
4298 ImmN = N->getOperand(N->getNumOperands()-1);
4299 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4300 ShuffleMask);
4301 break;
4302 case X86ISD::VPERMILPD:
4303 ImmN = N->getOperand(N->getNumOperands()-1);
4304 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4305 ShuffleMask);
4306 break;
4307 case X86ISD::VPERMILPDY:
4308 ImmN = N->getOperand(N->getNumOperands()-1);
4309 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4310 ShuffleMask);
4311 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004312 default:
4313 assert("not implemented for target shuffle node");
4314 return SDValue();
4315 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004316
4317 Index = ShuffleMask[Index];
4318 if (Index < 0)
4319 return DAG.getUNDEF(VT.getVectorElementType());
4320
4321 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4322 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4323 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004324 }
4325
4326 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004327 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004328 V = V.getOperand(0);
4329 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004330 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004331
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004332 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004333 return SDValue();
4334 }
4335
4336 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4337 return (Index == 0) ? V.getOperand(0)
4338 : DAG.getUNDEF(VT.getVectorElementType());
4339
4340 if (V.getOpcode() == ISD::BUILD_VECTOR)
4341 return V.getOperand(Index);
4342
4343 return SDValue();
4344}
4345
4346/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4347/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004348/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004349static
4350unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4351 bool ZerosFromLeft, SelectionDAG &DAG) {
4352 int i = 0;
4353
4354 while (i < NumElems) {
4355 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004356 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004357 if (!(Elt.getNode() &&
4358 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4359 break;
4360 ++i;
4361 }
4362
4363 return i;
4364}
4365
4366/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4367/// MaskE correspond consecutively to elements from one of the vector operands,
4368/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4369static
4370bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4371 int OpIdx, int NumElems, unsigned &OpNum) {
4372 bool SeenV1 = false;
4373 bool SeenV2 = false;
4374
4375 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4376 int Idx = SVOp->getMaskElt(i);
4377 // Ignore undef indicies
4378 if (Idx < 0)
4379 continue;
4380
4381 if (Idx < NumElems)
4382 SeenV1 = true;
4383 else
4384 SeenV2 = true;
4385
4386 // Only accept consecutive elements from the same vector
4387 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4388 return false;
4389 }
4390
4391 OpNum = SeenV1 ? 0 : 1;
4392 return true;
4393}
4394
4395/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4396/// logical left shift of a vector.
4397static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4398 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4399 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4400 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4401 false /* check zeros from right */, DAG);
4402 unsigned OpSrc;
4403
4404 if (!NumZeros)
4405 return false;
4406
4407 // Considering the elements in the mask that are not consecutive zeros,
4408 // check if they consecutively come from only one of the source vectors.
4409 //
4410 // V1 = {X, A, B, C} 0
4411 // \ \ \ /
4412 // vector_shuffle V1, V2 <1, 2, 3, X>
4413 //
4414 if (!isShuffleMaskConsecutive(SVOp,
4415 0, // Mask Start Index
4416 NumElems-NumZeros-1, // Mask End Index
4417 NumZeros, // Where to start looking in the src vector
4418 NumElems, // Number of elements in vector
4419 OpSrc)) // Which source operand ?
4420 return false;
4421
4422 isLeft = false;
4423 ShAmt = NumZeros;
4424 ShVal = SVOp->getOperand(OpSrc);
4425 return true;
4426}
4427
4428/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4429/// logical left shift of a vector.
4430static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4431 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4432 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4433 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4434 true /* check zeros from left */, DAG);
4435 unsigned OpSrc;
4436
4437 if (!NumZeros)
4438 return false;
4439
4440 // Considering the elements in the mask that are not consecutive zeros,
4441 // check if they consecutively come from only one of the source vectors.
4442 //
4443 // 0 { A, B, X, X } = V2
4444 // / \ / /
4445 // vector_shuffle V1, V2 <X, X, 4, 5>
4446 //
4447 if (!isShuffleMaskConsecutive(SVOp,
4448 NumZeros, // Mask Start Index
4449 NumElems-1, // Mask End Index
4450 0, // Where to start looking in the src vector
4451 NumElems, // Number of elements in vector
4452 OpSrc)) // Which source operand ?
4453 return false;
4454
4455 isLeft = true;
4456 ShAmt = NumZeros;
4457 ShVal = SVOp->getOperand(OpSrc);
4458 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004459}
4460
4461/// isVectorShift - Returns true if the shuffle can be implemented as a
4462/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004463static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004464 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004465 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4466 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4467 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004468
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004469 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004470}
4471
Evan Chengc78d3b42006-04-24 18:01:45 +00004472/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4473///
Dan Gohman475871a2008-07-27 21:46:04 +00004474static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004475 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004476 SelectionDAG &DAG,
4477 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004478 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004479 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004480
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004481 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004482 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004483 bool First = true;
4484 for (unsigned i = 0; i < 16; ++i) {
4485 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4486 if (ThisIsNonZero && First) {
4487 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004488 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004489 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004490 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004491 First = false;
4492 }
4493
4494 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004495 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004496 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4497 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004498 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004499 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004500 }
4501 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004502 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4503 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4504 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004505 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004506 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004507 } else
4508 ThisElt = LastElt;
4509
Gabor Greifba36cb52008-08-28 21:40:38 +00004510 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004511 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004512 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004513 }
4514 }
4515
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004516 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004517}
4518
Bill Wendlinga348c562007-03-22 18:42:45 +00004519/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004520///
Dan Gohman475871a2008-07-27 21:46:04 +00004521static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004522 unsigned NumNonZero, unsigned NumZero,
4523 SelectionDAG &DAG,
4524 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004525 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004526 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004527
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004528 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004529 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004530 bool First = true;
4531 for (unsigned i = 0; i < 8; ++i) {
4532 bool isNonZero = (NonZeros & (1 << i)) != 0;
4533 if (isNonZero) {
4534 if (First) {
4535 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004536 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004537 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004538 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004539 First = false;
4540 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004541 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004542 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004543 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004544 }
4545 }
4546
4547 return V;
4548}
4549
Evan Chengf26ffe92008-05-29 08:22:04 +00004550/// getVShift - Return a vector logical shift node.
4551///
Owen Andersone50ed302009-08-10 22:56:29 +00004552static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004553 unsigned NumBits, SelectionDAG &DAG,
4554 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004555 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004556 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004557 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4558 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004559 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004560 DAG.getConstant(NumBits,
4561 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004562}
4563
Dan Gohman475871a2008-07-27 21:46:04 +00004564SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004565X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004566 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004567
Evan Chengc3630942009-12-09 21:00:30 +00004568 // Check if the scalar load can be widened into a vector load. And if
4569 // the address is "base + cst" see if the cst can be "absorbed" into
4570 // the shuffle mask.
4571 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4572 SDValue Ptr = LD->getBasePtr();
4573 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4574 return SDValue();
4575 EVT PVT = LD->getValueType(0);
4576 if (PVT != MVT::i32 && PVT != MVT::f32)
4577 return SDValue();
4578
4579 int FI = -1;
4580 int64_t Offset = 0;
4581 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4582 FI = FINode->getIndex();
4583 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004584 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004585 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4586 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4587 Offset = Ptr.getConstantOperandVal(1);
4588 Ptr = Ptr.getOperand(0);
4589 } else {
4590 return SDValue();
4591 }
4592
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004593 // FIXME: 256-bit vector instructions don't require a strict alignment,
4594 // improve this code to support it better.
4595 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004596 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004597 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004598 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004599 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004600 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004601 // Can't change the alignment. FIXME: It's possible to compute
4602 // the exact stack offset and reference FI + adjust offset instead.
4603 // If someone *really* cares about this. That's the way to implement it.
4604 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004605 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004606 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004607 }
4608 }
4609
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004610 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004611 // Ptr + (Offset & ~15).
4612 if (Offset < 0)
4613 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004614 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004615 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004616 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004617 if (StartOffset)
4618 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4619 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4620
4621 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004622 int NumElems = VT.getVectorNumElements();
4623
4624 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4625 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4626 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004627 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004628 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004629
4630 // Canonicalize it to a v4i32 or v8i32 shuffle.
4631 SmallVector<int, 8> Mask;
4632 for (int i = 0; i < NumElems; ++i)
4633 Mask.push_back(EltNo);
4634
4635 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4636 return DAG.getNode(ISD::BITCAST, dl, NVT,
4637 DAG.getVectorShuffle(CanonVT, dl, V1,
4638 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004639 }
4640
4641 return SDValue();
4642}
4643
Michael J. Spencerec38de22010-10-10 22:04:20 +00004644/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4645/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004646/// load which has the same value as a build_vector whose operands are 'elts'.
4647///
4648/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004649///
Nate Begeman1449f292010-03-24 22:19:06 +00004650/// FIXME: we'd also like to handle the case where the last elements are zero
4651/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4652/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004653static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004654 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004655 EVT EltVT = VT.getVectorElementType();
4656 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004657
Nate Begemanfdea31a2010-03-24 20:49:50 +00004658 LoadSDNode *LDBase = NULL;
4659 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004660
Nate Begeman1449f292010-03-24 22:19:06 +00004661 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004662 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004663 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004664 for (unsigned i = 0; i < NumElems; ++i) {
4665 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004666
Nate Begemanfdea31a2010-03-24 20:49:50 +00004667 if (!Elt.getNode() ||
4668 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4669 return SDValue();
4670 if (!LDBase) {
4671 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4672 return SDValue();
4673 LDBase = cast<LoadSDNode>(Elt.getNode());
4674 LastLoadedElt = i;
4675 continue;
4676 }
4677 if (Elt.getOpcode() == ISD::UNDEF)
4678 continue;
4679
4680 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4681 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4682 return SDValue();
4683 LastLoadedElt = i;
4684 }
Nate Begeman1449f292010-03-24 22:19:06 +00004685
4686 // If we have found an entire vector of loads and undefs, then return a large
4687 // load of the entire vector width starting at the base pointer. If we found
4688 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004689 if (LastLoadedElt == NumElems - 1) {
4690 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004691 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004692 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004693 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004694 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004695 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004696 LDBase->isVolatile(), LDBase->isNonTemporal(),
4697 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004698 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4699 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004700 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4701 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004702 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4703 Ops, 2, MVT::i32,
4704 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004705 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004706 }
4707 return SDValue();
4708}
4709
Evan Chengc3630942009-12-09 21:00:30 +00004710SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004711X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004712 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004713
David Greenef125a292011-02-08 19:04:41 +00004714 EVT VT = Op.getValueType();
4715 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004716 unsigned NumElems = Op.getNumOperands();
4717
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004718 // Vectors containing all zeros can be matched by pxor and xorps later
4719 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
4720 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
4721 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004722 if (Op.getValueType() == MVT::v4i32 ||
4723 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004724 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004725
Dale Johannesenace16102009-02-03 19:33:06 +00004726 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004727 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004728
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004729 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
4730 // vectors or broken into v4i32 operations on 256-bit vectors.
4731 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
4732 if (Op.getValueType() == MVT::v4i32)
4733 return Op;
4734
4735 return getOnesVector(Op.getValueType(), DAG, dl);
4736 }
4737
Owen Andersone50ed302009-08-10 22:56:29 +00004738 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004739
Evan Cheng0db9fe62006-04-25 20:13:52 +00004740 unsigned NumZero = 0;
4741 unsigned NumNonZero = 0;
4742 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004743 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004744 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004745 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004746 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004747 if (Elt.getOpcode() == ISD::UNDEF)
4748 continue;
4749 Values.insert(Elt);
4750 if (Elt.getOpcode() != ISD::Constant &&
4751 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004752 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004753 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004754 NumZero++;
4755 else {
4756 NonZeros |= (1 << i);
4757 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004758 }
4759 }
4760
Chris Lattner97a2a562010-08-26 05:24:29 +00004761 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4762 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004763 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004764
Chris Lattner67f453a2008-03-09 05:42:06 +00004765 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004766 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004767 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004768 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004769
Chris Lattner62098042008-03-09 01:05:04 +00004770 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4771 // the value are obviously zero, truncate the value to i32 and do the
4772 // insertion that way. Only do this if the value is non-constant or if the
4773 // value is a constant being inserted into element 0. It is cheaper to do
4774 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004775 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004776 (!IsAllConstants || Idx == 0)) {
4777 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004778 // Handle SSE only.
4779 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4780 EVT VecVT = MVT::v4i32;
4781 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004782
Chris Lattner62098042008-03-09 01:05:04 +00004783 // Truncate the value (which may itself be a constant) to i32, and
4784 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004785 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004786 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004787 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4788 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004789
Chris Lattner62098042008-03-09 01:05:04 +00004790 // Now we have our 32-bit value zero extended in the low element of
4791 // a vector. If Idx != 0, swizzle it into place.
4792 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004793 SmallVector<int, 4> Mask;
4794 Mask.push_back(Idx);
4795 for (unsigned i = 1; i != VecElts; ++i)
4796 Mask.push_back(i);
4797 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004798 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004799 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004800 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004801 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004802 }
4803 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004804
Chris Lattner19f79692008-03-08 22:59:52 +00004805 // If we have a constant or non-constant insertion into the low element of
4806 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4807 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004808 // depending on what the source datatype is.
4809 if (Idx == 0) {
4810 if (NumZero == 0) {
4811 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004812 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4813 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004814 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4815 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4816 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4817 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004818 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4819 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004820 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4821 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004822 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4823 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4824 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004825 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004826 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004827 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004828
4829 // Is it a vector logical left shift?
4830 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004831 X86::isZeroNode(Op.getOperand(0)) &&
4832 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004833 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004834 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004835 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004836 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004837 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004838 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004839
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004840 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004841 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004842
Chris Lattner19f79692008-03-08 22:59:52 +00004843 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4844 // is a non-constant being inserted into an element other than the low one,
4845 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4846 // movd/movss) to move this into the low element, then shuffle it into
4847 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004848 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004849 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004850
Evan Cheng0db9fe62006-04-25 20:13:52 +00004851 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004852 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4853 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004854 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004855 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004856 MaskVec.push_back(i == Idx ? 0 : 1);
4857 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004858 }
4859 }
4860
Chris Lattner67f453a2008-03-09 05:42:06 +00004861 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004862 if (Values.size() == 1) {
4863 if (EVTBits == 32) {
4864 // Instead of a shuffle like this:
4865 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4866 // Check if it's possible to issue this instead.
4867 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4868 unsigned Idx = CountTrailingZeros_32(NonZeros);
4869 SDValue Item = Op.getOperand(Idx);
4870 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4871 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4872 }
Dan Gohman475871a2008-07-27 21:46:04 +00004873 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004874 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004875
Dan Gohmana3941172007-07-24 22:55:08 +00004876 // A vector full of immediates; various special cases are already
4877 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004878 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004879 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004880
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004881 // For AVX-length vectors, build the individual 128-bit pieces and use
4882 // shuffles to put them in place.
4883 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4884 SmallVector<SDValue, 32> V;
4885 for (unsigned i = 0; i < NumElems; ++i)
4886 V.push_back(Op.getOperand(i));
4887
4888 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4889
4890 // Build both the lower and upper subvector.
4891 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4892 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4893 NumElems/2);
4894
4895 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00004896 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4897 DAG.getConstant(0, MVT::i32), DAG, dl);
4898 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004899 DAG, dl);
4900 }
4901
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004902 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004903 if (EVTBits == 64) {
4904 if (NumNonZero == 1) {
4905 // One half is zero or undef.
4906 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004907 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004908 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004909 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4910 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004911 }
Dan Gohman475871a2008-07-27 21:46:04 +00004912 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004913 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004914
4915 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004916 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004917 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004918 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004919 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004920 }
4921
Bill Wendling826f36f2007-03-28 00:57:11 +00004922 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004923 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004924 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004925 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004926 }
4927
4928 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004929 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004930 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004931 if (NumElems == 4 && NumZero > 0) {
4932 for (unsigned i = 0; i < 4; ++i) {
4933 bool isZero = !(NonZeros & (1 << i));
4934 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004935 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004936 else
Dale Johannesenace16102009-02-03 19:33:06 +00004937 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004938 }
4939
4940 for (unsigned i = 0; i < 2; ++i) {
4941 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4942 default: break;
4943 case 0:
4944 V[i] = V[i*2]; // Must be a zero vector.
4945 break;
4946 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004947 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004948 break;
4949 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004950 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004951 break;
4952 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004953 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004954 break;
4955 }
4956 }
4957
Nate Begeman9008ca62009-04-27 18:41:29 +00004958 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004959 bool Reverse = (NonZeros & 0x3) == 2;
4960 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004961 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004962 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4963 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004964 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4965 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004966 }
4967
Nate Begemanfdea31a2010-03-24 20:49:50 +00004968 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4969 // Check for a build vector of consecutive loads.
4970 for (unsigned i = 0; i < NumElems; ++i)
4971 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004972
Nate Begemanfdea31a2010-03-24 20:49:50 +00004973 // Check for elements which are consecutive loads.
4974 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4975 if (LD.getNode())
4976 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004977
4978 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004979 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004980 SDValue Result;
4981 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4982 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4983 else
4984 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004985
Chris Lattner24faf612010-08-28 17:59:08 +00004986 for (unsigned i = 1; i < NumElems; ++i) {
4987 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4988 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004989 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004990 }
4991 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004992 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004993
Chris Lattner6e80e442010-08-28 17:15:43 +00004994 // Otherwise, expand into a number of unpckl*, start by extending each of
4995 // our (non-undef) elements to the full vector width with the element in the
4996 // bottom slot of the vector (which generates no code for SSE).
4997 for (unsigned i = 0; i < NumElems; ++i) {
4998 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4999 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5000 else
5001 V[i] = DAG.getUNDEF(VT);
5002 }
5003
5004 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005005 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5006 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5007 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005008 unsigned EltStride = NumElems >> 1;
5009 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005010 for (unsigned i = 0; i < EltStride; ++i) {
5011 // If V[i+EltStride] is undef and this is the first round of mixing,
5012 // then it is safe to just drop this shuffle: V[i] is already in the
5013 // right place, the one element (since it's the first round) being
5014 // inserted as undef can be dropped. This isn't safe for successive
5015 // rounds because they will permute elements within both vectors.
5016 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5017 EltStride == NumElems/2)
5018 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005019
Chris Lattner6e80e442010-08-28 17:15:43 +00005020 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005021 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005022 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005023 }
5024 return V[0];
5025 }
Dan Gohman475871a2008-07-27 21:46:04 +00005026 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005027}
5028
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005029// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5030// them in a MMX register. This is better than doing a stack convert.
5031static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005032 DebugLoc dl = Op.getDebugLoc();
5033 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005034
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005035 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5036 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5037 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005038 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005039 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5040 InVec = Op.getOperand(1);
5041 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5042 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005043 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005044 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5045 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5046 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005047 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005048 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5049 Mask[0] = 0; Mask[1] = 2;
5050 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5051 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005052 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005053}
5054
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005055// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5056// to create 256-bit vectors from two other 128-bit ones.
5057static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5058 DebugLoc dl = Op.getDebugLoc();
5059 EVT ResVT = Op.getValueType();
5060
5061 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5062
5063 SDValue V1 = Op.getOperand(0);
5064 SDValue V2 = Op.getOperand(1);
5065 unsigned NumElems = ResVT.getVectorNumElements();
5066
5067 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5068 DAG.getConstant(0, MVT::i32), DAG, dl);
5069 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5070 DAG, dl);
5071}
5072
5073SDValue
5074X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005075 EVT ResVT = Op.getValueType();
5076
5077 assert(Op.getNumOperands() == 2);
5078 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5079 "Unsupported CONCAT_VECTORS for value type");
5080
5081 // We support concatenate two MMX registers and place them in a MMX register.
5082 // This is better than doing a stack convert.
5083 if (ResVT.is128BitVector())
5084 return LowerMMXCONCAT_VECTORS(Op, DAG);
5085
5086 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5087 // from two other 128-bit ones.
5088 return LowerAVXCONCAT_VECTORS(Op, DAG);
5089}
5090
Nate Begemanb9a47b82009-02-23 08:49:38 +00005091// v8i16 shuffles - Prefer shuffles in the following order:
5092// 1. [all] pshuflw, pshufhw, optional move
5093// 2. [ssse3] 1 x pshufb
5094// 3. [ssse3] 2 x pshufb + 1 x por
5095// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005096SDValue
5097X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5098 SelectionDAG &DAG) const {
5099 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005100 SDValue V1 = SVOp->getOperand(0);
5101 SDValue V2 = SVOp->getOperand(1);
5102 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005103 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005104
Nate Begemanb9a47b82009-02-23 08:49:38 +00005105 // Determine if more than 1 of the words in each of the low and high quadwords
5106 // of the result come from the same quadword of one of the two inputs. Undef
5107 // mask values count as coming from any quadword, for better codegen.
5108 SmallVector<unsigned, 4> LoQuad(4);
5109 SmallVector<unsigned, 4> HiQuad(4);
5110 BitVector InputQuads(4);
5111 for (unsigned i = 0; i < 8; ++i) {
5112 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005113 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005114 MaskVals.push_back(EltIdx);
5115 if (EltIdx < 0) {
5116 ++Quad[0];
5117 ++Quad[1];
5118 ++Quad[2];
5119 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005120 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005121 }
5122 ++Quad[EltIdx / 4];
5123 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005124 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005125
Nate Begemanb9a47b82009-02-23 08:49:38 +00005126 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005127 unsigned MaxQuad = 1;
5128 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005129 if (LoQuad[i] > MaxQuad) {
5130 BestLoQuad = i;
5131 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005132 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005133 }
5134
Nate Begemanb9a47b82009-02-23 08:49:38 +00005135 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005136 MaxQuad = 1;
5137 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005138 if (HiQuad[i] > MaxQuad) {
5139 BestHiQuad = i;
5140 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005141 }
5142 }
5143
Nate Begemanb9a47b82009-02-23 08:49:38 +00005144 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005145 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005146 // single pshufb instruction is necessary. If There are more than 2 input
5147 // quads, disable the next transformation since it does not help SSSE3.
5148 bool V1Used = InputQuads[0] || InputQuads[1];
5149 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005150 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005151 if (InputQuads.count() == 2 && V1Used && V2Used) {
5152 BestLoQuad = InputQuads.find_first();
5153 BestHiQuad = InputQuads.find_next(BestLoQuad);
5154 }
5155 if (InputQuads.count() > 2) {
5156 BestLoQuad = -1;
5157 BestHiQuad = -1;
5158 }
5159 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005160
Nate Begemanb9a47b82009-02-23 08:49:38 +00005161 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5162 // the shuffle mask. If a quad is scored as -1, that means that it contains
5163 // words from all 4 input quadwords.
5164 SDValue NewV;
5165 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005166 SmallVector<int, 8> MaskV;
5167 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5168 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005169 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005170 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5171 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5172 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005173
Nate Begemanb9a47b82009-02-23 08:49:38 +00005174 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5175 // source words for the shuffle, to aid later transformations.
5176 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005177 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005178 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005179 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005180 if (idx != (int)i)
5181 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005182 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005183 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005184 AllWordsInNewV = false;
5185 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005186 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005187
Nate Begemanb9a47b82009-02-23 08:49:38 +00005188 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5189 if (AllWordsInNewV) {
5190 for (int i = 0; i != 8; ++i) {
5191 int idx = MaskVals[i];
5192 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005193 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005194 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005195 if ((idx != i) && idx < 4)
5196 pshufhw = false;
5197 if ((idx != i) && idx > 3)
5198 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005199 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005200 V1 = NewV;
5201 V2Used = false;
5202 BestLoQuad = 0;
5203 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005204 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005205
Nate Begemanb9a47b82009-02-23 08:49:38 +00005206 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5207 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005208 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005209 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5210 unsigned TargetMask = 0;
5211 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005212 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005213 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5214 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5215 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005216 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005217 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005218 }
Eric Christopherfd179292009-08-27 18:07:15 +00005219
Nate Begemanb9a47b82009-02-23 08:49:38 +00005220 // If we have SSSE3, and all words of the result are from 1 input vector,
5221 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5222 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005223 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005224 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005225
Nate Begemanb9a47b82009-02-23 08:49:38 +00005226 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005227 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005228 // mask, and elements that come from V1 in the V2 mask, so that the two
5229 // results can be OR'd together.
5230 bool TwoInputs = V1Used && V2Used;
5231 for (unsigned i = 0; i != 8; ++i) {
5232 int EltIdx = MaskVals[i] * 2;
5233 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005234 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5235 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005236 continue;
5237 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005238 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5239 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005240 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005241 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005242 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005243 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005244 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005245 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005246 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005247
Nate Begemanb9a47b82009-02-23 08:49:38 +00005248 // Calculate the shuffle mask for the second input, shuffle it, and
5249 // OR it with the first shuffled input.
5250 pshufbMask.clear();
5251 for (unsigned i = 0; i != 8; ++i) {
5252 int EltIdx = MaskVals[i] * 2;
5253 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005254 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5255 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005256 continue;
5257 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005258 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5259 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005260 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005261 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005262 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005263 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005264 MVT::v16i8, &pshufbMask[0], 16));
5265 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005266 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005267 }
5268
5269 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5270 // and update MaskVals with new element order.
5271 BitVector InOrder(8);
5272 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005273 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005274 for (int i = 0; i != 4; ++i) {
5275 int idx = MaskVals[i];
5276 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005277 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005278 InOrder.set(i);
5279 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005280 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005281 InOrder.set(i);
5282 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005283 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005284 }
5285 }
5286 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005287 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005288 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005289 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005290
5291 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5292 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5293 NewV.getOperand(0),
5294 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5295 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005296 }
Eric Christopherfd179292009-08-27 18:07:15 +00005297
Nate Begemanb9a47b82009-02-23 08:49:38 +00005298 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5299 // and update MaskVals with the new element order.
5300 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005301 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005302 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005303 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005304 for (unsigned i = 4; i != 8; ++i) {
5305 int idx = MaskVals[i];
5306 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005307 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005308 InOrder.set(i);
5309 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005310 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005311 InOrder.set(i);
5312 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005313 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005314 }
5315 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005316 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005317 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005318
5319 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5320 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5321 NewV.getOperand(0),
5322 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5323 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005324 }
Eric Christopherfd179292009-08-27 18:07:15 +00005325
Nate Begemanb9a47b82009-02-23 08:49:38 +00005326 // In case BestHi & BestLo were both -1, which means each quadword has a word
5327 // from each of the four input quadwords, calculate the InOrder bitvector now
5328 // before falling through to the insert/extract cleanup.
5329 if (BestLoQuad == -1 && BestHiQuad == -1) {
5330 NewV = V1;
5331 for (int i = 0; i != 8; ++i)
5332 if (MaskVals[i] < 0 || MaskVals[i] == i)
5333 InOrder.set(i);
5334 }
Eric Christopherfd179292009-08-27 18:07:15 +00005335
Nate Begemanb9a47b82009-02-23 08:49:38 +00005336 // The other elements are put in the right place using pextrw and pinsrw.
5337 for (unsigned i = 0; i != 8; ++i) {
5338 if (InOrder[i])
5339 continue;
5340 int EltIdx = MaskVals[i];
5341 if (EltIdx < 0)
5342 continue;
5343 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005344 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005345 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005346 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005347 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005348 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005349 DAG.getIntPtrConstant(i));
5350 }
5351 return NewV;
5352}
5353
5354// v16i8 shuffles - Prefer shuffles in the following order:
5355// 1. [ssse3] 1 x pshufb
5356// 2. [ssse3] 2 x pshufb + 1 x por
5357// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5358static
Nate Begeman9008ca62009-04-27 18:41:29 +00005359SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005360 SelectionDAG &DAG,
5361 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005362 SDValue V1 = SVOp->getOperand(0);
5363 SDValue V2 = SVOp->getOperand(1);
5364 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005365 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005366 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005367
Nate Begemanb9a47b82009-02-23 08:49:38 +00005368 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005369 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005370 // present, fall back to case 3.
5371 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5372 bool V1Only = true;
5373 bool V2Only = true;
5374 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005375 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005376 if (EltIdx < 0)
5377 continue;
5378 if (EltIdx < 16)
5379 V2Only = false;
5380 else
5381 V1Only = false;
5382 }
Eric Christopherfd179292009-08-27 18:07:15 +00005383
Nate Begemanb9a47b82009-02-23 08:49:38 +00005384 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5385 if (TLI.getSubtarget()->hasSSSE3()) {
5386 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005387
Nate Begemanb9a47b82009-02-23 08:49:38 +00005388 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005389 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005390 //
5391 // Otherwise, we have elements from both input vectors, and must zero out
5392 // elements that come from V2 in the first mask, and V1 in the second mask
5393 // so that we can OR them together.
5394 bool TwoInputs = !(V1Only || V2Only);
5395 for (unsigned i = 0; i != 16; ++i) {
5396 int EltIdx = MaskVals[i];
5397 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005398 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005399 continue;
5400 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005401 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005402 }
5403 // If all the elements are from V2, assign it to V1 and return after
5404 // building the first pshufb.
5405 if (V2Only)
5406 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005407 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005408 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005409 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005410 if (!TwoInputs)
5411 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005412
Nate Begemanb9a47b82009-02-23 08:49:38 +00005413 // Calculate the shuffle mask for the second input, shuffle it, and
5414 // OR it with the first shuffled input.
5415 pshufbMask.clear();
5416 for (unsigned i = 0; i != 16; ++i) {
5417 int EltIdx = MaskVals[i];
5418 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005419 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005420 continue;
5421 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005422 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005423 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005424 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005425 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005426 MVT::v16i8, &pshufbMask[0], 16));
5427 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005428 }
Eric Christopherfd179292009-08-27 18:07:15 +00005429
Nate Begemanb9a47b82009-02-23 08:49:38 +00005430 // No SSSE3 - Calculate in place words and then fix all out of place words
5431 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5432 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005433 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5434 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005435 SDValue NewV = V2Only ? V2 : V1;
5436 for (int i = 0; i != 8; ++i) {
5437 int Elt0 = MaskVals[i*2];
5438 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005439
Nate Begemanb9a47b82009-02-23 08:49:38 +00005440 // This word of the result is all undef, skip it.
5441 if (Elt0 < 0 && Elt1 < 0)
5442 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005443
Nate Begemanb9a47b82009-02-23 08:49:38 +00005444 // This word of the result is already in the correct place, skip it.
5445 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5446 continue;
5447 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5448 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005449
Nate Begemanb9a47b82009-02-23 08:49:38 +00005450 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5451 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5452 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005453
5454 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5455 // using a single extract together, load it and store it.
5456 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005457 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005458 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005459 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005460 DAG.getIntPtrConstant(i));
5461 continue;
5462 }
5463
Nate Begemanb9a47b82009-02-23 08:49:38 +00005464 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005465 // source byte is not also odd, shift the extracted word left 8 bits
5466 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005467 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005468 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005469 DAG.getIntPtrConstant(Elt1 / 2));
5470 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005471 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005472 DAG.getConstant(8,
5473 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005474 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005475 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5476 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005477 }
5478 // If Elt0 is defined, extract it from the appropriate source. If the
5479 // source byte is not also even, shift the extracted word right 8 bits. If
5480 // Elt1 was also defined, OR the extracted values together before
5481 // inserting them in the result.
5482 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005483 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005484 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5485 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005486 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005487 DAG.getConstant(8,
5488 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005489 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005490 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5491 DAG.getConstant(0x00FF, MVT::i16));
5492 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005493 : InsElt0;
5494 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005495 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005496 DAG.getIntPtrConstant(i));
5497 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005498 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005499}
5500
Evan Cheng7a831ce2007-12-15 03:00:47 +00005501/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005502/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005503/// done when every pair / quad of shuffle mask elements point to elements in
5504/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005505/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005506static
Nate Begeman9008ca62009-04-27 18:41:29 +00005507SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005508 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005509 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005510 SDValue V1 = SVOp->getOperand(0);
5511 SDValue V2 = SVOp->getOperand(1);
5512 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005513 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005514 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005515 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005516 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005517 case MVT::v4f32: NewVT = MVT::v2f64; break;
5518 case MVT::v4i32: NewVT = MVT::v2i64; break;
5519 case MVT::v8i16: NewVT = MVT::v4i32; break;
5520 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005521 }
5522
Nate Begeman9008ca62009-04-27 18:41:29 +00005523 int Scale = NumElems / NewWidth;
5524 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005525 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005526 int StartIdx = -1;
5527 for (int j = 0; j < Scale; ++j) {
5528 int EltIdx = SVOp->getMaskElt(i+j);
5529 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005530 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005531 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005532 StartIdx = EltIdx - (EltIdx % Scale);
5533 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005534 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005535 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005536 if (StartIdx == -1)
5537 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005538 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005539 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005540 }
5541
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005542 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5543 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005544 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005545}
5546
Evan Chengd880b972008-05-09 21:53:03 +00005547/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005548///
Owen Andersone50ed302009-08-10 22:56:29 +00005549static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005550 SDValue SrcOp, SelectionDAG &DAG,
5551 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005552 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005553 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005554 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005555 LD = dyn_cast<LoadSDNode>(SrcOp);
5556 if (!LD) {
5557 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5558 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005559 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005560 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005561 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005562 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005563 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005564 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005565 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005566 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005567 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5568 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5569 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005570 SrcOp.getOperand(0)
5571 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005572 }
5573 }
5574 }
5575
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005576 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005577 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005578 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005579 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005580}
5581
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005582/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5583/// which could not be matched by any known target speficic shuffle
5584static SDValue
5585LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5586 return SDValue();
5587}
5588
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005589/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5590/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005591static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005592LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005593 SDValue V1 = SVOp->getOperand(0);
5594 SDValue V2 = SVOp->getOperand(1);
5595 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005596 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005597
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005598 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5599
Evan Chengace3c172008-07-22 21:13:36 +00005600 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005601 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005602 SmallVector<int, 8> Mask1(4U, -1);
5603 SmallVector<int, 8> PermMask;
5604 SVOp->getMask(PermMask);
5605
Evan Chengace3c172008-07-22 21:13:36 +00005606 unsigned NumHi = 0;
5607 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005608 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005609 int Idx = PermMask[i];
5610 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005611 Locs[i] = std::make_pair(-1, -1);
5612 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005613 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5614 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005615 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005616 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005617 NumLo++;
5618 } else {
5619 Locs[i] = std::make_pair(1, NumHi);
5620 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005621 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005622 NumHi++;
5623 }
5624 }
5625 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005626
Evan Chengace3c172008-07-22 21:13:36 +00005627 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005628 // If no more than two elements come from either vector. This can be
5629 // implemented with two shuffles. First shuffle gather the elements.
5630 // The second shuffle, which takes the first shuffle as both of its
5631 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005632 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005633
Nate Begeman9008ca62009-04-27 18:41:29 +00005634 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005635
Evan Chengace3c172008-07-22 21:13:36 +00005636 for (unsigned i = 0; i != 4; ++i) {
5637 if (Locs[i].first == -1)
5638 continue;
5639 else {
5640 unsigned Idx = (i < 2) ? 0 : 4;
5641 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005642 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005643 }
5644 }
5645
Nate Begeman9008ca62009-04-27 18:41:29 +00005646 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005647 } else if (NumLo == 3 || NumHi == 3) {
5648 // Otherwise, we must have three elements from one vector, call it X, and
5649 // one element from the other, call it Y. First, use a shufps to build an
5650 // intermediate vector with the one element from Y and the element from X
5651 // that will be in the same half in the final destination (the indexes don't
5652 // matter). Then, use a shufps to build the final vector, taking the half
5653 // containing the element from Y from the intermediate, and the other half
5654 // from X.
5655 if (NumHi == 3) {
5656 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005657 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005658 std::swap(V1, V2);
5659 }
5660
5661 // Find the element from V2.
5662 unsigned HiIndex;
5663 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005664 int Val = PermMask[HiIndex];
5665 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005666 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005667 if (Val >= 4)
5668 break;
5669 }
5670
Nate Begeman9008ca62009-04-27 18:41:29 +00005671 Mask1[0] = PermMask[HiIndex];
5672 Mask1[1] = -1;
5673 Mask1[2] = PermMask[HiIndex^1];
5674 Mask1[3] = -1;
5675 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005676
5677 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005678 Mask1[0] = PermMask[0];
5679 Mask1[1] = PermMask[1];
5680 Mask1[2] = HiIndex & 1 ? 6 : 4;
5681 Mask1[3] = HiIndex & 1 ? 4 : 6;
5682 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005683 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005684 Mask1[0] = HiIndex & 1 ? 2 : 0;
5685 Mask1[1] = HiIndex & 1 ? 0 : 2;
5686 Mask1[2] = PermMask[2];
5687 Mask1[3] = PermMask[3];
5688 if (Mask1[2] >= 0)
5689 Mask1[2] += 4;
5690 if (Mask1[3] >= 0)
5691 Mask1[3] += 4;
5692 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005693 }
Evan Chengace3c172008-07-22 21:13:36 +00005694 }
5695
5696 // Break it into (shuffle shuffle_hi, shuffle_lo).
5697 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005698 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005699 SmallVector<int,8> LoMask(4U, -1);
5700 SmallVector<int,8> HiMask(4U, -1);
5701
5702 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005703 unsigned MaskIdx = 0;
5704 unsigned LoIdx = 0;
5705 unsigned HiIdx = 2;
5706 for (unsigned i = 0; i != 4; ++i) {
5707 if (i == 2) {
5708 MaskPtr = &HiMask;
5709 MaskIdx = 1;
5710 LoIdx = 0;
5711 HiIdx = 2;
5712 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005713 int Idx = PermMask[i];
5714 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005715 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005716 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005717 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005718 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005719 LoIdx++;
5720 } else {
5721 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005722 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005723 HiIdx++;
5724 }
5725 }
5726
Nate Begeman9008ca62009-04-27 18:41:29 +00005727 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5728 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5729 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005730 for (unsigned i = 0; i != 4; ++i) {
5731 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005732 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005733 } else {
5734 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005735 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005736 }
5737 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005738 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005739}
5740
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005741static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005742 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005743 V = V.getOperand(0);
5744 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5745 V = V.getOperand(0);
5746 if (MayFoldLoad(V))
5747 return true;
5748 return false;
5749}
5750
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005751// FIXME: the version above should always be used. Since there's
5752// a bug where several vector shuffles can't be folded because the
5753// DAG is not updated during lowering and a node claims to have two
5754// uses while it only has one, use this version, and let isel match
5755// another instruction if the load really happens to have more than
5756// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005757// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005758static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005759 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005760 V = V.getOperand(0);
5761 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5762 V = V.getOperand(0);
5763 if (ISD::isNormalLoad(V.getNode()))
5764 return true;
5765 return false;
5766}
5767
5768/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5769/// a vector extract, and if both can be later optimized into a single load.
5770/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5771/// here because otherwise a target specific shuffle node is going to be
5772/// emitted for this shuffle, and the optimization not done.
5773/// FIXME: This is probably not the best approach, but fix the problem
5774/// until the right path is decided.
5775static
5776bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5777 const TargetLowering &TLI) {
5778 EVT VT = V.getValueType();
5779 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5780
5781 // Be sure that the vector shuffle is present in a pattern like this:
5782 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5783 if (!V.hasOneUse())
5784 return false;
5785
5786 SDNode *N = *V.getNode()->use_begin();
5787 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5788 return false;
5789
5790 SDValue EltNo = N->getOperand(1);
5791 if (!isa<ConstantSDNode>(EltNo))
5792 return false;
5793
5794 // If the bit convert changed the number of elements, it is unsafe
5795 // to examine the mask.
5796 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005797 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005798 EVT SrcVT = V.getOperand(0).getValueType();
5799 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5800 return false;
5801 V = V.getOperand(0);
5802 HasShuffleIntoBitcast = true;
5803 }
5804
5805 // Select the input vector, guarding against out of range extract vector.
5806 unsigned NumElems = VT.getVectorNumElements();
5807 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5808 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5809 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5810
5811 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005812 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005813 V = V.getOperand(0);
5814
5815 if (ISD::isNormalLoad(V.getNode())) {
5816 // Is the original load suitable?
5817 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5818
5819 // FIXME: avoid the multi-use bug that is preventing lots of
5820 // of foldings to be detected, this is still wrong of course, but
5821 // give the temporary desired behavior, and if it happens that
5822 // the load has real more uses, during isel it will not fold, and
5823 // will generate poor code.
5824 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5825 return false;
5826
5827 if (!HasShuffleIntoBitcast)
5828 return true;
5829
5830 // If there's a bitcast before the shuffle, check if the load type and
5831 // alignment is valid.
5832 unsigned Align = LN0->getAlignment();
5833 unsigned NewAlign =
5834 TLI.getTargetData()->getABITypeAlignment(
5835 VT.getTypeForEVT(*DAG.getContext()));
5836
5837 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5838 return false;
5839 }
5840
5841 return true;
5842}
5843
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005844static
Evan Cheng835580f2010-10-07 20:50:20 +00005845SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5846 EVT VT = Op.getValueType();
5847
5848 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005849 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5850 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005851 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5852 V1, DAG));
5853}
5854
5855static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005856SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5857 bool HasSSE2) {
5858 SDValue V1 = Op.getOperand(0);
5859 SDValue V2 = Op.getOperand(1);
5860 EVT VT = Op.getValueType();
5861
5862 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5863
5864 if (HasSSE2 && VT == MVT::v2f64)
5865 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5866
5867 // v4f32 or v4i32
5868 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5869}
5870
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005871static
5872SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5873 SDValue V1 = Op.getOperand(0);
5874 SDValue V2 = Op.getOperand(1);
5875 EVT VT = Op.getValueType();
5876
5877 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5878 "unsupported shuffle type");
5879
5880 if (V2.getOpcode() == ISD::UNDEF)
5881 V2 = V1;
5882
5883 // v4i32 or v4f32
5884 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5885}
5886
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005887static
5888SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5889 SDValue V1 = Op.getOperand(0);
5890 SDValue V2 = Op.getOperand(1);
5891 EVT VT = Op.getValueType();
5892 unsigned NumElems = VT.getVectorNumElements();
5893
5894 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5895 // operand of these instructions is only memory, so check if there's a
5896 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5897 // same masks.
5898 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005899
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005900 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005901 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005902 CanFoldLoad = true;
5903
5904 // When V1 is a load, it can be folded later into a store in isel, example:
5905 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5906 // turns into:
5907 // (MOVLPSmr addr:$src1, VR128:$src2)
5908 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005909 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005910 CanFoldLoad = true;
5911
Eric Christopher893a8822011-02-20 05:04:42 +00005912 // Both of them can't be memory operations though.
5913 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5914 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005915
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005916 if (CanFoldLoad) {
5917 if (HasSSE2 && NumElems == 2)
5918 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5919
5920 if (NumElems == 4)
5921 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5922 }
5923
5924 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5925 // movl and movlp will both match v2i64, but v2i64 is never matched by
5926 // movl earlier because we make it strict to avoid messing with the movlp load
5927 // folding logic (see the code above getMOVLP call). Match it here then,
5928 // this is horrible, but will stay like this until we move all shuffle
5929 // matching to x86 specific nodes. Note that for the 1st condition all
5930 // types are matched with movsd.
5931 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5932 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5933 else if (HasSSE2)
5934 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5935
5936
5937 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5938
5939 // Invert the operand order and use SHUFPS to match it.
5940 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5941 X86::getShuffleSHUFImmediate(SVOp), DAG);
5942}
5943
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00005944static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005945 switch(VT.getSimpleVT().SimpleTy) {
5946 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5947 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005948 case MVT::v4f32: return X86ISD::UNPCKLPS;
5949 case MVT::v2f64: return X86ISD::UNPCKLPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00005950 case MVT::v8i32: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00005951 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00005952 case MVT::v4i64: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00005953 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005954 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5955 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5956 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005957 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005958 }
5959 return 0;
5960}
5961
5962static inline unsigned getUNPCKHOpcode(EVT VT) {
5963 switch(VT.getSimpleVT().SimpleTy) {
5964 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5965 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5966 case MVT::v4f32: return X86ISD::UNPCKHPS;
5967 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00005968 case MVT::v8i32: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00005969 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00005970 case MVT::v4i64: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00005971 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005972 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5973 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5974 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005975 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005976 }
5977 return 0;
5978}
5979
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00005980static inline unsigned getVPERMILOpcode(EVT VT) {
5981 switch(VT.getSimpleVT().SimpleTy) {
5982 case MVT::v4i32:
5983 case MVT::v4f32: return X86ISD::VPERMILPS;
5984 case MVT::v2i64:
5985 case MVT::v2f64: return X86ISD::VPERMILPD;
5986 case MVT::v8i32:
5987 case MVT::v8f32: return X86ISD::VPERMILPSY;
5988 case MVT::v4i64:
5989 case MVT::v4f64: return X86ISD::VPERMILPDY;
5990 default:
5991 llvm_unreachable("Unknown type for vpermil");
5992 }
5993 return 0;
5994}
5995
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005996static
5997SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005998 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005999 const X86Subtarget *Subtarget) {
6000 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6001 EVT VT = Op.getValueType();
6002 DebugLoc dl = Op.getDebugLoc();
6003 SDValue V1 = Op.getOperand(0);
6004 SDValue V2 = Op.getOperand(1);
6005
6006 if (isZeroShuffle(SVOp))
6007 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
6008
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006009 // Handle splat operations
6010 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006011 unsigned NumElem = VT.getVectorNumElements();
6012 // Special case, this is the only place now where it's allowed to return
6013 // a vector_shuffle operation without using a target specific node, because
6014 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6015 // this be moved to DAGCombine instead?
6016 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006017 return Op;
6018
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006019 // Since there's no native support for scalar_to_vector for 256-bit AVX, a
6020 // 128-bit scalar_to_vector + INSERT_SUBVECTOR is generated. Recognize this
6021 // idiom and do the shuffle before the insertion, this yields less
6022 // instructions in the end.
6023 if (VT.is256BitVector() &&
6024 V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
6025 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
6026 V1.getOperand(1).getOpcode() == ISD::SCALAR_TO_VECTOR)
6027 return PromoteVectorToScalarSplat(SVOp, DAG);
6028
6029 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006030 if ((VT.is128BitVector() && NumElem <= 4) ||
6031 (VT.is256BitVector() && NumElem <= 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006032 return SDValue();
6033
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006034 // All i16 and i8 vector types can't be used directly by a generic shuffle
6035 // instruction because the target has no such instruction. Generate shuffles
6036 // which repeat i16 and i8 several times until they fit in i32, and then can
6037 // be manipulated by target suported shuffles. After the insertion of the
6038 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006039 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006040 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006041
6042 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6043 // do it!
6044 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6045 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6046 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006047 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006048 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6049 // FIXME: Figure out a cleaner way to do this.
6050 // Try to make use of movq to zero out the top part.
6051 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6052 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6053 if (NewOp.getNode()) {
6054 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6055 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6056 DAG, Subtarget, dl);
6057 }
6058 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6059 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6060 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6061 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6062 DAG, Subtarget, dl);
6063 }
6064 }
6065 return SDValue();
6066}
6067
Dan Gohman475871a2008-07-27 21:46:04 +00006068SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006069X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006070 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006071 SDValue V1 = Op.getOperand(0);
6072 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006073 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006074 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006075 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006076 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006077 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6078 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006079 bool V1IsSplat = false;
6080 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006081 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006082 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006083 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006084 MachineFunction &MF = DAG.getMachineFunction();
6085 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006086
Dale Johannesen0488fb62010-09-30 23:57:10 +00006087 // Shuffle operations on MMX not supported.
6088 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006089 return Op;
6090
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006091 // Vector shuffle lowering takes 3 steps:
6092 //
6093 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6094 // narrowing and commutation of operands should be handled.
6095 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6096 // shuffle nodes.
6097 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6098 // so the shuffle can be broken into other shuffles and the legalizer can
6099 // try the lowering again.
6100 //
6101 // The general ideia is that no vector_shuffle operation should be left to
6102 // be matched during isel, all of them must be converted to a target specific
6103 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006104
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006105 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6106 // narrowing and commutation of operands should be handled. The actual code
6107 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006108 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006109 if (NewOp.getNode())
6110 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006111
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006112 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6113 // unpckh_undef). Only use pshufd if speed is more important than size.
6114 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006115 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006116 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006117 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006118
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006119 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006120 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006121 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006122
Dale Johannesen0488fb62010-09-30 23:57:10 +00006123 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006124 return getMOVHighToLow(Op, dl, DAG);
6125
6126 // Use to match splats
6127 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6128 (VT == MVT::v2f64 || VT == MVT::v2i64))
6129 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6130
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006131 if (X86::isPSHUFDMask(SVOp)) {
6132 // The actual implementation will match the mask in the if above and then
6133 // during isel it can match several different instructions, not only pshufd
6134 // as its name says, sad but true, emulate the behavior for now...
6135 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6136 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6137
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006138 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6139
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006140 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006141 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6142
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006143 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006144 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6145 TargetMask, DAG);
6146
6147 if (VT == MVT::v4f32)
6148 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6149 TargetMask, DAG);
6150 }
Eric Christopherfd179292009-08-27 18:07:15 +00006151
Evan Chengf26ffe92008-05-29 08:22:04 +00006152 // Check if this can be converted into a logical shift.
6153 bool isLeft = false;
6154 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006155 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006156 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006157 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006158 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006159 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006160 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006161 EVT EltVT = VT.getVectorElementType();
6162 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006163 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006164 }
Eric Christopherfd179292009-08-27 18:07:15 +00006165
Nate Begeman9008ca62009-04-27 18:41:29 +00006166 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006167 if (V1IsUndef)
6168 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006169 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006170 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006171 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006172 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006173 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6174
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006175 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006176 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6177 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006178 }
Eric Christopherfd179292009-08-27 18:07:15 +00006179
Nate Begeman9008ca62009-04-27 18:41:29 +00006180 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006181 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6182 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006183
Dale Johannesen0488fb62010-09-30 23:57:10 +00006184 if (X86::isMOVHLPSMask(SVOp))
6185 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006186
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006187 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006188 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006189
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006190 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006191 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006192
Dale Johannesen0488fb62010-09-30 23:57:10 +00006193 if (X86::isMOVLPMask(SVOp))
6194 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006195
Nate Begeman9008ca62009-04-27 18:41:29 +00006196 if (ShouldXformToMOVHLPS(SVOp) ||
6197 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6198 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006199
Evan Chengf26ffe92008-05-29 08:22:04 +00006200 if (isShift) {
6201 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006202 EVT EltVT = VT.getVectorElementType();
6203 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006204 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006205 }
Eric Christopherfd179292009-08-27 18:07:15 +00006206
Evan Cheng9eca5e82006-10-25 21:49:50 +00006207 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006208 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6209 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006210 V1IsSplat = isSplatVector(V1.getNode());
6211 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006212
Chris Lattner8a594482007-11-25 00:24:49 +00006213 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006214 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006215 Op = CommuteVectorShuffle(SVOp, DAG);
6216 SVOp = cast<ShuffleVectorSDNode>(Op);
6217 V1 = SVOp->getOperand(0);
6218 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006219 std::swap(V1IsSplat, V2IsSplat);
6220 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006221 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006222 }
6223
Nate Begeman9008ca62009-04-27 18:41:29 +00006224 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6225 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006226 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006227 return V1;
6228 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6229 // the instruction selector will not match, so get a canonical MOVL with
6230 // swapped operands to undo the commute.
6231 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006232 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006233
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006234 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006235 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006236
6237 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006238 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006239
Evan Cheng9bbbb982006-10-25 20:48:19 +00006240 if (V2IsSplat) {
6241 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006242 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006243 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006244 SDValue NewMask = NormalizeMask(SVOp, DAG);
6245 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6246 if (NSVOp != SVOp) {
6247 if (X86::isUNPCKLMask(NSVOp, true)) {
6248 return NewMask;
6249 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6250 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006251 }
6252 }
6253 }
6254
Evan Cheng9eca5e82006-10-25 21:49:50 +00006255 if (Commuted) {
6256 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006257 // FIXME: this seems wrong.
6258 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6259 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006260
6261 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006262 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006263
6264 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006265 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006266 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006267
Nate Begeman9008ca62009-04-27 18:41:29 +00006268 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006269 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006270 return CommuteVectorShuffle(SVOp, DAG);
6271
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006272 // The checks below are all present in isShuffleMaskLegal, but they are
6273 // inlined here right now to enable us to directly emit target specific
6274 // nodes, and remove one by one until they don't return Op anymore.
6275 SmallVector<int, 16> M;
6276 SVOp->getMask(M);
6277
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006278 if (isPALIGNRMask(M, VT, HasSSSE3))
6279 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6280 X86::getShufflePALIGNRImmediate(SVOp),
6281 DAG);
6282
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006283 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6284 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006285 if (VT == MVT::v2f64)
6286 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006287 if (VT == MVT::v2i64)
6288 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6289 }
6290
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006291 if (isPSHUFHWMask(M, VT))
6292 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6293 X86::getShufflePSHUFHWImmediate(SVOp),
6294 DAG);
6295
6296 if (isPSHUFLWMask(M, VT))
6297 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6298 X86::getShufflePSHUFLWImmediate(SVOp),
6299 DAG);
6300
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006301 if (isSHUFPMask(M, VT)) {
6302 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6303 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6304 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6305 TargetMask, DAG);
6306 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6307 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6308 TargetMask, DAG);
6309 }
6310
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006311 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006312 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006313 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006314 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006315
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006316 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006317 // Generate target specific nodes for 128 or 256-bit shuffles only
6318 // supported in the AVX instruction set.
6319 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006320
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006321 // Handle VPERMILPS* permutations
6322 if (isVPERMILPSMask(M, VT, Subtarget))
6323 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6324 getShuffleVPERMILPSImmediate(SVOp), DAG);
6325
6326 // Handle VPERMILPD* permutations
6327 if (isVPERMILPDMask(M, VT, Subtarget))
6328 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6329 getShuffleVPERMILPDImmediate(SVOp), DAG);
6330
6331 //===--------------------------------------------------------------------===//
6332 // Since no target specific shuffle was selected for this generic one,
6333 // lower it into other known shuffles. FIXME: this isn't true yet, but
6334 // this is the plan.
6335 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006336
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006337 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6338 if (VT == MVT::v8i16) {
6339 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6340 if (NewOp.getNode())
6341 return NewOp;
6342 }
6343
6344 if (VT == MVT::v16i8) {
6345 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6346 if (NewOp.getNode())
6347 return NewOp;
6348 }
6349
6350 // Handle all 128-bit wide vectors with 4 elements, and match them with
6351 // several different shuffle types.
6352 if (NumElems == 4 && VT.getSizeInBits() == 128)
6353 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6354
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006355 // Handle general 256-bit shuffles
6356 if (VT.is256BitVector())
6357 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6358
Dan Gohman475871a2008-07-27 21:46:04 +00006359 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006360}
6361
Dan Gohman475871a2008-07-27 21:46:04 +00006362SDValue
6363X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006364 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006365 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006366 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006367
6368 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6369 return SDValue();
6370
Duncan Sands83ec4b62008-06-06 12:08:01 +00006371 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006372 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006373 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006374 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006375 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006376 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006377 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006378 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6379 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6380 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006381 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6382 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006383 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006384 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006385 Op.getOperand(0)),
6386 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006387 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006388 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006389 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006390 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006391 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006392 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006393 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6394 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006395 // result has a single use which is a store or a bitcast to i32. And in
6396 // the case of a store, it's not worth it if the index is a constant 0,
6397 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006398 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006399 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006400 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006401 if ((User->getOpcode() != ISD::STORE ||
6402 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6403 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006404 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006405 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006406 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006407 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006408 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006409 Op.getOperand(0)),
6410 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006411 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006412 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006413 // ExtractPS works with constant index.
6414 if (isa<ConstantSDNode>(Op.getOperand(1)))
6415 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006416 }
Dan Gohman475871a2008-07-27 21:46:04 +00006417 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006418}
6419
6420
Dan Gohman475871a2008-07-27 21:46:04 +00006421SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006422X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6423 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006424 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006425 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006426
David Greene74a579d2011-02-10 16:57:36 +00006427 SDValue Vec = Op.getOperand(0);
6428 EVT VecVT = Vec.getValueType();
6429
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006430 // If this is a 256-bit vector result, first extract the 128-bit vector and
6431 // then extract the element from the 128-bit vector.
6432 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006433 DebugLoc dl = Op.getNode()->getDebugLoc();
6434 unsigned NumElems = VecVT.getVectorNumElements();
6435 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006436 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6437
6438 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006439 bool Upper = IdxVal >= NumElems/2;
6440 Vec = Extract128BitVector(Vec,
6441 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006442
David Greene74a579d2011-02-10 16:57:36 +00006443 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006444 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006445 }
6446
6447 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6448
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006449 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006450 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006451 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006452 return Res;
6453 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006454
Owen Andersone50ed302009-08-10 22:56:29 +00006455 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006456 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006457 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006458 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006459 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006460 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006461 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006462 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6463 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006464 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006465 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006466 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006467 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006468 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006469 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006470 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006471 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006472 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006473 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006474 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006475 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006476 if (Idx == 0)
6477 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006478
Evan Cheng0db9fe62006-04-25 20:13:52 +00006479 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006480 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006481 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006482 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006483 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006484 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006485 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006486 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006487 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6488 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6489 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006490 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006491 if (Idx == 0)
6492 return Op;
6493
6494 // UNPCKHPD the element to the lowest double word, then movsd.
6495 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6496 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006497 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006498 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006499 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006500 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006501 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006502 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006503 }
6504
Dan Gohman475871a2008-07-27 21:46:04 +00006505 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006506}
6507
Dan Gohman475871a2008-07-27 21:46:04 +00006508SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006509X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6510 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006511 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006512 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006513 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006514
Dan Gohman475871a2008-07-27 21:46:04 +00006515 SDValue N0 = Op.getOperand(0);
6516 SDValue N1 = Op.getOperand(1);
6517 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006518
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006519 if (VT.getSizeInBits() == 256)
6520 return SDValue();
6521
Dan Gohman8a55ce42009-09-23 21:02:20 +00006522 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006523 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006524 unsigned Opc;
6525 if (VT == MVT::v8i16)
6526 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006527 else if (VT == MVT::v16i8)
6528 Opc = X86ISD::PINSRB;
6529 else
6530 Opc = X86ISD::PINSRB;
6531
Nate Begeman14d12ca2008-02-11 04:19:36 +00006532 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6533 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006534 if (N1.getValueType() != MVT::i32)
6535 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6536 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006537 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006538 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006539 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006540 // Bits [7:6] of the constant are the source select. This will always be
6541 // zero here. The DAG Combiner may combine an extract_elt index into these
6542 // bits. For example (insert (extract, 3), 2) could be matched by putting
6543 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006544 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006545 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006546 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006547 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006548 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006549 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006550 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006551 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006552 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006553 // PINSR* works with constant index.
6554 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006555 }
Dan Gohman475871a2008-07-27 21:46:04 +00006556 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006557}
6558
Dan Gohman475871a2008-07-27 21:46:04 +00006559SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006560X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006561 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006562 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006563
David Greene6b381262011-02-09 15:32:06 +00006564 DebugLoc dl = Op.getDebugLoc();
6565 SDValue N0 = Op.getOperand(0);
6566 SDValue N1 = Op.getOperand(1);
6567 SDValue N2 = Op.getOperand(2);
6568
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006569 // If this is a 256-bit vector result, first extract the 128-bit vector,
6570 // insert the element into the extracted half and then place it back.
6571 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006572 if (!isa<ConstantSDNode>(N2))
6573 return SDValue();
6574
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006575 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006576 unsigned NumElems = VT.getVectorNumElements();
6577 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006578 bool Upper = IdxVal >= NumElems/2;
6579 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6580 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006581
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006582 // Insert the element into the desired half.
6583 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6584 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006585
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006586 // Insert the changed part back to the 256-bit vector
6587 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006588 }
6589
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006590 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006591 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6592
Dan Gohman8a55ce42009-09-23 21:02:20 +00006593 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006594 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006595
Dan Gohman8a55ce42009-09-23 21:02:20 +00006596 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006597 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6598 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006599 if (N1.getValueType() != MVT::i32)
6600 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6601 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006602 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006603 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006604 }
Dan Gohman475871a2008-07-27 21:46:04 +00006605 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006606}
6607
Dan Gohman475871a2008-07-27 21:46:04 +00006608SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006609X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006610 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006611 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006612 EVT OpVT = Op.getValueType();
6613
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006614 // If this is a 256-bit vector result, first insert into a 128-bit
6615 // vector and then insert into the 256-bit vector.
6616 if (OpVT.getSizeInBits() > 128) {
6617 // Insert into a 128-bit vector.
6618 EVT VT128 = EVT::getVectorVT(*Context,
6619 OpVT.getVectorElementType(),
6620 OpVT.getVectorNumElements() / 2);
6621
6622 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6623
6624 // Insert the 128-bit vector.
6625 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6626 DAG.getConstant(0, MVT::i32),
6627 DAG, dl);
6628 }
6629
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006630 if (Op.getValueType() == MVT::v1i64 &&
6631 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006632 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006633
Owen Anderson825b72b2009-08-11 20:47:22 +00006634 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006635 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6636 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006637 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006638 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006639}
6640
David Greene91585092011-01-26 15:38:49 +00006641// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6642// a simple subregister reference or explicit instructions to grab
6643// upper bits of a vector.
6644SDValue
6645X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6646 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006647 DebugLoc dl = Op.getNode()->getDebugLoc();
6648 SDValue Vec = Op.getNode()->getOperand(0);
6649 SDValue Idx = Op.getNode()->getOperand(1);
6650
6651 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6652 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6653 return Extract128BitVector(Vec, Idx, DAG, dl);
6654 }
David Greene91585092011-01-26 15:38:49 +00006655 }
6656 return SDValue();
6657}
6658
David Greenecfe33c42011-01-26 19:13:22 +00006659// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6660// simple superregister reference or explicit instructions to insert
6661// the upper bits of a vector.
6662SDValue
6663X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6664 if (Subtarget->hasAVX()) {
6665 DebugLoc dl = Op.getNode()->getDebugLoc();
6666 SDValue Vec = Op.getNode()->getOperand(0);
6667 SDValue SubVec = Op.getNode()->getOperand(1);
6668 SDValue Idx = Op.getNode()->getOperand(2);
6669
6670 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6671 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006672 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006673 }
6674 }
6675 return SDValue();
6676}
6677
Bill Wendling056292f2008-09-16 21:48:12 +00006678// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6679// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6680// one of the above mentioned nodes. It has to be wrapped because otherwise
6681// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6682// be used to form addressing mode. These wrapped nodes will be selected
6683// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006684SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006685X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006686 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006687
Chris Lattner41621a22009-06-26 19:22:52 +00006688 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6689 // global base reg.
6690 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006691 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006692 CodeModel::Model M = getTargetMachine().getCodeModel();
6693
Chris Lattner4f066492009-07-11 20:29:19 +00006694 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006695 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006696 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006697 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006698 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006699 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006700 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006701
Evan Cheng1606e8e2009-03-13 07:51:59 +00006702 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006703 CP->getAlignment(),
6704 CP->getOffset(), OpFlag);
6705 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006706 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006707 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006708 if (OpFlag) {
6709 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006710 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006711 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006712 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006713 }
6714
6715 return Result;
6716}
6717
Dan Gohmand858e902010-04-17 15:26:15 +00006718SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006719 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006720
Chris Lattner18c59872009-06-27 04:16:01 +00006721 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6722 // global base reg.
6723 unsigned char OpFlag = 0;
6724 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006725 CodeModel::Model M = getTargetMachine().getCodeModel();
6726
Chris Lattner4f066492009-07-11 20:29:19 +00006727 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006728 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006729 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006730 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006731 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006732 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006733 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006734
Chris Lattner18c59872009-06-27 04:16:01 +00006735 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6736 OpFlag);
6737 DebugLoc DL = JT->getDebugLoc();
6738 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006739
Chris Lattner18c59872009-06-27 04:16:01 +00006740 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006741 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006742 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6743 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006744 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006745 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006746
Chris Lattner18c59872009-06-27 04:16:01 +00006747 return Result;
6748}
6749
6750SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006751X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006752 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006753
Chris Lattner18c59872009-06-27 04:16:01 +00006754 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6755 // global base reg.
6756 unsigned char OpFlag = 0;
6757 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006758 CodeModel::Model M = getTargetMachine().getCodeModel();
6759
Chris Lattner4f066492009-07-11 20:29:19 +00006760 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006761 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006762 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006763 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006764 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006765 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006766 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006767
Chris Lattner18c59872009-06-27 04:16:01 +00006768 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006769
Chris Lattner18c59872009-06-27 04:16:01 +00006770 DebugLoc DL = Op.getDebugLoc();
6771 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006772
6773
Chris Lattner18c59872009-06-27 04:16:01 +00006774 // With PIC, the address is actually $g + Offset.
6775 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006776 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006777 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6778 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006779 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006780 Result);
6781 }
Eric Christopherfd179292009-08-27 18:07:15 +00006782
Chris Lattner18c59872009-06-27 04:16:01 +00006783 return Result;
6784}
6785
Dan Gohman475871a2008-07-27 21:46:04 +00006786SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006787X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006788 // Create the TargetBlockAddressAddress node.
6789 unsigned char OpFlags =
6790 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006791 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006792 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006793 DebugLoc dl = Op.getDebugLoc();
6794 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6795 /*isTarget=*/true, OpFlags);
6796
Dan Gohmanf705adb2009-10-30 01:28:02 +00006797 if (Subtarget->isPICStyleRIPRel() &&
6798 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006799 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6800 else
6801 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006802
Dan Gohman29cbade2009-11-20 23:18:13 +00006803 // With PIC, the address is actually $g + Offset.
6804 if (isGlobalRelativeToPICBase(OpFlags)) {
6805 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6806 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6807 Result);
6808 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006809
6810 return Result;
6811}
6812
6813SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006814X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006815 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006816 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006817 // Create the TargetGlobalAddress node, folding in the constant
6818 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006819 unsigned char OpFlags =
6820 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006821 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006822 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006823 if (OpFlags == X86II::MO_NO_FLAG &&
6824 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006825 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006826 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006827 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006828 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006829 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006830 }
Eric Christopherfd179292009-08-27 18:07:15 +00006831
Chris Lattner4f066492009-07-11 20:29:19 +00006832 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006833 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006834 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6835 else
6836 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006837
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006838 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006839 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006840 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6841 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006842 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006843 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006844
Chris Lattner36c25012009-07-10 07:34:39 +00006845 // For globals that require a load from a stub to get the address, emit the
6846 // load.
6847 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006848 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006849 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006850
Dan Gohman6520e202008-10-18 02:06:02 +00006851 // If there was a non-zero offset that we didn't fold, create an explicit
6852 // addition for it.
6853 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006854 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006855 DAG.getConstant(Offset, getPointerTy()));
6856
Evan Cheng0db9fe62006-04-25 20:13:52 +00006857 return Result;
6858}
6859
Evan Chengda43bcf2008-09-24 00:05:32 +00006860SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006861X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006862 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006863 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006864 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006865}
6866
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006867static SDValue
6868GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006869 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006870 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006871 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006872 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006873 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006874 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006875 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006876 GA->getOffset(),
6877 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006878 if (InFlag) {
6879 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006880 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006881 } else {
6882 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006883 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006884 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006885
6886 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006887 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006888
Rafael Espindola15f1b662009-04-24 12:59:40 +00006889 SDValue Flag = Chain.getValue(1);
6890 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006891}
6892
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006893// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006894static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006895LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006896 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006897 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006898 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6899 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006900 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006901 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006902 InFlag = Chain.getValue(1);
6903
Chris Lattnerb903bed2009-06-26 21:20:29 +00006904 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006905}
6906
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006907// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006908static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006909LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006910 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006911 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6912 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006913}
6914
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006915// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6916// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006917static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006918 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006919 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006920 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006921
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006922 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6923 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6924 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006925
Michael J. Spencerec38de22010-10-10 22:04:20 +00006926 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006927 DAG.getIntPtrConstant(0),
6928 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006929
Chris Lattnerb903bed2009-06-26 21:20:29 +00006930 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006931 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6932 // initialexec.
6933 unsigned WrapperKind = X86ISD::Wrapper;
6934 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006935 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006936 } else if (is64Bit) {
6937 assert(model == TLSModel::InitialExec);
6938 OperandFlags = X86II::MO_GOTTPOFF;
6939 WrapperKind = X86ISD::WrapperRIP;
6940 } else {
6941 assert(model == TLSModel::InitialExec);
6942 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006943 }
Eric Christopherfd179292009-08-27 18:07:15 +00006944
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006945 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6946 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006947 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006948 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006949 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006950 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006951
Rafael Espindola9a580232009-02-27 13:37:18 +00006952 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006953 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006954 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006955
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006956 // The address of the thread local variable is the add of the thread
6957 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006958 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006959}
6960
Dan Gohman475871a2008-07-27 21:46:04 +00006961SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006962X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006963
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006964 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006965 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006966
Eric Christopher30ef0e52010-06-03 04:07:48 +00006967 if (Subtarget->isTargetELF()) {
6968 // TODO: implement the "local dynamic" model
6969 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006970
Eric Christopher30ef0e52010-06-03 04:07:48 +00006971 // If GV is an alias then use the aliasee for determining
6972 // thread-localness.
6973 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6974 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006975
6976 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006977 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006978
Eric Christopher30ef0e52010-06-03 04:07:48 +00006979 switch (model) {
6980 case TLSModel::GeneralDynamic:
6981 case TLSModel::LocalDynamic: // not implemented
6982 if (Subtarget->is64Bit())
6983 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6984 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006985
Eric Christopher30ef0e52010-06-03 04:07:48 +00006986 case TLSModel::InitialExec:
6987 case TLSModel::LocalExec:
6988 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6989 Subtarget->is64Bit());
6990 }
6991 } else if (Subtarget->isTargetDarwin()) {
6992 // Darwin only has one model of TLS. Lower to that.
6993 unsigned char OpFlag = 0;
6994 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6995 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006996
Eric Christopher30ef0e52010-06-03 04:07:48 +00006997 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6998 // global base reg.
6999 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7000 !Subtarget->is64Bit();
7001 if (PIC32)
7002 OpFlag = X86II::MO_TLVP_PIC_BASE;
7003 else
7004 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007005 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007006 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007007 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007008 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007009 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007010
Eric Christopher30ef0e52010-06-03 04:07:48 +00007011 // With PIC32, the address is actually $g + Offset.
7012 if (PIC32)
7013 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7014 DAG.getNode(X86ISD::GlobalBaseReg,
7015 DebugLoc(), getPointerTy()),
7016 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007017
Eric Christopher30ef0e52010-06-03 04:07:48 +00007018 // Lowering the machine isd will make sure everything is in the right
7019 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007020 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007021 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007022 SDValue Args[] = { Chain, Offset };
7023 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007024
Eric Christopher30ef0e52010-06-03 04:07:48 +00007025 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7026 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7027 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007028
Eric Christopher30ef0e52010-06-03 04:07:48 +00007029 // And our return value (tls address) is in the standard call return value
7030 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007031 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7032 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007033 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007034
Eric Christopher30ef0e52010-06-03 04:07:48 +00007035 assert(false &&
7036 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007037
Torok Edwinc23197a2009-07-14 16:55:14 +00007038 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007039 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007040}
7041
Evan Cheng0db9fe62006-04-25 20:13:52 +00007042
Nadav Rotem43012222011-05-11 08:12:09 +00007043/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007044/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007045SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007046 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007047 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007048 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007049 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007050 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007051 SDValue ShOpLo = Op.getOperand(0);
7052 SDValue ShOpHi = Op.getOperand(1);
7053 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007054 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007055 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007056 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007057
Dan Gohman475871a2008-07-27 21:46:04 +00007058 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007059 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007060 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7061 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007062 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007063 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7064 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007065 }
Evan Chenge3413162006-01-09 18:33:28 +00007066
Owen Anderson825b72b2009-08-11 20:47:22 +00007067 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7068 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007069 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007070 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007071
Dan Gohman475871a2008-07-27 21:46:04 +00007072 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007073 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007074 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7075 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007076
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007077 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007078 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7079 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007080 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007081 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7082 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007083 }
7084
Dan Gohman475871a2008-07-27 21:46:04 +00007085 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007086 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007087}
Evan Chenga3195e82006-01-12 22:54:21 +00007088
Dan Gohmand858e902010-04-17 15:26:15 +00007089SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7090 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007091 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007092
Dale Johannesen0488fb62010-09-30 23:57:10 +00007093 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007094 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007095
Owen Anderson825b72b2009-08-11 20:47:22 +00007096 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007097 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007098
Eli Friedman36df4992009-05-27 00:47:34 +00007099 // These are really Legal; return the operand so the caller accepts it as
7100 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007101 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007102 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007103 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007104 Subtarget->is64Bit()) {
7105 return Op;
7106 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007107
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007108 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007109 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007110 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007111 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007112 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007113 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007114 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007115 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007116 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007117 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7118}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007119
Owen Andersone50ed302009-08-10 22:56:29 +00007120SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007121 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007122 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007123 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007124 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007125 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007126 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007127 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007128 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007129 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007130 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007131
Chris Lattner492a43e2010-09-22 01:28:21 +00007132 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007133
Stuart Hastings84be9582011-06-02 15:57:11 +00007134 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7135 MachineMemOperand *MMO;
7136 if (FI) {
7137 int SSFI = FI->getIndex();
7138 MMO =
7139 DAG.getMachineFunction()
7140 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7141 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7142 } else {
7143 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7144 StackSlot = StackSlot.getOperand(1);
7145 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007146 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007147 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7148 X86ISD::FILD, DL,
7149 Tys, Ops, array_lengthof(Ops),
7150 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007151
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007152 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007153 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007154 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007155
7156 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7157 // shouldn't be necessary except that RFP cannot be live across
7158 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007159 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007160 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7161 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007162 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007163 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007164 SDValue Ops[] = {
7165 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7166 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007167 MachineMemOperand *MMO =
7168 DAG.getMachineFunction()
7169 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007170 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007171
Chris Lattner492a43e2010-09-22 01:28:21 +00007172 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7173 Ops, array_lengthof(Ops),
7174 Op.getValueType(), MMO);
7175 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007176 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007177 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007178 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007179
Evan Cheng0db9fe62006-04-25 20:13:52 +00007180 return Result;
7181}
7182
Bill Wendling8b8a6362009-01-17 03:56:04 +00007183// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007184SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7185 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007186 // This algorithm is not obvious. Here it is in C code, more or less:
7187 /*
7188 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7189 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7190 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007191
Bill Wendling8b8a6362009-01-17 03:56:04 +00007192 // Copy ints to xmm registers.
7193 __m128i xh = _mm_cvtsi32_si128( hi );
7194 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007195
Bill Wendling8b8a6362009-01-17 03:56:04 +00007196 // Combine into low half of a single xmm register.
7197 __m128i x = _mm_unpacklo_epi32( xh, xl );
7198 __m128d d;
7199 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007200
Bill Wendling8b8a6362009-01-17 03:56:04 +00007201 // Merge in appropriate exponents to give the integer bits the right
7202 // magnitude.
7203 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007204
Bill Wendling8b8a6362009-01-17 03:56:04 +00007205 // Subtract away the biases to deal with the IEEE-754 double precision
7206 // implicit 1.
7207 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007208
Bill Wendling8b8a6362009-01-17 03:56:04 +00007209 // All conversions up to here are exact. The correctly rounded result is
7210 // calculated using the current rounding mode using the following
7211 // horizontal add.
7212 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7213 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7214 // store doesn't really need to be here (except
7215 // maybe to zero the other double)
7216 return sd;
7217 }
7218 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007219
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007220 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007221 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007222
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007223 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007224 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007225 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7226 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7227 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7228 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007229 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007230 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007231
Bill Wendling8b8a6362009-01-17 03:56:04 +00007232 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007233 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007234 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007235 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007236 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007237 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007238 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007239
Owen Anderson825b72b2009-08-11 20:47:22 +00007240 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7241 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007242 Op.getOperand(0),
7243 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007244 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7245 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007246 Op.getOperand(0),
7247 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007248 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7249 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007250 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007251 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007252 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007253 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007254 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007255 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007256 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007257 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007258
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007259 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007260 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007261 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7262 DAG.getUNDEF(MVT::v2f64), ShufMask);
7263 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7264 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007265 DAG.getIntPtrConstant(0));
7266}
7267
Bill Wendling8b8a6362009-01-17 03:56:04 +00007268// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007269SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7270 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007271 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007272 // FP constant to bias correct the final result.
7273 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007274 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007275
7276 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007277 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007278 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007279
Owen Anderson825b72b2009-08-11 20:47:22 +00007280 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007281 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007282 DAG.getIntPtrConstant(0));
7283
7284 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007285 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007286 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007287 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007288 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007289 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007290 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007291 MVT::v2f64, Bias)));
7292 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007293 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007294 DAG.getIntPtrConstant(0));
7295
7296 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007297 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007298
7299 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007300 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007301
Owen Anderson825b72b2009-08-11 20:47:22 +00007302 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007303 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007304 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007305 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007306 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007307 }
7308
7309 // Handle final rounding.
7310 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007311}
7312
Dan Gohmand858e902010-04-17 15:26:15 +00007313SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7314 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007315 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007316 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007317
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007318 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007319 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7320 // the optimization here.
7321 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007322 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007323
Owen Andersone50ed302009-08-10 22:56:29 +00007324 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007325 EVT DstVT = Op.getValueType();
7326 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007327 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007328 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007329 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007330
7331 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007332 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007333 if (SrcVT == MVT::i32) {
7334 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7335 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7336 getPointerTy(), StackSlot, WordOff);
7337 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007338 StackSlot, MachinePointerInfo(),
7339 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007340 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007341 OffsetSlot, MachinePointerInfo(),
7342 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007343 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7344 return Fild;
7345 }
7346
7347 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7348 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007349 StackSlot, MachinePointerInfo(),
7350 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007351 // For i64 source, we need to add the appropriate power of 2 if the input
7352 // was negative. This is the same as the optimization in
7353 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7354 // we must be careful to do the computation in x87 extended precision, not
7355 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007356 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7357 MachineMemOperand *MMO =
7358 DAG.getMachineFunction()
7359 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7360 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007361
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007362 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7363 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007364 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7365 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007366
7367 APInt FF(32, 0x5F800000ULL);
7368
7369 // Check whether the sign bit is set.
7370 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7371 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7372 ISD::SETLT);
7373
7374 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7375 SDValue FudgePtr = DAG.getConstantPool(
7376 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7377 getPointerTy());
7378
7379 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7380 SDValue Zero = DAG.getIntPtrConstant(0);
7381 SDValue Four = DAG.getIntPtrConstant(4);
7382 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7383 Zero, Four);
7384 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7385
7386 // Load the value out, extending it from f32 to f80.
7387 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007388 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007389 FudgePtr, MachinePointerInfo::getConstantPool(),
7390 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007391 // Extend everything to 80 bits to force it to be done on x87.
7392 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7393 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007394}
7395
Dan Gohman475871a2008-07-27 21:46:04 +00007396std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007397FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007398 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007399
Owen Andersone50ed302009-08-10 22:56:29 +00007400 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007401
7402 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007403 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7404 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007405 }
7406
Owen Anderson825b72b2009-08-11 20:47:22 +00007407 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7408 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007409 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007410
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007411 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007412 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007413 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007414 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007415 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007416 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007417 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007418 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007419
Evan Cheng87c89352007-10-15 20:11:21 +00007420 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7421 // stack slot.
7422 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007423 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007424 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007425 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007426
Michael J. Spencerec38de22010-10-10 22:04:20 +00007427
7428
Evan Cheng0db9fe62006-04-25 20:13:52 +00007429 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007430 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007431 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007432 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7433 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7434 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007435 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007436
Dan Gohman475871a2008-07-27 21:46:04 +00007437 SDValue Chain = DAG.getEntryNode();
7438 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007439 EVT TheVT = Op.getOperand(0).getValueType();
7440 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007441 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007442 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007443 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007444 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007445 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007446 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007447 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007448 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007449
Chris Lattner492a43e2010-09-22 01:28:21 +00007450 MachineMemOperand *MMO =
7451 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7452 MachineMemOperand::MOLoad, MemSize, MemSize);
7453 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7454 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007455 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007456 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007457 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7458 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007459
Chris Lattner07290932010-09-22 01:05:16 +00007460 MachineMemOperand *MMO =
7461 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7462 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007463
Evan Cheng0db9fe62006-04-25 20:13:52 +00007464 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007465 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007466 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7467 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007468
Chris Lattner27a6c732007-11-24 07:07:01 +00007469 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007470}
7471
Dan Gohmand858e902010-04-17 15:26:15 +00007472SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7473 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007474 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007475 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007476
Eli Friedman948e95a2009-05-23 09:59:16 +00007477 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007478 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007479 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7480 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007481
Chris Lattner27a6c732007-11-24 07:07:01 +00007482 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007483 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007484 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007485}
7486
Dan Gohmand858e902010-04-17 15:26:15 +00007487SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7488 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007489 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7490 SDValue FIST = Vals.first, StackSlot = Vals.second;
7491 assert(FIST.getNode() && "Unexpected failure");
7492
7493 // Load the result.
7494 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007495 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007496}
7497
Dan Gohmand858e902010-04-17 15:26:15 +00007498SDValue X86TargetLowering::LowerFABS(SDValue Op,
7499 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007500 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007501 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007502 EVT VT = Op.getValueType();
7503 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007504 if (VT.isVector())
7505 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007506 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007507 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007508 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007509 CV.push_back(C);
7510 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007511 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007512 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007513 CV.push_back(C);
7514 CV.push_back(C);
7515 CV.push_back(C);
7516 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007517 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007518 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007519 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007520 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007521 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007522 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007523 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007524}
7525
Dan Gohmand858e902010-04-17 15:26:15 +00007526SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007527 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007528 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007529 EVT VT = Op.getValueType();
7530 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007531 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007532 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007533 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007534 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007535 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007536 CV.push_back(C);
7537 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007538 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007539 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007540 CV.push_back(C);
7541 CV.push_back(C);
7542 CV.push_back(C);
7543 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007544 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007545 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007546 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007547 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007548 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007549 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007550 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007551 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007552 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007553 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007554 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007555 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007556 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007557 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007558 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007559}
7560
Dan Gohmand858e902010-04-17 15:26:15 +00007561SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007562 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007563 SDValue Op0 = Op.getOperand(0);
7564 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007565 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007566 EVT VT = Op.getValueType();
7567 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007568
7569 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007570 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007571 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007572 SrcVT = VT;
7573 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007574 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007575 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007576 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007577 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007578 }
7579
7580 // At this point the operands and the result should have the same
7581 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007582
Evan Cheng68c47cb2007-01-05 07:55:56 +00007583 // First get the sign bit of second operand.
7584 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007585 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007586 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7587 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007588 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007589 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7590 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7591 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7592 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007593 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007594 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007595 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007596 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007597 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007598 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007599 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007600
7601 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007602 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007603 // Op0 is MVT::f32, Op1 is MVT::f64.
7604 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7605 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7606 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007607 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007608 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007609 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007610 }
7611
Evan Cheng73d6cf12007-01-05 21:37:56 +00007612 // Clear first operand sign bit.
7613 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007614 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007615 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7616 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007617 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007618 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7619 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7620 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7621 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007622 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007623 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007624 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007625 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007626 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007627 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007628 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007629
7630 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007631 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007632}
7633
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007634SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7635 SDValue N0 = Op.getOperand(0);
7636 DebugLoc dl = Op.getDebugLoc();
7637 EVT VT = Op.getValueType();
7638
7639 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7640 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7641 DAG.getConstant(1, VT));
7642 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7643}
7644
Dan Gohman076aee32009-03-04 19:44:21 +00007645/// Emit nodes that will be selected as "test Op0,Op0", or something
7646/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007647SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007648 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007649 DebugLoc dl = Op.getDebugLoc();
7650
Dan Gohman31125812009-03-07 01:58:32 +00007651 // CF and OF aren't always set the way we want. Determine which
7652 // of these we need.
7653 bool NeedCF = false;
7654 bool NeedOF = false;
7655 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007656 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007657 case X86::COND_A: case X86::COND_AE:
7658 case X86::COND_B: case X86::COND_BE:
7659 NeedCF = true;
7660 break;
7661 case X86::COND_G: case X86::COND_GE:
7662 case X86::COND_L: case X86::COND_LE:
7663 case X86::COND_O: case X86::COND_NO:
7664 NeedOF = true;
7665 break;
Dan Gohman31125812009-03-07 01:58:32 +00007666 }
7667
Dan Gohman076aee32009-03-04 19:44:21 +00007668 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007669 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7670 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007671 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7672 // Emit a CMP with 0, which is the TEST pattern.
7673 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7674 DAG.getConstant(0, Op.getValueType()));
7675
7676 unsigned Opcode = 0;
7677 unsigned NumOperands = 0;
7678 switch (Op.getNode()->getOpcode()) {
7679 case ISD::ADD:
7680 // Due to an isel shortcoming, be conservative if this add is likely to be
7681 // selected as part of a load-modify-store instruction. When the root node
7682 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7683 // uses of other nodes in the match, such as the ADD in this case. This
7684 // leads to the ADD being left around and reselected, with the result being
7685 // two adds in the output. Alas, even if none our users are stores, that
7686 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7687 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7688 // climbing the DAG back to the root, and it doesn't seem to be worth the
7689 // effort.
7690 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007691 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007692 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7693 goto default_case;
7694
7695 if (ConstantSDNode *C =
7696 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7697 // An add of one will be selected as an INC.
7698 if (C->getAPIntValue() == 1) {
7699 Opcode = X86ISD::INC;
7700 NumOperands = 1;
7701 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007702 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007703
7704 // An add of negative one (subtract of one) will be selected as a DEC.
7705 if (C->getAPIntValue().isAllOnesValue()) {
7706 Opcode = X86ISD::DEC;
7707 NumOperands = 1;
7708 break;
7709 }
Dan Gohman076aee32009-03-04 19:44:21 +00007710 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007711
7712 // Otherwise use a regular EFLAGS-setting add.
7713 Opcode = X86ISD::ADD;
7714 NumOperands = 2;
7715 break;
7716 case ISD::AND: {
7717 // If the primary and result isn't used, don't bother using X86ISD::AND,
7718 // because a TEST instruction will be better.
7719 bool NonFlagUse = false;
7720 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7721 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7722 SDNode *User = *UI;
7723 unsigned UOpNo = UI.getOperandNo();
7724 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7725 // Look pass truncate.
7726 UOpNo = User->use_begin().getOperandNo();
7727 User = *User->use_begin();
7728 }
7729
7730 if (User->getOpcode() != ISD::BRCOND &&
7731 User->getOpcode() != ISD::SETCC &&
7732 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7733 NonFlagUse = true;
7734 break;
7735 }
Dan Gohman076aee32009-03-04 19:44:21 +00007736 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007737
7738 if (!NonFlagUse)
7739 break;
7740 }
7741 // FALL THROUGH
7742 case ISD::SUB:
7743 case ISD::OR:
7744 case ISD::XOR:
7745 // Due to the ISEL shortcoming noted above, be conservative if this op is
7746 // likely to be selected as part of a load-modify-store instruction.
7747 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7748 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7749 if (UI->getOpcode() == ISD::STORE)
7750 goto default_case;
7751
7752 // Otherwise use a regular EFLAGS-setting instruction.
7753 switch (Op.getNode()->getOpcode()) {
7754 default: llvm_unreachable("unexpected operator!");
7755 case ISD::SUB: Opcode = X86ISD::SUB; break;
7756 case ISD::OR: Opcode = X86ISD::OR; break;
7757 case ISD::XOR: Opcode = X86ISD::XOR; break;
7758 case ISD::AND: Opcode = X86ISD::AND; break;
7759 }
7760
7761 NumOperands = 2;
7762 break;
7763 case X86ISD::ADD:
7764 case X86ISD::SUB:
7765 case X86ISD::INC:
7766 case X86ISD::DEC:
7767 case X86ISD::OR:
7768 case X86ISD::XOR:
7769 case X86ISD::AND:
7770 return SDValue(Op.getNode(), 1);
7771 default:
7772 default_case:
7773 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007774 }
7775
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007776 if (Opcode == 0)
7777 // Emit a CMP with 0, which is the TEST pattern.
7778 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7779 DAG.getConstant(0, Op.getValueType()));
7780
7781 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7782 SmallVector<SDValue, 4> Ops;
7783 for (unsigned i = 0; i != NumOperands; ++i)
7784 Ops.push_back(Op.getOperand(i));
7785
7786 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7787 DAG.ReplaceAllUsesWith(Op, New);
7788 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007789}
7790
7791/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7792/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007793SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007794 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007795 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7796 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007797 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007798
7799 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007800 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007801}
7802
Evan Chengd40d03e2010-01-06 19:38:29 +00007803/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7804/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007805SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7806 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007807 SDValue Op0 = And.getOperand(0);
7808 SDValue Op1 = And.getOperand(1);
7809 if (Op0.getOpcode() == ISD::TRUNCATE)
7810 Op0 = Op0.getOperand(0);
7811 if (Op1.getOpcode() == ISD::TRUNCATE)
7812 Op1 = Op1.getOperand(0);
7813
Evan Chengd40d03e2010-01-06 19:38:29 +00007814 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007815 if (Op1.getOpcode() == ISD::SHL)
7816 std::swap(Op0, Op1);
7817 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007818 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7819 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007820 // If we looked past a truncate, check that it's only truncating away
7821 // known zeros.
7822 unsigned BitWidth = Op0.getValueSizeInBits();
7823 unsigned AndBitWidth = And.getValueSizeInBits();
7824 if (BitWidth > AndBitWidth) {
7825 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7826 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7827 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7828 return SDValue();
7829 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007830 LHS = Op1;
7831 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007832 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007833 } else if (Op1.getOpcode() == ISD::Constant) {
7834 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7835 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007836 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7837 LHS = AndLHS.getOperand(0);
7838 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007839 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007840 }
Evan Cheng0488db92007-09-25 01:57:46 +00007841
Evan Chengd40d03e2010-01-06 19:38:29 +00007842 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007843 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007844 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007845 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007846 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007847 // Also promote i16 to i32 for performance / code size reason.
7848 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007849 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007850 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007851
Evan Chengd40d03e2010-01-06 19:38:29 +00007852 // If the operand types disagree, extend the shift amount to match. Since
7853 // BT ignores high bits (like shifts) we can use anyextend.
7854 if (LHS.getValueType() != RHS.getValueType())
7855 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007856
Evan Chengd40d03e2010-01-06 19:38:29 +00007857 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7858 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7859 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7860 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007861 }
7862
Evan Cheng54de3ea2010-01-05 06:52:31 +00007863 return SDValue();
7864}
7865
Dan Gohmand858e902010-04-17 15:26:15 +00007866SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007867 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7868 SDValue Op0 = Op.getOperand(0);
7869 SDValue Op1 = Op.getOperand(1);
7870 DebugLoc dl = Op.getDebugLoc();
7871 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7872
7873 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007874 // Lower (X & (1 << N)) == 0 to BT(X, N).
7875 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7876 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007877 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007878 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007879 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007880 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7881 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7882 if (NewSetCC.getNode())
7883 return NewSetCC;
7884 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007885
Chris Lattner481eebc2010-12-19 21:23:48 +00007886 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7887 // these.
7888 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007889 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007890 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7891 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007892
Chris Lattner481eebc2010-12-19 21:23:48 +00007893 // If the input is a setcc, then reuse the input setcc or use a new one with
7894 // the inverted condition.
7895 if (Op0.getOpcode() == X86ISD::SETCC) {
7896 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7897 bool Invert = (CC == ISD::SETNE) ^
7898 cast<ConstantSDNode>(Op1)->isNullValue();
7899 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007900
Evan Cheng2c755ba2010-02-27 07:36:59 +00007901 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007902 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7903 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7904 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007905 }
7906
Evan Chenge5b51ac2010-04-17 06:13:15 +00007907 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007908 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007909 if (X86CC == X86::COND_INVALID)
7910 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007911
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007912 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007913 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007914 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007915}
7916
Dan Gohmand858e902010-04-17 15:26:15 +00007917SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007918 SDValue Cond;
7919 SDValue Op0 = Op.getOperand(0);
7920 SDValue Op1 = Op.getOperand(1);
7921 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007922 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007923 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7924 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007925 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007926
7927 if (isFP) {
7928 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00007929 EVT EltVT = Op0.getValueType().getVectorElementType();
7930 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
7931
7932 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007933 bool Swap = false;
7934
7935 switch (SetCCOpcode) {
7936 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007937 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007938 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007939 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007940 case ISD::SETGT: Swap = true; // Fallthrough
7941 case ISD::SETLT:
7942 case ISD::SETOLT: SSECC = 1; break;
7943 case ISD::SETOGE:
7944 case ISD::SETGE: Swap = true; // Fallthrough
7945 case ISD::SETLE:
7946 case ISD::SETOLE: SSECC = 2; break;
7947 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007948 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007949 case ISD::SETNE: SSECC = 4; break;
7950 case ISD::SETULE: Swap = true;
7951 case ISD::SETUGE: SSECC = 5; break;
7952 case ISD::SETULT: Swap = true;
7953 case ISD::SETUGT: SSECC = 6; break;
7954 case ISD::SETO: SSECC = 7; break;
7955 }
7956 if (Swap)
7957 std::swap(Op0, Op1);
7958
Nate Begemanfb8ead02008-07-25 19:05:58 +00007959 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007960 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007961 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007962 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007963 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7964 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007965 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007966 }
7967 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007968 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007969 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7970 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007971 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007972 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007973 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007974 }
7975 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007976 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007977 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007978
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00007979 if (!isFP && VT.getSizeInBits() == 256)
7980 return SDValue();
7981
Nate Begeman30a0de92008-07-17 16:51:19 +00007982 // We are handling one of the integer comparisons here. Since SSE only has
7983 // GT and EQ comparisons for integer, swapping operands and multiple
7984 // operations may be required for some comparisons.
7985 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7986 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007987
Owen Anderson825b72b2009-08-11 20:47:22 +00007988 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007989 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007990 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007991 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007992 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7993 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007994 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007995
Nate Begeman30a0de92008-07-17 16:51:19 +00007996 switch (SetCCOpcode) {
7997 default: break;
7998 case ISD::SETNE: Invert = true;
7999 case ISD::SETEQ: Opc = EQOpc; break;
8000 case ISD::SETLT: Swap = true;
8001 case ISD::SETGT: Opc = GTOpc; break;
8002 case ISD::SETGE: Swap = true;
8003 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8004 case ISD::SETULT: Swap = true;
8005 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8006 case ISD::SETUGE: Swap = true;
8007 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8008 }
8009 if (Swap)
8010 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008011
Nate Begeman30a0de92008-07-17 16:51:19 +00008012 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8013 // bits of the inputs before performing those operations.
8014 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008015 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008016 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8017 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008018 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008019 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8020 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008021 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8022 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008023 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008024
Dale Johannesenace16102009-02-03 19:33:06 +00008025 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008026
8027 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008028 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008029 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008030
Nate Begeman30a0de92008-07-17 16:51:19 +00008031 return Result;
8032}
Evan Cheng0488db92007-09-25 01:57:46 +00008033
Evan Cheng370e5342008-12-03 08:38:43 +00008034// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008035static bool isX86LogicalCmp(SDValue Op) {
8036 unsigned Opc = Op.getNode()->getOpcode();
8037 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8038 return true;
8039 if (Op.getResNo() == 1 &&
8040 (Opc == X86ISD::ADD ||
8041 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008042 Opc == X86ISD::ADC ||
8043 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008044 Opc == X86ISD::SMUL ||
8045 Opc == X86ISD::UMUL ||
8046 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008047 Opc == X86ISD::DEC ||
8048 Opc == X86ISD::OR ||
8049 Opc == X86ISD::XOR ||
8050 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008051 return true;
8052
Chris Lattner9637d5b2010-12-05 07:49:54 +00008053 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8054 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008055
Dan Gohman076aee32009-03-04 19:44:21 +00008056 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008057}
8058
Chris Lattnera2b56002010-12-05 01:23:24 +00008059static bool isZero(SDValue V) {
8060 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8061 return C && C->isNullValue();
8062}
8063
Chris Lattner96908b12010-12-05 02:00:51 +00008064static bool isAllOnes(SDValue V) {
8065 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8066 return C && C->isAllOnesValue();
8067}
8068
Dan Gohmand858e902010-04-17 15:26:15 +00008069SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008070 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008071 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008072 SDValue Op1 = Op.getOperand(1);
8073 SDValue Op2 = Op.getOperand(2);
8074 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008075 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008076
Dan Gohman1a492952009-10-20 16:22:37 +00008077 if (Cond.getOpcode() == ISD::SETCC) {
8078 SDValue NewCond = LowerSETCC(Cond, DAG);
8079 if (NewCond.getNode())
8080 Cond = NewCond;
8081 }
Evan Cheng734503b2006-09-11 02:19:56 +00008082
Chris Lattnera2b56002010-12-05 01:23:24 +00008083 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008084 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008085 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008086 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008087 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008088 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8089 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008090 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008091
Chris Lattnera2b56002010-12-05 01:23:24 +00008092 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008093
8094 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008095 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8096 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008097
8098 SDValue CmpOp0 = Cmp.getOperand(0);
8099 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8100 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008101
Chris Lattner96908b12010-12-05 02:00:51 +00008102 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008103 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8104 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008105
Chris Lattner96908b12010-12-05 02:00:51 +00008106 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8107 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008108
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008109 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008110 if (N2C == 0 || !N2C->isNullValue())
8111 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8112 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008113 }
8114 }
8115
Chris Lattnera2b56002010-12-05 01:23:24 +00008116 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008117 if (Cond.getOpcode() == ISD::AND &&
8118 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8119 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008120 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008121 Cond = Cond.getOperand(0);
8122 }
8123
Evan Cheng3f41d662007-10-08 22:16:29 +00008124 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8125 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008126 if (Cond.getOpcode() == X86ISD::SETCC ||
8127 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008128 CC = Cond.getOperand(0);
8129
Dan Gohman475871a2008-07-27 21:46:04 +00008130 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008131 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008132 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008133
Evan Cheng3f41d662007-10-08 22:16:29 +00008134 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008135 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008136 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008137 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008138
Chris Lattnerd1980a52009-03-12 06:52:53 +00008139 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8140 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008141 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008142 addTest = false;
8143 }
8144 }
8145
8146 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008147 // Look pass the truncate.
8148 if (Cond.getOpcode() == ISD::TRUNCATE)
8149 Cond = Cond.getOperand(0);
8150
8151 // We know the result of AND is compared against zero. Try to match
8152 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008153 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008154 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008155 if (NewSetCC.getNode()) {
8156 CC = NewSetCC.getOperand(0);
8157 Cond = NewSetCC.getOperand(1);
8158 addTest = false;
8159 }
8160 }
8161 }
8162
8163 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008164 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008165 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008166 }
8167
Benjamin Kramere915ff32010-12-22 23:09:28 +00008168 // a < b ? -1 : 0 -> RES = ~setcc_carry
8169 // a < b ? 0 : -1 -> RES = setcc_carry
8170 // a >= b ? -1 : 0 -> RES = setcc_carry
8171 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8172 if (Cond.getOpcode() == X86ISD::CMP) {
8173 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8174
8175 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8176 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8177 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8178 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8179 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8180 return DAG.getNOT(DL, Res, Res.getValueType());
8181 return Res;
8182 }
8183 }
8184
Evan Cheng0488db92007-09-25 01:57:46 +00008185 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8186 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008187 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008188 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008189 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008190}
8191
Evan Cheng370e5342008-12-03 08:38:43 +00008192// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8193// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8194// from the AND / OR.
8195static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8196 Opc = Op.getOpcode();
8197 if (Opc != ISD::OR && Opc != ISD::AND)
8198 return false;
8199 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8200 Op.getOperand(0).hasOneUse() &&
8201 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8202 Op.getOperand(1).hasOneUse());
8203}
8204
Evan Cheng961d6d42009-02-02 08:19:07 +00008205// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8206// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008207static bool isXor1OfSetCC(SDValue Op) {
8208 if (Op.getOpcode() != ISD::XOR)
8209 return false;
8210 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8211 if (N1C && N1C->getAPIntValue() == 1) {
8212 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8213 Op.getOperand(0).hasOneUse();
8214 }
8215 return false;
8216}
8217
Dan Gohmand858e902010-04-17 15:26:15 +00008218SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008219 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008220 SDValue Chain = Op.getOperand(0);
8221 SDValue Cond = Op.getOperand(1);
8222 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008223 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008224 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008225
Dan Gohman1a492952009-10-20 16:22:37 +00008226 if (Cond.getOpcode() == ISD::SETCC) {
8227 SDValue NewCond = LowerSETCC(Cond, DAG);
8228 if (NewCond.getNode())
8229 Cond = NewCond;
8230 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008231#if 0
8232 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008233 else if (Cond.getOpcode() == X86ISD::ADD ||
8234 Cond.getOpcode() == X86ISD::SUB ||
8235 Cond.getOpcode() == X86ISD::SMUL ||
8236 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008237 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008238#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008239
Evan Chengad9c0a32009-12-15 00:53:42 +00008240 // Look pass (and (setcc_carry (cmp ...)), 1).
8241 if (Cond.getOpcode() == ISD::AND &&
8242 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8243 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008244 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008245 Cond = Cond.getOperand(0);
8246 }
8247
Evan Cheng3f41d662007-10-08 22:16:29 +00008248 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8249 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008250 if (Cond.getOpcode() == X86ISD::SETCC ||
8251 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008252 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008253
Dan Gohman475871a2008-07-27 21:46:04 +00008254 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008255 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008256 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008257 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008258 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008259 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008260 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008261 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008262 default: break;
8263 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008264 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008265 // These can only come from an arithmetic instruction with overflow,
8266 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008267 Cond = Cond.getNode()->getOperand(1);
8268 addTest = false;
8269 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008270 }
Evan Cheng0488db92007-09-25 01:57:46 +00008271 }
Evan Cheng370e5342008-12-03 08:38:43 +00008272 } else {
8273 unsigned CondOpc;
8274 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8275 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008276 if (CondOpc == ISD::OR) {
8277 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8278 // two branches instead of an explicit OR instruction with a
8279 // separate test.
8280 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008281 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008282 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008283 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008284 Chain, Dest, CC, Cmp);
8285 CC = Cond.getOperand(1).getOperand(0);
8286 Cond = Cmp;
8287 addTest = false;
8288 }
8289 } else { // ISD::AND
8290 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8291 // two branches instead of an explicit AND instruction with a
8292 // separate test. However, we only do this if this block doesn't
8293 // have a fall-through edge, because this requires an explicit
8294 // jmp when the condition is false.
8295 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008296 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008297 Op.getNode()->hasOneUse()) {
8298 X86::CondCode CCode =
8299 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8300 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008301 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008302 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008303 // Look for an unconditional branch following this conditional branch.
8304 // We need this because we need to reverse the successors in order
8305 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008306 if (User->getOpcode() == ISD::BR) {
8307 SDValue FalseBB = User->getOperand(1);
8308 SDNode *NewBR =
8309 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008310 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008311 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008312 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008313
Dale Johannesene4d209d2009-02-03 20:21:25 +00008314 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008315 Chain, Dest, CC, Cmp);
8316 X86::CondCode CCode =
8317 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8318 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008319 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008320 Cond = Cmp;
8321 addTest = false;
8322 }
8323 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008324 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008325 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8326 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8327 // It should be transformed during dag combiner except when the condition
8328 // is set by a arithmetics with overflow node.
8329 X86::CondCode CCode =
8330 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8331 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008332 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008333 Cond = Cond.getOperand(0).getOperand(1);
8334 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008335 }
Evan Cheng0488db92007-09-25 01:57:46 +00008336 }
8337
8338 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008339 // Look pass the truncate.
8340 if (Cond.getOpcode() == ISD::TRUNCATE)
8341 Cond = Cond.getOperand(0);
8342
8343 // We know the result of AND is compared against zero. Try to match
8344 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008345 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008346 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8347 if (NewSetCC.getNode()) {
8348 CC = NewSetCC.getOperand(0);
8349 Cond = NewSetCC.getOperand(1);
8350 addTest = false;
8351 }
8352 }
8353 }
8354
8355 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008356 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008357 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008358 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008359 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008360 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008361}
8362
Anton Korobeynikove060b532007-04-17 19:34:00 +00008363
8364// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8365// Calls to _alloca is needed to probe the stack when allocating more than 4k
8366// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8367// that the guard pages used by the OS virtual memory manager are allocated in
8368// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008369SDValue
8370X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008371 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008372 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008373 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008374 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008375 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008376
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008377 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008378 SDValue Chain = Op.getOperand(0);
8379 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008380 // FIXME: Ensure alignment here
8381
Dan Gohman475871a2008-07-27 21:46:04 +00008382 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008383
Owen Anderson825b72b2009-08-11 20:47:22 +00008384 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008385 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008386
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008387 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008388 Flag = Chain.getValue(1);
8389
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008390 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008391
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008392 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008393 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008394
Dale Johannesendd64c412009-02-04 00:33:20 +00008395 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008396
Dan Gohman475871a2008-07-27 21:46:04 +00008397 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008398 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008399}
8400
Dan Gohmand858e902010-04-17 15:26:15 +00008401SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008402 MachineFunction &MF = DAG.getMachineFunction();
8403 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8404
Dan Gohman69de1932008-02-06 22:27:42 +00008405 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008406 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008407
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008408 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008409 // vastart just stores the address of the VarArgsFrameIndex slot into the
8410 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008411 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8412 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008413 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8414 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008415 }
8416
8417 // __va_list_tag:
8418 // gp_offset (0 - 6 * 8)
8419 // fp_offset (48 - 48 + 8 * 16)
8420 // overflow_arg_area (point to parameters coming in memory).
8421 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008422 SmallVector<SDValue, 8> MemOps;
8423 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008424 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008425 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008426 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8427 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008428 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008429 MemOps.push_back(Store);
8430
8431 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008432 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008433 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008434 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008435 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8436 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008437 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008438 MemOps.push_back(Store);
8439
8440 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008441 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008442 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008443 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8444 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008445 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8446 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008447 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008448 MemOps.push_back(Store);
8449
8450 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008451 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008452 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008453 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8454 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008455 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8456 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008457 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008458 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008459 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008460}
8461
Dan Gohmand858e902010-04-17 15:26:15 +00008462SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008463 assert(Subtarget->is64Bit() &&
8464 "LowerVAARG only handles 64-bit va_arg!");
8465 assert((Subtarget->isTargetLinux() ||
8466 Subtarget->isTargetDarwin()) &&
8467 "Unhandled target in LowerVAARG");
8468 assert(Op.getNode()->getNumOperands() == 4);
8469 SDValue Chain = Op.getOperand(0);
8470 SDValue SrcPtr = Op.getOperand(1);
8471 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8472 unsigned Align = Op.getConstantOperandVal(3);
8473 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008474
Dan Gohman320afb82010-10-12 18:00:49 +00008475 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008476 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008477 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8478 uint8_t ArgMode;
8479
8480 // Decide which area this value should be read from.
8481 // TODO: Implement the AMD64 ABI in its entirety. This simple
8482 // selection mechanism works only for the basic types.
8483 if (ArgVT == MVT::f80) {
8484 llvm_unreachable("va_arg for f80 not yet implemented");
8485 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8486 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8487 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8488 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8489 } else {
8490 llvm_unreachable("Unhandled argument type in LowerVAARG");
8491 }
8492
8493 if (ArgMode == 2) {
8494 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008495 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008496 !(DAG.getMachineFunction()
8497 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008498 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008499 }
8500
8501 // Insert VAARG_64 node into the DAG
8502 // VAARG_64 returns two values: Variable Argument Address, Chain
8503 SmallVector<SDValue, 11> InstOps;
8504 InstOps.push_back(Chain);
8505 InstOps.push_back(SrcPtr);
8506 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8507 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8508 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8509 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8510 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8511 VTs, &InstOps[0], InstOps.size(),
8512 MVT::i64,
8513 MachinePointerInfo(SV),
8514 /*Align=*/0,
8515 /*Volatile=*/false,
8516 /*ReadMem=*/true,
8517 /*WriteMem=*/true);
8518 Chain = VAARG.getValue(1);
8519
8520 // Load the next argument and return it
8521 return DAG.getLoad(ArgVT, dl,
8522 Chain,
8523 VAARG,
8524 MachinePointerInfo(),
8525 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008526}
8527
Dan Gohmand858e902010-04-17 15:26:15 +00008528SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008529 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008530 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008531 SDValue Chain = Op.getOperand(0);
8532 SDValue DstPtr = Op.getOperand(1);
8533 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008534 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8535 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008536 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008537
Chris Lattnere72f2022010-09-21 05:40:29 +00008538 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008539 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008540 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008541 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008542}
8543
Dan Gohman475871a2008-07-27 21:46:04 +00008544SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008545X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008546 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008547 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008548 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008549 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008550 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008551 case Intrinsic::x86_sse_comieq_ss:
8552 case Intrinsic::x86_sse_comilt_ss:
8553 case Intrinsic::x86_sse_comile_ss:
8554 case Intrinsic::x86_sse_comigt_ss:
8555 case Intrinsic::x86_sse_comige_ss:
8556 case Intrinsic::x86_sse_comineq_ss:
8557 case Intrinsic::x86_sse_ucomieq_ss:
8558 case Intrinsic::x86_sse_ucomilt_ss:
8559 case Intrinsic::x86_sse_ucomile_ss:
8560 case Intrinsic::x86_sse_ucomigt_ss:
8561 case Intrinsic::x86_sse_ucomige_ss:
8562 case Intrinsic::x86_sse_ucomineq_ss:
8563 case Intrinsic::x86_sse2_comieq_sd:
8564 case Intrinsic::x86_sse2_comilt_sd:
8565 case Intrinsic::x86_sse2_comile_sd:
8566 case Intrinsic::x86_sse2_comigt_sd:
8567 case Intrinsic::x86_sse2_comige_sd:
8568 case Intrinsic::x86_sse2_comineq_sd:
8569 case Intrinsic::x86_sse2_ucomieq_sd:
8570 case Intrinsic::x86_sse2_ucomilt_sd:
8571 case Intrinsic::x86_sse2_ucomile_sd:
8572 case Intrinsic::x86_sse2_ucomigt_sd:
8573 case Intrinsic::x86_sse2_ucomige_sd:
8574 case Intrinsic::x86_sse2_ucomineq_sd: {
8575 unsigned Opc = 0;
8576 ISD::CondCode CC = ISD::SETCC_INVALID;
8577 switch (IntNo) {
8578 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008579 case Intrinsic::x86_sse_comieq_ss:
8580 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008581 Opc = X86ISD::COMI;
8582 CC = ISD::SETEQ;
8583 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008584 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008585 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008586 Opc = X86ISD::COMI;
8587 CC = ISD::SETLT;
8588 break;
8589 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008590 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008591 Opc = X86ISD::COMI;
8592 CC = ISD::SETLE;
8593 break;
8594 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008595 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008596 Opc = X86ISD::COMI;
8597 CC = ISD::SETGT;
8598 break;
8599 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008600 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008601 Opc = X86ISD::COMI;
8602 CC = ISD::SETGE;
8603 break;
8604 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008605 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008606 Opc = X86ISD::COMI;
8607 CC = ISD::SETNE;
8608 break;
8609 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008610 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008611 Opc = X86ISD::UCOMI;
8612 CC = ISD::SETEQ;
8613 break;
8614 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008615 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008616 Opc = X86ISD::UCOMI;
8617 CC = ISD::SETLT;
8618 break;
8619 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008620 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008621 Opc = X86ISD::UCOMI;
8622 CC = ISD::SETLE;
8623 break;
8624 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008625 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008626 Opc = X86ISD::UCOMI;
8627 CC = ISD::SETGT;
8628 break;
8629 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008630 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008631 Opc = X86ISD::UCOMI;
8632 CC = ISD::SETGE;
8633 break;
8634 case Intrinsic::x86_sse_ucomineq_ss:
8635 case Intrinsic::x86_sse2_ucomineq_sd:
8636 Opc = X86ISD::UCOMI;
8637 CC = ISD::SETNE;
8638 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008639 }
Evan Cheng734503b2006-09-11 02:19:56 +00008640
Dan Gohman475871a2008-07-27 21:46:04 +00008641 SDValue LHS = Op.getOperand(1);
8642 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008643 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008644 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008645 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8646 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8647 DAG.getConstant(X86CC, MVT::i8), Cond);
8648 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008649 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008650 // ptest and testp intrinsics. The intrinsic these come from are designed to
8651 // return an integer value, not just an instruction so lower it to the ptest
8652 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008653 case Intrinsic::x86_sse41_ptestz:
8654 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008655 case Intrinsic::x86_sse41_ptestnzc:
8656 case Intrinsic::x86_avx_ptestz_256:
8657 case Intrinsic::x86_avx_ptestc_256:
8658 case Intrinsic::x86_avx_ptestnzc_256:
8659 case Intrinsic::x86_avx_vtestz_ps:
8660 case Intrinsic::x86_avx_vtestc_ps:
8661 case Intrinsic::x86_avx_vtestnzc_ps:
8662 case Intrinsic::x86_avx_vtestz_pd:
8663 case Intrinsic::x86_avx_vtestc_pd:
8664 case Intrinsic::x86_avx_vtestnzc_pd:
8665 case Intrinsic::x86_avx_vtestz_ps_256:
8666 case Intrinsic::x86_avx_vtestc_ps_256:
8667 case Intrinsic::x86_avx_vtestnzc_ps_256:
8668 case Intrinsic::x86_avx_vtestz_pd_256:
8669 case Intrinsic::x86_avx_vtestc_pd_256:
8670 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8671 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008672 unsigned X86CC = 0;
8673 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008674 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008675 case Intrinsic::x86_avx_vtestz_ps:
8676 case Intrinsic::x86_avx_vtestz_pd:
8677 case Intrinsic::x86_avx_vtestz_ps_256:
8678 case Intrinsic::x86_avx_vtestz_pd_256:
8679 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008680 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008681 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008682 // ZF = 1
8683 X86CC = X86::COND_E;
8684 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008685 case Intrinsic::x86_avx_vtestc_ps:
8686 case Intrinsic::x86_avx_vtestc_pd:
8687 case Intrinsic::x86_avx_vtestc_ps_256:
8688 case Intrinsic::x86_avx_vtestc_pd_256:
8689 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008690 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008691 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008692 // CF = 1
8693 X86CC = X86::COND_B;
8694 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008695 case Intrinsic::x86_avx_vtestnzc_ps:
8696 case Intrinsic::x86_avx_vtestnzc_pd:
8697 case Intrinsic::x86_avx_vtestnzc_ps_256:
8698 case Intrinsic::x86_avx_vtestnzc_pd_256:
8699 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008700 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008701 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008702 // ZF and CF = 0
8703 X86CC = X86::COND_A;
8704 break;
8705 }
Eric Christopherfd179292009-08-27 18:07:15 +00008706
Eric Christopher71c67532009-07-29 00:28:05 +00008707 SDValue LHS = Op.getOperand(1);
8708 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008709 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8710 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008711 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8712 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8713 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008714 }
Evan Cheng5759f972008-05-04 09:15:50 +00008715
8716 // Fix vector shift instructions where the last operand is a non-immediate
8717 // i32 value.
8718 case Intrinsic::x86_sse2_pslli_w:
8719 case Intrinsic::x86_sse2_pslli_d:
8720 case Intrinsic::x86_sse2_pslli_q:
8721 case Intrinsic::x86_sse2_psrli_w:
8722 case Intrinsic::x86_sse2_psrli_d:
8723 case Intrinsic::x86_sse2_psrli_q:
8724 case Intrinsic::x86_sse2_psrai_w:
8725 case Intrinsic::x86_sse2_psrai_d:
8726 case Intrinsic::x86_mmx_pslli_w:
8727 case Intrinsic::x86_mmx_pslli_d:
8728 case Intrinsic::x86_mmx_pslli_q:
8729 case Intrinsic::x86_mmx_psrli_w:
8730 case Intrinsic::x86_mmx_psrli_d:
8731 case Intrinsic::x86_mmx_psrli_q:
8732 case Intrinsic::x86_mmx_psrai_w:
8733 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008734 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008735 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008736 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008737
8738 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008739 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008740 switch (IntNo) {
8741 case Intrinsic::x86_sse2_pslli_w:
8742 NewIntNo = Intrinsic::x86_sse2_psll_w;
8743 break;
8744 case Intrinsic::x86_sse2_pslli_d:
8745 NewIntNo = Intrinsic::x86_sse2_psll_d;
8746 break;
8747 case Intrinsic::x86_sse2_pslli_q:
8748 NewIntNo = Intrinsic::x86_sse2_psll_q;
8749 break;
8750 case Intrinsic::x86_sse2_psrli_w:
8751 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8752 break;
8753 case Intrinsic::x86_sse2_psrli_d:
8754 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8755 break;
8756 case Intrinsic::x86_sse2_psrli_q:
8757 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8758 break;
8759 case Intrinsic::x86_sse2_psrai_w:
8760 NewIntNo = Intrinsic::x86_sse2_psra_w;
8761 break;
8762 case Intrinsic::x86_sse2_psrai_d:
8763 NewIntNo = Intrinsic::x86_sse2_psra_d;
8764 break;
8765 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008766 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008767 switch (IntNo) {
8768 case Intrinsic::x86_mmx_pslli_w:
8769 NewIntNo = Intrinsic::x86_mmx_psll_w;
8770 break;
8771 case Intrinsic::x86_mmx_pslli_d:
8772 NewIntNo = Intrinsic::x86_mmx_psll_d;
8773 break;
8774 case Intrinsic::x86_mmx_pslli_q:
8775 NewIntNo = Intrinsic::x86_mmx_psll_q;
8776 break;
8777 case Intrinsic::x86_mmx_psrli_w:
8778 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8779 break;
8780 case Intrinsic::x86_mmx_psrli_d:
8781 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8782 break;
8783 case Intrinsic::x86_mmx_psrli_q:
8784 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8785 break;
8786 case Intrinsic::x86_mmx_psrai_w:
8787 NewIntNo = Intrinsic::x86_mmx_psra_w;
8788 break;
8789 case Intrinsic::x86_mmx_psrai_d:
8790 NewIntNo = Intrinsic::x86_mmx_psra_d;
8791 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008792 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008793 }
8794 break;
8795 }
8796 }
Mon P Wangefa42202009-09-03 19:56:25 +00008797
8798 // The vector shift intrinsics with scalars uses 32b shift amounts but
8799 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8800 // to be zero.
8801 SDValue ShOps[4];
8802 ShOps[0] = ShAmt;
8803 ShOps[1] = DAG.getConstant(0, MVT::i32);
8804 if (ShAmtVT == MVT::v4i32) {
8805 ShOps[2] = DAG.getUNDEF(MVT::i32);
8806 ShOps[3] = DAG.getUNDEF(MVT::i32);
8807 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8808 } else {
8809 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008810// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008811 }
8812
Owen Andersone50ed302009-08-10 22:56:29 +00008813 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008814 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008815 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008816 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008817 Op.getOperand(1), ShAmt);
8818 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008819 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008820}
Evan Cheng72261582005-12-20 06:22:03 +00008821
Dan Gohmand858e902010-04-17 15:26:15 +00008822SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8823 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008824 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8825 MFI->setReturnAddressIsTaken(true);
8826
Bill Wendling64e87322009-01-16 19:25:27 +00008827 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008828 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008829
8830 if (Depth > 0) {
8831 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8832 SDValue Offset =
8833 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008834 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008835 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008836 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008837 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008838 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008839 }
8840
8841 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008842 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008843 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008844 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008845}
8846
Dan Gohmand858e902010-04-17 15:26:15 +00008847SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008848 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8849 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008850
Owen Andersone50ed302009-08-10 22:56:29 +00008851 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008852 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008853 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8854 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008855 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008856 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008857 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8858 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008859 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008860 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008861}
8862
Dan Gohman475871a2008-07-27 21:46:04 +00008863SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008864 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008865 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008866}
8867
Dan Gohmand858e902010-04-17 15:26:15 +00008868SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008869 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008870 SDValue Chain = Op.getOperand(0);
8871 SDValue Offset = Op.getOperand(1);
8872 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008873 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008874
Dan Gohmand8816272010-08-11 18:14:00 +00008875 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8876 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8877 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008878 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008879
Dan Gohmand8816272010-08-11 18:14:00 +00008880 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8881 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008882 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008883 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8884 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008885 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008886 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008887
Dale Johannesene4d209d2009-02-03 20:21:25 +00008888 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008889 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008890 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008891}
8892
Dan Gohman475871a2008-07-27 21:46:04 +00008893SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008894 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008895 SDValue Root = Op.getOperand(0);
8896 SDValue Trmp = Op.getOperand(1); // trampoline
8897 SDValue FPtr = Op.getOperand(2); // nested function
8898 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008899 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008900
Dan Gohman69de1932008-02-06 22:27:42 +00008901 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008902
8903 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008904 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008905
8906 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008907 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8908 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008909
Evan Cheng0e6a0522011-07-18 20:57:22 +00008910 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
8911 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008912
8913 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8914
8915 // Load the pointer to the nested function into R11.
8916 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008917 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008918 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008919 Addr, MachinePointerInfo(TrmpAddr),
8920 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008921
Owen Anderson825b72b2009-08-11 20:47:22 +00008922 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8923 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008924 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8925 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008926 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008927
8928 // Load the 'nest' parameter value into R10.
8929 // R10 is specified in X86CallingConv.td
8930 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008931 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8932 DAG.getConstant(10, MVT::i64));
8933 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008934 Addr, MachinePointerInfo(TrmpAddr, 10),
8935 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008936
Owen Anderson825b72b2009-08-11 20:47:22 +00008937 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8938 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008939 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8940 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008941 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008942
8943 // Jump to the nested function.
8944 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008945 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8946 DAG.getConstant(20, MVT::i64));
8947 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008948 Addr, MachinePointerInfo(TrmpAddr, 20),
8949 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008950
8951 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008952 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8953 DAG.getConstant(22, MVT::i64));
8954 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008955 MachinePointerInfo(TrmpAddr, 22),
8956 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008957
Dan Gohman475871a2008-07-27 21:46:04 +00008958 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008959 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008960 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008961 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008962 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008963 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008964 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008965 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008966
8967 switch (CC) {
8968 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008969 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008970 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008971 case CallingConv::X86_StdCall: {
8972 // Pass 'nest' parameter in ECX.
8973 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008974 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008975
8976 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008977 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008978 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008979
Chris Lattner58d74912008-03-12 17:45:29 +00008980 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008981 unsigned InRegCount = 0;
8982 unsigned Idx = 1;
8983
8984 for (FunctionType::param_iterator I = FTy->param_begin(),
8985 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008986 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008987 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008988 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008989
8990 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008991 report_fatal_error("Nest register in use - reduce number of inreg"
8992 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008993 }
8994 }
8995 break;
8996 }
8997 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008998 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008999 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009000 // Pass 'nest' parameter in EAX.
9001 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009002 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009003 break;
9004 }
9005
Dan Gohman475871a2008-07-27 21:46:04 +00009006 SDValue OutChains[4];
9007 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009008
Owen Anderson825b72b2009-08-11 20:47:22 +00009009 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9010 DAG.getConstant(10, MVT::i32));
9011 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009012
Chris Lattnera62fe662010-02-05 19:20:30 +00009013 // This is storing the opcode for MOV32ri.
9014 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009015 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009016 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009017 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009018 Trmp, MachinePointerInfo(TrmpAddr),
9019 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009020
Owen Anderson825b72b2009-08-11 20:47:22 +00009021 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9022 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009023 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9024 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009025 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009026
Chris Lattnera62fe662010-02-05 19:20:30 +00009027 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009028 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9029 DAG.getConstant(5, MVT::i32));
9030 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009031 MachinePointerInfo(TrmpAddr, 5),
9032 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009033
Owen Anderson825b72b2009-08-11 20:47:22 +00009034 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9035 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009036 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9037 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009038 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009039
Dan Gohman475871a2008-07-27 21:46:04 +00009040 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009041 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009042 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009043 }
9044}
9045
Dan Gohmand858e902010-04-17 15:26:15 +00009046SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9047 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009048 /*
9049 The rounding mode is in bits 11:10 of FPSR, and has the following
9050 settings:
9051 00 Round to nearest
9052 01 Round to -inf
9053 10 Round to +inf
9054 11 Round to 0
9055
9056 FLT_ROUNDS, on the other hand, expects the following:
9057 -1 Undefined
9058 0 Round to 0
9059 1 Round to nearest
9060 2 Round to +inf
9061 3 Round to -inf
9062
9063 To perform the conversion, we do:
9064 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9065 */
9066
9067 MachineFunction &MF = DAG.getMachineFunction();
9068 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009069 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009070 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009071 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009072 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009073
9074 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009075 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009076 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009077
Michael J. Spencerec38de22010-10-10 22:04:20 +00009078
Chris Lattner2156b792010-09-22 01:11:26 +00009079 MachineMemOperand *MMO =
9080 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9081 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009082
Chris Lattner2156b792010-09-22 01:11:26 +00009083 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9084 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9085 DAG.getVTList(MVT::Other),
9086 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009087
9088 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009089 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009090 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009091
9092 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009093 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009094 DAG.getNode(ISD::SRL, DL, MVT::i16,
9095 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009096 CWD, DAG.getConstant(0x800, MVT::i16)),
9097 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009098 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009099 DAG.getNode(ISD::SRL, DL, MVT::i16,
9100 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009101 CWD, DAG.getConstant(0x400, MVT::i16)),
9102 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009103
Dan Gohman475871a2008-07-27 21:46:04 +00009104 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009105 DAG.getNode(ISD::AND, DL, MVT::i16,
9106 DAG.getNode(ISD::ADD, DL, MVT::i16,
9107 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009108 DAG.getConstant(1, MVT::i16)),
9109 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009110
9111
Duncan Sands83ec4b62008-06-06 12:08:01 +00009112 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009113 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009114}
9115
Dan Gohmand858e902010-04-17 15:26:15 +00009116SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009117 EVT VT = Op.getValueType();
9118 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009119 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009120 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009121
9122 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009123 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009124 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009125 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009126 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009127 }
Evan Cheng18efe262007-12-14 02:13:44 +00009128
Evan Cheng152804e2007-12-14 08:30:15 +00009129 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009130 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009131 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009132
9133 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009134 SDValue Ops[] = {
9135 Op,
9136 DAG.getConstant(NumBits+NumBits-1, OpVT),
9137 DAG.getConstant(X86::COND_E, MVT::i8),
9138 Op.getValue(1)
9139 };
9140 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009141
9142 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009143 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009144
Owen Anderson825b72b2009-08-11 20:47:22 +00009145 if (VT == MVT::i8)
9146 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009147 return Op;
9148}
9149
Dan Gohmand858e902010-04-17 15:26:15 +00009150SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009151 EVT VT = Op.getValueType();
9152 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009153 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009154 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009155
9156 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009157 if (VT == MVT::i8) {
9158 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009159 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009160 }
Evan Cheng152804e2007-12-14 08:30:15 +00009161
9162 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009163 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009164 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009165
9166 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009167 SDValue Ops[] = {
9168 Op,
9169 DAG.getConstant(NumBits, OpVT),
9170 DAG.getConstant(X86::COND_E, MVT::i8),
9171 Op.getValue(1)
9172 };
9173 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009174
Owen Anderson825b72b2009-08-11 20:47:22 +00009175 if (VT == MVT::i8)
9176 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009177 return Op;
9178}
9179
Dan Gohmand858e902010-04-17 15:26:15 +00009180SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009181 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00009182 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009183 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009184
Mon P Wangaf9b9522008-12-18 21:42:19 +00009185 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9186 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9187 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9188 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9189 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9190 //
9191 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9192 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9193 // return AloBlo + AloBhi + AhiBlo;
9194
9195 SDValue A = Op.getOperand(0);
9196 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009197
Dale Johannesene4d209d2009-02-03 20:21:25 +00009198 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009199 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9200 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009201 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009202 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9203 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009204 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009205 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009206 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009207 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009208 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009209 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009210 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009211 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009212 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009213 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009214 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9215 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009216 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009217 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9218 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009219 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9220 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009221 return Res;
9222}
9223
Nadav Rotem43012222011-05-11 08:12:09 +00009224SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9225
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009226 EVT VT = Op.getValueType();
9227 DebugLoc dl = Op.getDebugLoc();
9228 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009229 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009230 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009231
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009232 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9233 return SDValue();
9234
9235 // Decompose 256-bit shifts into smaller 128-bit shifts.
9236 if (VT.getSizeInBits() == 256) {
9237 int NumElems = VT.getVectorNumElements();
9238 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9239 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9240
9241 // Extract the two vectors
9242 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9243 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9244 DAG, dl);
9245
9246 // Recreate the shift amount vectors
9247 SmallVector<SDValue, 4> Amt1Csts;
9248 SmallVector<SDValue, 4> Amt2Csts;
9249 for (int i = 0; i < NumElems/2; ++i)
9250 Amt1Csts.push_back(Amt->getOperand(i));
9251 for (int i = NumElems/2; i < NumElems; ++i)
9252 Amt2Csts.push_back(Amt->getOperand(i));
9253
9254 SDValue Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9255 &Amt1Csts[0], NumElems/2);
9256 SDValue Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9257 &Amt2Csts[0], NumElems/2);
9258
9259 // Issue new vector shifts for the smaller types
9260 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9261 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9262
9263 // Concatenate the result back
9264 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9265 }
Nate Begeman51409212010-07-28 00:21:48 +00009266
Nadav Rotem43012222011-05-11 08:12:09 +00009267 // Optimize shl/srl/sra with constant shift amount.
9268 if (isSplatVector(Amt.getNode())) {
9269 SDValue SclrAmt = Amt->getOperand(0);
9270 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9271 uint64_t ShiftAmt = C->getZExtValue();
9272
9273 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9274 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9275 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9276 R, DAG.getConstant(ShiftAmt, MVT::i32));
9277
9278 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9279 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9280 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9281 R, DAG.getConstant(ShiftAmt, MVT::i32));
9282
9283 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9284 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9285 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9286 R, DAG.getConstant(ShiftAmt, MVT::i32));
9287
9288 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9289 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9290 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9291 R, DAG.getConstant(ShiftAmt, MVT::i32));
9292
9293 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9294 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9295 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9296 R, DAG.getConstant(ShiftAmt, MVT::i32));
9297
9298 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9299 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9300 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9301 R, DAG.getConstant(ShiftAmt, MVT::i32));
9302
9303 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9304 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9305 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9306 R, DAG.getConstant(ShiftAmt, MVT::i32));
9307
9308 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9309 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9310 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9311 R, DAG.getConstant(ShiftAmt, MVT::i32));
9312 }
9313 }
9314
9315 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009316 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009317 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9318 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9319 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9320
9321 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009322
Nate Begeman51409212010-07-28 00:21:48 +00009323 std::vector<Constant*> CV(4, CI);
9324 Constant *C = ConstantVector::get(CV);
9325 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9326 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009327 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009328 false, false, 16);
9329
9330 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009331 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009332 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9333 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9334 }
Nadav Rotem43012222011-05-11 08:12:09 +00009335 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009336 // a = a << 5;
9337 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9338 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9339 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9340
9341 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9342 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9343
9344 std::vector<Constant*> CVM1(16, CM1);
9345 std::vector<Constant*> CVM2(16, CM2);
9346 Constant *C = ConstantVector::get(CVM1);
9347 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9348 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009349 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009350 false, false, 16);
9351
9352 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9353 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9354 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9355 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9356 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009357 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009358 // a += a
9359 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009360
Nate Begeman51409212010-07-28 00:21:48 +00009361 C = ConstantVector::get(CVM2);
9362 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9363 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009364 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009365 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009366
Nate Begeman51409212010-07-28 00:21:48 +00009367 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9368 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9369 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9370 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9371 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009372 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009373 // a += a
9374 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009375
Nate Begeman51409212010-07-28 00:21:48 +00009376 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009377 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009378 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9379 return R;
9380 }
9381 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009382}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009383
Dan Gohmand858e902010-04-17 15:26:15 +00009384SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009385 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9386 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009387 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9388 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009389 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009390 SDValue LHS = N->getOperand(0);
9391 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009392 unsigned BaseOp = 0;
9393 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009394 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009395 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009396 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009397 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009398 // A subtract of one will be selected as a INC. Note that INC doesn't
9399 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009400 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9401 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009402 BaseOp = X86ISD::INC;
9403 Cond = X86::COND_O;
9404 break;
9405 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009406 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009407 Cond = X86::COND_O;
9408 break;
9409 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009410 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009411 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009412 break;
9413 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009414 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9415 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009416 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9417 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009418 BaseOp = X86ISD::DEC;
9419 Cond = X86::COND_O;
9420 break;
9421 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009422 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009423 Cond = X86::COND_O;
9424 break;
9425 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009426 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009427 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009428 break;
9429 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009430 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009431 Cond = X86::COND_O;
9432 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009433 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9434 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9435 MVT::i32);
9436 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009437
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009438 SDValue SetCC =
9439 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9440 DAG.getConstant(X86::COND_O, MVT::i32),
9441 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009442
Dan Gohman6e5fda22011-07-22 18:45:15 +00009443 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009444 }
Bill Wendling74c37652008-12-09 22:08:41 +00009445 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009446
Bill Wendling61edeb52008-12-02 01:06:39 +00009447 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009448 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009449 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009450
Bill Wendling61edeb52008-12-02 01:06:39 +00009451 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009452 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9453 DAG.getConstant(Cond, MVT::i32),
9454 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009455
Dan Gohman6e5fda22011-07-22 18:45:15 +00009456 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009457}
9458
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009459SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9460 DebugLoc dl = Op.getDebugLoc();
9461 SDNode* Node = Op.getNode();
9462 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9463 EVT VT = Node->getValueType(0);
9464
9465 if (Subtarget->hasSSE2() && VT.isVector()) {
9466 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9467 ExtraVT.getScalarType().getSizeInBits();
9468 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9469
9470 unsigned SHLIntrinsicsID = 0;
9471 unsigned SRAIntrinsicsID = 0;
9472 switch (VT.getSimpleVT().SimpleTy) {
9473 default:
9474 return SDValue();
9475 case MVT::v2i64: {
9476 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9477 SRAIntrinsicsID = 0;
9478 break;
9479 }
9480 case MVT::v4i32: {
9481 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9482 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9483 break;
9484 }
9485 case MVT::v8i16: {
9486 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9487 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9488 break;
9489 }
9490 }
9491
9492 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9493 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9494 Node->getOperand(0), ShAmt);
9495
9496 // In case of 1 bit sext, no need to shr
9497 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9498
9499 if (SRAIntrinsicsID) {
9500 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9501 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9502 Tmp1, ShAmt);
9503 }
9504 return Tmp1;
9505 }
9506
9507 return SDValue();
9508}
9509
9510
Eric Christopher9a9d2752010-07-22 02:48:34 +00009511SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9512 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009513
Eric Christopher77ed1352011-07-08 00:04:56 +00009514 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9515 // There isn't any reason to disable it if the target processor supports it.
9516 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009517 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009518 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009519 SDValue Ops[] = {
9520 DAG.getRegister(X86::ESP, MVT::i32), // Base
9521 DAG.getTargetConstant(1, MVT::i8), // Scale
9522 DAG.getRegister(0, MVT::i32), // Index
9523 DAG.getTargetConstant(0, MVT::i32), // Disp
9524 DAG.getRegister(0, MVT::i32), // Segment.
9525 Zero,
9526 Chain
9527 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009528 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009529 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9530 array_lengthof(Ops));
9531 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009532 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009533
Eric Christopher9a9d2752010-07-22 02:48:34 +00009534 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009535 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009536 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009537
Chris Lattner132929a2010-08-14 17:26:09 +00009538 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9539 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9540 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9541 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009542
Chris Lattner132929a2010-08-14 17:26:09 +00009543 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9544 if (!Op1 && !Op2 && !Op3 && Op4)
9545 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009546
Chris Lattner132929a2010-08-14 17:26:09 +00009547 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9548 if (Op1 && !Op2 && !Op3 && !Op4)
9549 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009550
9551 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009552 // (MFENCE)>;
9553 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009554}
9555
Eli Friedman14648462011-07-27 22:21:52 +00009556SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9557 SelectionDAG &DAG) const {
9558 DebugLoc dl = Op.getDebugLoc();
9559 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9560 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9561 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9562 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9563
9564 // The only fence that needs an instruction is a sequentially-consistent
9565 // cross-thread fence.
9566 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9567 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9568 // no-sse2). There isn't any reason to disable it if the target processor
9569 // supports it.
9570 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9571 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9572
9573 SDValue Chain = Op.getOperand(0);
9574 SDValue Zero = DAG.getConstant(0, MVT::i32);
9575 SDValue Ops[] = {
9576 DAG.getRegister(X86::ESP, MVT::i32), // Base
9577 DAG.getTargetConstant(1, MVT::i8), // Scale
9578 DAG.getRegister(0, MVT::i32), // Index
9579 DAG.getTargetConstant(0, MVT::i32), // Disp
9580 DAG.getRegister(0, MVT::i32), // Segment.
9581 Zero,
9582 Chain
9583 };
9584 SDNode *Res =
9585 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9586 array_lengthof(Ops));
9587 return SDValue(Res, 0);
9588 }
9589
9590 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9591 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9592}
9593
9594
Dan Gohmand858e902010-04-17 15:26:15 +00009595SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009596 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009597 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009598 unsigned Reg = 0;
9599 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009600 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009601 default:
9602 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009603 case MVT::i8: Reg = X86::AL; size = 1; break;
9604 case MVT::i16: Reg = X86::AX; size = 2; break;
9605 case MVT::i32: Reg = X86::EAX; size = 4; break;
9606 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009607 assert(Subtarget->is64Bit() && "Node not type legal!");
9608 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009609 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009610 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009611 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009612 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009613 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009614 Op.getOperand(1),
9615 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009616 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009617 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009618 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009619 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9620 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9621 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009622 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009623 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009624 return cpOut;
9625}
9626
Duncan Sands1607f052008-12-01 11:39:25 +00009627SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009628 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009629 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009630 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009631 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009632 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009633 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009634 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9635 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009636 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009637 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9638 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009639 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009640 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009641 rdx.getValue(1)
9642 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009643 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009644}
9645
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009646SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009647 SelectionDAG &DAG) const {
9648 EVT SrcVT = Op.getOperand(0).getValueType();
9649 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009650 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9651 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009652 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009653 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009654 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009655 // i64 <=> MMX conversions are Legal.
9656 if (SrcVT==MVT::i64 && DstVT.isVector())
9657 return Op;
9658 if (DstVT==MVT::i64 && SrcVT.isVector())
9659 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009660 // MMX <=> MMX conversions are Legal.
9661 if (SrcVT.isVector() && DstVT.isVector())
9662 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009663 // All other conversions need to be expanded.
9664 return SDValue();
9665}
Chris Lattner5b856542010-12-20 00:59:46 +00009666
Dan Gohmand858e902010-04-17 15:26:15 +00009667SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009668 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009669 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009670 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009671 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009672 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009673 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009674 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009675 Node->getOperand(0),
9676 Node->getOperand(1), negOp,
9677 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +00009678 cast<AtomicSDNode>(Node)->getAlignment(),
9679 cast<AtomicSDNode>(Node)->getOrdering(),
9680 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +00009681}
9682
Chris Lattner5b856542010-12-20 00:59:46 +00009683static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9684 EVT VT = Op.getNode()->getValueType(0);
9685
9686 // Let legalize expand this if it isn't a legal type yet.
9687 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9688 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009689
Chris Lattner5b856542010-12-20 00:59:46 +00009690 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009691
Chris Lattner5b856542010-12-20 00:59:46 +00009692 unsigned Opc;
9693 bool ExtraOp = false;
9694 switch (Op.getOpcode()) {
9695 default: assert(0 && "Invalid code");
9696 case ISD::ADDC: Opc = X86ISD::ADD; break;
9697 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9698 case ISD::SUBC: Opc = X86ISD::SUB; break;
9699 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9700 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009701
Chris Lattner5b856542010-12-20 00:59:46 +00009702 if (!ExtraOp)
9703 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9704 Op.getOperand(1));
9705 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9706 Op.getOperand(1), Op.getOperand(2));
9707}
9708
Evan Cheng0db9fe62006-04-25 20:13:52 +00009709/// LowerOperation - Provide custom lowering hooks for some operations.
9710///
Dan Gohmand858e902010-04-17 15:26:15 +00009711SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009712 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009713 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009714 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009715 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +00009716 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009717 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9718 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009719 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009720 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009721 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9722 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9723 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009724 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009725 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009726 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9727 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9728 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009729 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009730 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009731 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009732 case ISD::SHL_PARTS:
9733 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009734 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009735 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009736 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009737 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009738 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009739 case ISD::FABS: return LowerFABS(Op, DAG);
9740 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009741 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009742 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009743 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009744 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009745 case ISD::SELECT: return LowerSELECT(Op, DAG);
9746 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009747 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009748 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009749 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009750 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009751 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009752 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9753 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009754 case ISD::FRAME_TO_ARGS_OFFSET:
9755 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009756 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009757 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009758 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009759 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009760 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9761 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009762 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009763 case ISD::SRA:
9764 case ISD::SRL:
9765 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009766 case ISD::SADDO:
9767 case ISD::UADDO:
9768 case ISD::SSUBO:
9769 case ISD::USUBO:
9770 case ISD::SMULO:
9771 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009772 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009773 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009774 case ISD::ADDC:
9775 case ISD::ADDE:
9776 case ISD::SUBC:
9777 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009778 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009779}
9780
Duncan Sands1607f052008-12-01 11:39:25 +00009781void X86TargetLowering::
9782ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009783 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009784 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009785 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009786 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009787
9788 SDValue Chain = Node->getOperand(0);
9789 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009790 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009791 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009792 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009793 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009794 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009795 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009796 SDValue Result =
9797 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9798 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009799 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009800 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009801 Results.push_back(Result.getValue(2));
9802}
9803
Duncan Sands126d9072008-07-04 11:47:58 +00009804/// ReplaceNodeResults - Replace a node with an illegal result type
9805/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009806void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9807 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009808 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009809 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009810 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009811 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009812 assert(false && "Do not know how to custom type legalize this operation!");
9813 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009814 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +00009815 case ISD::ADDC:
9816 case ISD::ADDE:
9817 case ISD::SUBC:
9818 case ISD::SUBE:
9819 // We don't want to expand or promote these.
9820 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009821 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009822 std::pair<SDValue,SDValue> Vals =
9823 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009824 SDValue FIST = Vals.first, StackSlot = Vals.second;
9825 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009826 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009827 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009828 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9829 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009830 }
9831 return;
9832 }
9833 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009834 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009835 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009836 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009837 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009838 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009839 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009840 eax.getValue(2));
9841 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9842 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009843 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009844 Results.push_back(edx.getValue(1));
9845 return;
9846 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009847 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009848 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009849 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009850 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009851 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9852 DAG.getConstant(0, MVT::i32));
9853 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9854 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009855 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9856 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009857 cpInL.getValue(1));
9858 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009859 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9860 DAG.getConstant(0, MVT::i32));
9861 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9862 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009863 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009864 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009865 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009866 swapInL.getValue(1));
9867 SDValue Ops[] = { swapInH.getValue(0),
9868 N->getOperand(1),
9869 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009870 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009871 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9872 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9873 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009874 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009875 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009876 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009877 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009878 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009879 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009880 Results.push_back(cpOutH.getValue(1));
9881 return;
9882 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009883 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009884 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9885 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009886 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009887 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9888 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009889 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009890 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9891 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009892 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009893 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9894 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009895 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009896 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9897 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009898 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009899 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9900 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009901 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009902 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9903 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009904 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009905}
9906
Evan Cheng72261582005-12-20 06:22:03 +00009907const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9908 switch (Opcode) {
9909 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009910 case X86ISD::BSF: return "X86ISD::BSF";
9911 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009912 case X86ISD::SHLD: return "X86ISD::SHLD";
9913 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009914 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009915 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009916 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009917 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009918 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009919 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009920 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9921 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9922 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009923 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009924 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009925 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009926 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009927 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009928 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009929 case X86ISD::COMI: return "X86ISD::COMI";
9930 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009931 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009932 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +00009933 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
9934 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +00009935 case X86ISD::CMOV: return "X86ISD::CMOV";
9936 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009937 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009938 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9939 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009940 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009941 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009942 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009943 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009944 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009945 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9946 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009947 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009948 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +00009949 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +00009950 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9951 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9952 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009953 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009954 case X86ISD::FMAX: return "X86ISD::FMAX";
9955 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009956 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9957 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009958 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009959 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009960 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009961 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009962 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009963 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9964 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009965 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9966 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9967 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9968 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9969 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9970 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009971 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9972 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009973 case X86ISD::VSHL: return "X86ISD::VSHL";
9974 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009975 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9976 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9977 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9978 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9979 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9980 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9981 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9982 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9983 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9984 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009985 case X86ISD::ADD: return "X86ISD::ADD";
9986 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009987 case X86ISD::ADC: return "X86ISD::ADC";
9988 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009989 case X86ISD::SMUL: return "X86ISD::SMUL";
9990 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009991 case X86ISD::INC: return "X86ISD::INC";
9992 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009993 case X86ISD::OR: return "X86ISD::OR";
9994 case X86ISD::XOR: return "X86ISD::XOR";
9995 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009996 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009997 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009998 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009999 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10000 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10001 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10002 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10003 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10004 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10005 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10006 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10007 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010008 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010009 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010010 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010011 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10012 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010013 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10014 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10015 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10016 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10017 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10018 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10019 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10020 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10021 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010022 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010023 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10024 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10025 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10026 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10027 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10028 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10029 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10030 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10031 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10032 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010033 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10034 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10035 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10036 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010037 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010038 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010039 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010040 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +000010041 }
10042}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010043
Chris Lattnerc9addb72007-03-30 23:15:24 +000010044// isLegalAddressingMode - Return true if the addressing mode represented
10045// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010046bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010047 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010048 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010049 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010050 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010051
Chris Lattnerc9addb72007-03-30 23:15:24 +000010052 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010053 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010054 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010055
Chris Lattnerc9addb72007-03-30 23:15:24 +000010056 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010057 unsigned GVFlags =
10058 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010059
Chris Lattnerdfed4132009-07-10 07:38:24 +000010060 // If a reference to this global requires an extra load, we can't fold it.
10061 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010062 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010063
Chris Lattnerdfed4132009-07-10 07:38:24 +000010064 // If BaseGV requires a register for the PIC base, we cannot also have a
10065 // BaseReg specified.
10066 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010067 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010068
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010069 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010070 if ((M != CodeModel::Small || R != Reloc::Static) &&
10071 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010072 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010073 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010074
Chris Lattnerc9addb72007-03-30 23:15:24 +000010075 switch (AM.Scale) {
10076 case 0:
10077 case 1:
10078 case 2:
10079 case 4:
10080 case 8:
10081 // These scales always work.
10082 break;
10083 case 3:
10084 case 5:
10085 case 9:
10086 // These scales are formed with basereg+scalereg. Only accept if there is
10087 // no basereg yet.
10088 if (AM.HasBaseReg)
10089 return false;
10090 break;
10091 default: // Other stuff never works.
10092 return false;
10093 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010094
Chris Lattnerc9addb72007-03-30 23:15:24 +000010095 return true;
10096}
10097
10098
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010099bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010100 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010101 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010102 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10103 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010104 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010105 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010106 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010107}
10108
Owen Andersone50ed302009-08-10 22:56:29 +000010109bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010110 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010111 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010112 unsigned NumBits1 = VT1.getSizeInBits();
10113 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010114 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010115 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010116 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010117}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010118
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010119bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010120 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010121 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010122}
10123
Owen Andersone50ed302009-08-10 22:56:29 +000010124bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010125 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010126 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010127}
10128
Owen Andersone50ed302009-08-10 22:56:29 +000010129bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010130 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010131 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010132}
10133
Evan Cheng60c07e12006-07-05 22:17:51 +000010134/// isShuffleMaskLegal - Targets can use this to indicate that they only
10135/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10136/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10137/// are assumed to be legal.
10138bool
Eric Christopherfd179292009-08-27 18:07:15 +000010139X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010140 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010141 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010142 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010143 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010144
Nate Begemana09008b2009-10-19 02:17:23 +000010145 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010146 return (VT.getVectorNumElements() == 2 ||
10147 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10148 isMOVLMask(M, VT) ||
10149 isSHUFPMask(M, VT) ||
10150 isPSHUFDMask(M, VT) ||
10151 isPSHUFHWMask(M, VT) ||
10152 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010153 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010154 isUNPCKLMask(M, VT) ||
10155 isUNPCKHMask(M, VT) ||
10156 isUNPCKL_v_undef_Mask(M, VT) ||
10157 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010158}
10159
Dan Gohman7d8143f2008-04-09 20:09:42 +000010160bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010161X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010162 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010163 unsigned NumElts = VT.getVectorNumElements();
10164 // FIXME: This collection of masks seems suspect.
10165 if (NumElts == 2)
10166 return true;
10167 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10168 return (isMOVLMask(Mask, VT) ||
10169 isCommutedMOVLMask(Mask, VT, true) ||
10170 isSHUFPMask(Mask, VT) ||
10171 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010172 }
10173 return false;
10174}
10175
10176//===----------------------------------------------------------------------===//
10177// X86 Scheduler Hooks
10178//===----------------------------------------------------------------------===//
10179
Mon P Wang63307c32008-05-05 19:05:59 +000010180// private utility function
10181MachineBasicBlock *
10182X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10183 MachineBasicBlock *MBB,
10184 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010185 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010186 unsigned LoadOpc,
10187 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010188 unsigned notOpc,
10189 unsigned EAXreg,
10190 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010191 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010192 // For the atomic bitwise operator, we generate
10193 // thisMBB:
10194 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010195 // ld t1 = [bitinstr.addr]
10196 // op t2 = t1, [bitinstr.val]
10197 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010198 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10199 // bz newMBB
10200 // fallthrough -->nextMBB
10201 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10202 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010203 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010204 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010205
Mon P Wang63307c32008-05-05 19:05:59 +000010206 /// First build the CFG
10207 MachineFunction *F = MBB->getParent();
10208 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010209 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10210 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10211 F->insert(MBBIter, newMBB);
10212 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010213
Dan Gohman14152b42010-07-06 20:24:04 +000010214 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10215 nextMBB->splice(nextMBB->begin(), thisMBB,
10216 llvm::next(MachineBasicBlock::iterator(bInstr)),
10217 thisMBB->end());
10218 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010219
Mon P Wang63307c32008-05-05 19:05:59 +000010220 // Update thisMBB to fall through to newMBB
10221 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010222
Mon P Wang63307c32008-05-05 19:05:59 +000010223 // newMBB jumps to itself and fall through to nextMBB
10224 newMBB->addSuccessor(nextMBB);
10225 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010226
Mon P Wang63307c32008-05-05 19:05:59 +000010227 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010228 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010229 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010230 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010231 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010232 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010233 int numArgs = bInstr->getNumOperands() - 1;
10234 for (int i=0; i < numArgs; ++i)
10235 argOpers[i] = &bInstr->getOperand(i+1);
10236
10237 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010238 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010239 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010240
Dale Johannesen140be2d2008-08-19 18:47:28 +000010241 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010242 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010243 for (int i=0; i <= lastAddrIndx; ++i)
10244 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010245
Dale Johannesen140be2d2008-08-19 18:47:28 +000010246 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010247 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010248 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010249 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010250 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010251 tt = t1;
10252
Dale Johannesen140be2d2008-08-19 18:47:28 +000010253 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010254 assert((argOpers[valArgIndx]->isReg() ||
10255 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010256 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010257 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010258 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010259 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010260 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010261 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010262 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010263
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010264 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010265 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010266
Dale Johannesene4d209d2009-02-03 20:21:25 +000010267 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010268 for (int i=0; i <= lastAddrIndx; ++i)
10269 (*MIB).addOperand(*argOpers[i]);
10270 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010271 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010272 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10273 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010274
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010275 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010276 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010277
Mon P Wang63307c32008-05-05 19:05:59 +000010278 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010279 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010280
Dan Gohman14152b42010-07-06 20:24:04 +000010281 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010282 return nextMBB;
10283}
10284
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010285// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010286MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010287X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10288 MachineBasicBlock *MBB,
10289 unsigned regOpcL,
10290 unsigned regOpcH,
10291 unsigned immOpcL,
10292 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010293 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010294 // For the atomic bitwise operator, we generate
10295 // thisMBB (instructions are in pairs, except cmpxchg8b)
10296 // ld t1,t2 = [bitinstr.addr]
10297 // newMBB:
10298 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10299 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010300 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010301 // mov ECX, EBX <- t5, t6
10302 // mov EAX, EDX <- t1, t2
10303 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10304 // mov t3, t4 <- EAX, EDX
10305 // bz newMBB
10306 // result in out1, out2
10307 // fallthrough -->nextMBB
10308
10309 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10310 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010311 const unsigned NotOpc = X86::NOT32r;
10312 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10313 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10314 MachineFunction::iterator MBBIter = MBB;
10315 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010316
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010317 /// First build the CFG
10318 MachineFunction *F = MBB->getParent();
10319 MachineBasicBlock *thisMBB = MBB;
10320 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10321 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10322 F->insert(MBBIter, newMBB);
10323 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010324
Dan Gohman14152b42010-07-06 20:24:04 +000010325 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10326 nextMBB->splice(nextMBB->begin(), thisMBB,
10327 llvm::next(MachineBasicBlock::iterator(bInstr)),
10328 thisMBB->end());
10329 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010330
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010331 // Update thisMBB to fall through to newMBB
10332 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010333
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010334 // newMBB jumps to itself and fall through to nextMBB
10335 newMBB->addSuccessor(nextMBB);
10336 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010337
Dale Johannesene4d209d2009-02-03 20:21:25 +000010338 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010339 // Insert instructions into newMBB based on incoming instruction
10340 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010341 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010342 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010343 MachineOperand& dest1Oper = bInstr->getOperand(0);
10344 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010345 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10346 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010347 argOpers[i] = &bInstr->getOperand(i+2);
10348
Dan Gohman71ea4e52010-05-14 21:01:44 +000010349 // We use some of the operands multiple times, so conservatively just
10350 // clear any kill flags that might be present.
10351 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10352 argOpers[i]->setIsKill(false);
10353 }
10354
Evan Chengad5b52f2010-01-08 19:14:57 +000010355 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010356 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010357
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010358 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010359 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010360 for (int i=0; i <= lastAddrIndx; ++i)
10361 (*MIB).addOperand(*argOpers[i]);
10362 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010363 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010364 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010365 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010366 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010367 MachineOperand newOp3 = *(argOpers[3]);
10368 if (newOp3.isImm())
10369 newOp3.setImm(newOp3.getImm()+4);
10370 else
10371 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010372 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010373 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010374
10375 // t3/4 are defined later, at the bottom of the loop
10376 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10377 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010378 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010379 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010380 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010381 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10382
Evan Cheng306b4ca2010-01-08 23:41:50 +000010383 // The subsequent operations should be using the destination registers of
10384 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010385 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010386 t1 = F->getRegInfo().createVirtualRegister(RC);
10387 t2 = F->getRegInfo().createVirtualRegister(RC);
10388 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10389 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010390 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010391 t1 = dest1Oper.getReg();
10392 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010393 }
10394
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010395 int valArgIndx = lastAddrIndx + 1;
10396 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010397 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010398 "invalid operand");
10399 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10400 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010401 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010402 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010403 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010404 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010405 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010406 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010407 (*MIB).addOperand(*argOpers[valArgIndx]);
10408 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010409 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010410 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010411 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010412 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010413 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010414 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010415 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010416 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010417 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010418 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010419
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010420 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010421 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010422 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010423 MIB.addReg(t2);
10424
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010425 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010426 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010427 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010428 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010429
Dale Johannesene4d209d2009-02-03 20:21:25 +000010430 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010431 for (int i=0; i <= lastAddrIndx; ++i)
10432 (*MIB).addOperand(*argOpers[i]);
10433
10434 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010435 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10436 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010437
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010438 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010439 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010440 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010441 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010442
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010443 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010444 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010445
Dan Gohman14152b42010-07-06 20:24:04 +000010446 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010447 return nextMBB;
10448}
10449
10450// private utility function
10451MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010452X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10453 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010454 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010455 // For the atomic min/max operator, we generate
10456 // thisMBB:
10457 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010458 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010459 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010460 // cmp t1, t2
10461 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010462 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010463 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10464 // bz newMBB
10465 // fallthrough -->nextMBB
10466 //
10467 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10468 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010469 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010470 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010471
Mon P Wang63307c32008-05-05 19:05:59 +000010472 /// First build the CFG
10473 MachineFunction *F = MBB->getParent();
10474 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010475 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10476 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10477 F->insert(MBBIter, newMBB);
10478 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010479
Dan Gohman14152b42010-07-06 20:24:04 +000010480 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10481 nextMBB->splice(nextMBB->begin(), thisMBB,
10482 llvm::next(MachineBasicBlock::iterator(mInstr)),
10483 thisMBB->end());
10484 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010485
Mon P Wang63307c32008-05-05 19:05:59 +000010486 // Update thisMBB to fall through to newMBB
10487 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010488
Mon P Wang63307c32008-05-05 19:05:59 +000010489 // newMBB jumps to newMBB and fall through to nextMBB
10490 newMBB->addSuccessor(nextMBB);
10491 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010492
Dale Johannesene4d209d2009-02-03 20:21:25 +000010493 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010494 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010495 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010496 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010497 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010498 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010499 int numArgs = mInstr->getNumOperands() - 1;
10500 for (int i=0; i < numArgs; ++i)
10501 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010502
Mon P Wang63307c32008-05-05 19:05:59 +000010503 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010504 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010505 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010506
Mon P Wangab3e7472008-05-05 22:56:23 +000010507 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010508 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010509 for (int i=0; i <= lastAddrIndx; ++i)
10510 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010511
Mon P Wang63307c32008-05-05 19:05:59 +000010512 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010513 assert((argOpers[valArgIndx]->isReg() ||
10514 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010515 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010516
10517 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010518 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010519 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010520 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010521 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010522 (*MIB).addOperand(*argOpers[valArgIndx]);
10523
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010524 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010525 MIB.addReg(t1);
10526
Dale Johannesene4d209d2009-02-03 20:21:25 +000010527 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010528 MIB.addReg(t1);
10529 MIB.addReg(t2);
10530
10531 // Generate movc
10532 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010533 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010534 MIB.addReg(t2);
10535 MIB.addReg(t1);
10536
10537 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010538 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010539 for (int i=0; i <= lastAddrIndx; ++i)
10540 (*MIB).addOperand(*argOpers[i]);
10541 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010542 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010543 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10544 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010545
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010546 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010547 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010548
Mon P Wang63307c32008-05-05 19:05:59 +000010549 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010550 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010551
Dan Gohman14152b42010-07-06 20:24:04 +000010552 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010553 return nextMBB;
10554}
10555
Eric Christopherf83a5de2009-08-27 18:08:16 +000010556// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010557// or XMM0_V32I8 in AVX all of this code can be replaced with that
10558// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010559MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010560X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010561 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010562 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10563 "Target must have SSE4.2 or AVX features enabled");
10564
Eric Christopherb120ab42009-08-18 22:50:32 +000010565 DebugLoc dl = MI->getDebugLoc();
10566 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010567 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010568 if (!Subtarget->hasAVX()) {
10569 if (memArg)
10570 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10571 else
10572 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10573 } else {
10574 if (memArg)
10575 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10576 else
10577 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10578 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010579
Eric Christopher41c902f2010-11-30 08:20:21 +000010580 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010581 for (unsigned i = 0; i < numArgs; ++i) {
10582 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010583 if (!(Op.isReg() && Op.isImplicit()))
10584 MIB.addOperand(Op);
10585 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010586 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010587 .addReg(X86::XMM0);
10588
Dan Gohman14152b42010-07-06 20:24:04 +000010589 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010590 return BB;
10591}
10592
10593MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010594X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010595 DebugLoc dl = MI->getDebugLoc();
10596 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010597
Eric Christopher228232b2010-11-30 07:20:12 +000010598 // Address into RAX/EAX, other two args into ECX, EDX.
10599 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10600 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10601 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10602 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010603 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010604
Eric Christopher228232b2010-11-30 07:20:12 +000010605 unsigned ValOps = X86::AddrNumOperands;
10606 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10607 .addReg(MI->getOperand(ValOps).getReg());
10608 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10609 .addReg(MI->getOperand(ValOps+1).getReg());
10610
10611 // The instruction doesn't actually take any operands though.
10612 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010613
Eric Christopher228232b2010-11-30 07:20:12 +000010614 MI->eraseFromParent(); // The pseudo is gone now.
10615 return BB;
10616}
10617
10618MachineBasicBlock *
10619X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010620 DebugLoc dl = MI->getDebugLoc();
10621 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010622
Eric Christopher228232b2010-11-30 07:20:12 +000010623 // First arg in ECX, the second in EAX.
10624 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10625 .addReg(MI->getOperand(0).getReg());
10626 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10627 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010628
Eric Christopher228232b2010-11-30 07:20:12 +000010629 // The instruction doesn't actually take any operands though.
10630 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010631
Eric Christopher228232b2010-11-30 07:20:12 +000010632 MI->eraseFromParent(); // The pseudo is gone now.
10633 return BB;
10634}
10635
10636MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010637X86TargetLowering::EmitVAARG64WithCustomInserter(
10638 MachineInstr *MI,
10639 MachineBasicBlock *MBB) const {
10640 // Emit va_arg instruction on X86-64.
10641
10642 // Operands to this pseudo-instruction:
10643 // 0 ) Output : destination address (reg)
10644 // 1-5) Input : va_list address (addr, i64mem)
10645 // 6 ) ArgSize : Size (in bytes) of vararg type
10646 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10647 // 8 ) Align : Alignment of type
10648 // 9 ) EFLAGS (implicit-def)
10649
10650 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10651 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10652
10653 unsigned DestReg = MI->getOperand(0).getReg();
10654 MachineOperand &Base = MI->getOperand(1);
10655 MachineOperand &Scale = MI->getOperand(2);
10656 MachineOperand &Index = MI->getOperand(3);
10657 MachineOperand &Disp = MI->getOperand(4);
10658 MachineOperand &Segment = MI->getOperand(5);
10659 unsigned ArgSize = MI->getOperand(6).getImm();
10660 unsigned ArgMode = MI->getOperand(7).getImm();
10661 unsigned Align = MI->getOperand(8).getImm();
10662
10663 // Memory Reference
10664 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10665 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10666 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10667
10668 // Machine Information
10669 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10670 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10671 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10672 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10673 DebugLoc DL = MI->getDebugLoc();
10674
10675 // struct va_list {
10676 // i32 gp_offset
10677 // i32 fp_offset
10678 // i64 overflow_area (address)
10679 // i64 reg_save_area (address)
10680 // }
10681 // sizeof(va_list) = 24
10682 // alignment(va_list) = 8
10683
10684 unsigned TotalNumIntRegs = 6;
10685 unsigned TotalNumXMMRegs = 8;
10686 bool UseGPOffset = (ArgMode == 1);
10687 bool UseFPOffset = (ArgMode == 2);
10688 unsigned MaxOffset = TotalNumIntRegs * 8 +
10689 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10690
10691 /* Align ArgSize to a multiple of 8 */
10692 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10693 bool NeedsAlign = (Align > 8);
10694
10695 MachineBasicBlock *thisMBB = MBB;
10696 MachineBasicBlock *overflowMBB;
10697 MachineBasicBlock *offsetMBB;
10698 MachineBasicBlock *endMBB;
10699
10700 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10701 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10702 unsigned OffsetReg = 0;
10703
10704 if (!UseGPOffset && !UseFPOffset) {
10705 // If we only pull from the overflow region, we don't create a branch.
10706 // We don't need to alter control flow.
10707 OffsetDestReg = 0; // unused
10708 OverflowDestReg = DestReg;
10709
10710 offsetMBB = NULL;
10711 overflowMBB = thisMBB;
10712 endMBB = thisMBB;
10713 } else {
10714 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10715 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10716 // If not, pull from overflow_area. (branch to overflowMBB)
10717 //
10718 // thisMBB
10719 // | .
10720 // | .
10721 // offsetMBB overflowMBB
10722 // | .
10723 // | .
10724 // endMBB
10725
10726 // Registers for the PHI in endMBB
10727 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10728 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10729
10730 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10731 MachineFunction *MF = MBB->getParent();
10732 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10733 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10734 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10735
10736 MachineFunction::iterator MBBIter = MBB;
10737 ++MBBIter;
10738
10739 // Insert the new basic blocks
10740 MF->insert(MBBIter, offsetMBB);
10741 MF->insert(MBBIter, overflowMBB);
10742 MF->insert(MBBIter, endMBB);
10743
10744 // Transfer the remainder of MBB and its successor edges to endMBB.
10745 endMBB->splice(endMBB->begin(), thisMBB,
10746 llvm::next(MachineBasicBlock::iterator(MI)),
10747 thisMBB->end());
10748 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10749
10750 // Make offsetMBB and overflowMBB successors of thisMBB
10751 thisMBB->addSuccessor(offsetMBB);
10752 thisMBB->addSuccessor(overflowMBB);
10753
10754 // endMBB is a successor of both offsetMBB and overflowMBB
10755 offsetMBB->addSuccessor(endMBB);
10756 overflowMBB->addSuccessor(endMBB);
10757
10758 // Load the offset value into a register
10759 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10760 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10761 .addOperand(Base)
10762 .addOperand(Scale)
10763 .addOperand(Index)
10764 .addDisp(Disp, UseFPOffset ? 4 : 0)
10765 .addOperand(Segment)
10766 .setMemRefs(MMOBegin, MMOEnd);
10767
10768 // Check if there is enough room left to pull this argument.
10769 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10770 .addReg(OffsetReg)
10771 .addImm(MaxOffset + 8 - ArgSizeA8);
10772
10773 // Branch to "overflowMBB" if offset >= max
10774 // Fall through to "offsetMBB" otherwise
10775 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10776 .addMBB(overflowMBB);
10777 }
10778
10779 // In offsetMBB, emit code to use the reg_save_area.
10780 if (offsetMBB) {
10781 assert(OffsetReg != 0);
10782
10783 // Read the reg_save_area address.
10784 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10785 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10786 .addOperand(Base)
10787 .addOperand(Scale)
10788 .addOperand(Index)
10789 .addDisp(Disp, 16)
10790 .addOperand(Segment)
10791 .setMemRefs(MMOBegin, MMOEnd);
10792
10793 // Zero-extend the offset
10794 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10795 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10796 .addImm(0)
10797 .addReg(OffsetReg)
10798 .addImm(X86::sub_32bit);
10799
10800 // Add the offset to the reg_save_area to get the final address.
10801 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10802 .addReg(OffsetReg64)
10803 .addReg(RegSaveReg);
10804
10805 // Compute the offset for the next argument
10806 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10807 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10808 .addReg(OffsetReg)
10809 .addImm(UseFPOffset ? 16 : 8);
10810
10811 // Store it back into the va_list.
10812 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10813 .addOperand(Base)
10814 .addOperand(Scale)
10815 .addOperand(Index)
10816 .addDisp(Disp, UseFPOffset ? 4 : 0)
10817 .addOperand(Segment)
10818 .addReg(NextOffsetReg)
10819 .setMemRefs(MMOBegin, MMOEnd);
10820
10821 // Jump to endMBB
10822 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10823 .addMBB(endMBB);
10824 }
10825
10826 //
10827 // Emit code to use overflow area
10828 //
10829
10830 // Load the overflow_area address into a register.
10831 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10832 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10833 .addOperand(Base)
10834 .addOperand(Scale)
10835 .addOperand(Index)
10836 .addDisp(Disp, 8)
10837 .addOperand(Segment)
10838 .setMemRefs(MMOBegin, MMOEnd);
10839
10840 // If we need to align it, do so. Otherwise, just copy the address
10841 // to OverflowDestReg.
10842 if (NeedsAlign) {
10843 // Align the overflow address
10844 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10845 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10846
10847 // aligned_addr = (addr + (align-1)) & ~(align-1)
10848 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10849 .addReg(OverflowAddrReg)
10850 .addImm(Align-1);
10851
10852 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10853 .addReg(TmpReg)
10854 .addImm(~(uint64_t)(Align-1));
10855 } else {
10856 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10857 .addReg(OverflowAddrReg);
10858 }
10859
10860 // Compute the next overflow address after this argument.
10861 // (the overflow address should be kept 8-byte aligned)
10862 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10863 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10864 .addReg(OverflowDestReg)
10865 .addImm(ArgSizeA8);
10866
10867 // Store the new overflow address.
10868 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10869 .addOperand(Base)
10870 .addOperand(Scale)
10871 .addOperand(Index)
10872 .addDisp(Disp, 8)
10873 .addOperand(Segment)
10874 .addReg(NextAddrReg)
10875 .setMemRefs(MMOBegin, MMOEnd);
10876
10877 // If we branched, emit the PHI to the front of endMBB.
10878 if (offsetMBB) {
10879 BuildMI(*endMBB, endMBB->begin(), DL,
10880 TII->get(X86::PHI), DestReg)
10881 .addReg(OffsetDestReg).addMBB(offsetMBB)
10882 .addReg(OverflowDestReg).addMBB(overflowMBB);
10883 }
10884
10885 // Erase the pseudo instruction
10886 MI->eraseFromParent();
10887
10888 return endMBB;
10889}
10890
10891MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010892X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10893 MachineInstr *MI,
10894 MachineBasicBlock *MBB) const {
10895 // Emit code to save XMM registers to the stack. The ABI says that the
10896 // number of registers to save is given in %al, so it's theoretically
10897 // possible to do an indirect jump trick to avoid saving all of them,
10898 // however this code takes a simpler approach and just executes all
10899 // of the stores if %al is non-zero. It's less code, and it's probably
10900 // easier on the hardware branch predictor, and stores aren't all that
10901 // expensive anyway.
10902
10903 // Create the new basic blocks. One block contains all the XMM stores,
10904 // and one block is the final destination regardless of whether any
10905 // stores were performed.
10906 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10907 MachineFunction *F = MBB->getParent();
10908 MachineFunction::iterator MBBIter = MBB;
10909 ++MBBIter;
10910 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10911 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10912 F->insert(MBBIter, XMMSaveMBB);
10913 F->insert(MBBIter, EndMBB);
10914
Dan Gohman14152b42010-07-06 20:24:04 +000010915 // Transfer the remainder of MBB and its successor edges to EndMBB.
10916 EndMBB->splice(EndMBB->begin(), MBB,
10917 llvm::next(MachineBasicBlock::iterator(MI)),
10918 MBB->end());
10919 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10920
Dan Gohmand6708ea2009-08-15 01:38:56 +000010921 // The original block will now fall through to the XMM save block.
10922 MBB->addSuccessor(XMMSaveMBB);
10923 // The XMMSaveMBB will fall through to the end block.
10924 XMMSaveMBB->addSuccessor(EndMBB);
10925
10926 // Now add the instructions.
10927 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10928 DebugLoc DL = MI->getDebugLoc();
10929
10930 unsigned CountReg = MI->getOperand(0).getReg();
10931 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10932 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10933
10934 if (!Subtarget->isTargetWin64()) {
10935 // If %al is 0, branch around the XMM save block.
10936 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010937 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010938 MBB->addSuccessor(EndMBB);
10939 }
10940
10941 // In the XMM save block, save all the XMM argument registers.
10942 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10943 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010944 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010945 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010946 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010947 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010948 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010949 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10950 .addFrameIndex(RegSaveFrameIndex)
10951 .addImm(/*Scale=*/1)
10952 .addReg(/*IndexReg=*/0)
10953 .addImm(/*Disp=*/Offset)
10954 .addReg(/*Segment=*/0)
10955 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010956 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010957 }
10958
Dan Gohman14152b42010-07-06 20:24:04 +000010959 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010960
10961 return EndMBB;
10962}
Mon P Wang63307c32008-05-05 19:05:59 +000010963
Evan Cheng60c07e12006-07-05 22:17:51 +000010964MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010965X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010966 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010967 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10968 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010969
Chris Lattner52600972009-09-02 05:57:00 +000010970 // To "insert" a SELECT_CC instruction, we actually have to insert the
10971 // diamond control-flow pattern. The incoming instruction knows the
10972 // destination vreg to set, the condition code register to branch on, the
10973 // true/false values to select between, and a branch opcode to use.
10974 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10975 MachineFunction::iterator It = BB;
10976 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010977
Chris Lattner52600972009-09-02 05:57:00 +000010978 // thisMBB:
10979 // ...
10980 // TrueVal = ...
10981 // cmpTY ccX, r1, r2
10982 // bCC copy1MBB
10983 // fallthrough --> copy0MBB
10984 MachineBasicBlock *thisMBB = BB;
10985 MachineFunction *F = BB->getParent();
10986 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10987 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010988 F->insert(It, copy0MBB);
10989 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010990
Bill Wendling730c07e2010-06-25 20:48:10 +000010991 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10992 // live into the sink and copy blocks.
10993 const MachineFunction *MF = BB->getParent();
10994 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10995 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010996
Dan Gohman14152b42010-07-06 20:24:04 +000010997 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10998 const MachineOperand &MO = MI->getOperand(I);
10999 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000011000 unsigned Reg = MO.getReg();
11001 if (Reg != X86::EFLAGS) continue;
11002 copy0MBB->addLiveIn(Reg);
11003 sinkMBB->addLiveIn(Reg);
11004 }
11005
Dan Gohman14152b42010-07-06 20:24:04 +000011006 // Transfer the remainder of BB and its successor edges to sinkMBB.
11007 sinkMBB->splice(sinkMBB->begin(), BB,
11008 llvm::next(MachineBasicBlock::iterator(MI)),
11009 BB->end());
11010 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11011
11012 // Add the true and fallthrough blocks as its successors.
11013 BB->addSuccessor(copy0MBB);
11014 BB->addSuccessor(sinkMBB);
11015
11016 // Create the conditional branch instruction.
11017 unsigned Opc =
11018 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11019 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11020
Chris Lattner52600972009-09-02 05:57:00 +000011021 // copy0MBB:
11022 // %FalseValue = ...
11023 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011024 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011025
Chris Lattner52600972009-09-02 05:57:00 +000011026 // sinkMBB:
11027 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11028 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011029 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11030 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011031 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11032 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11033
Dan Gohman14152b42010-07-06 20:24:04 +000011034 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011035 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011036}
11037
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011038MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011039X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011040 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011041 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11042 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011043
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011044 assert(!Subtarget->isTargetEnvMacho());
11045
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011046 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11047 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011048
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011049 if (Subtarget->isTargetWin64()) {
11050 if (Subtarget->isTargetCygMing()) {
11051 // ___chkstk(Mingw64):
11052 // Clobbers R10, R11, RAX and EFLAGS.
11053 // Updates RSP.
11054 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11055 .addExternalSymbol("___chkstk")
11056 .addReg(X86::RAX, RegState::Implicit)
11057 .addReg(X86::RSP, RegState::Implicit)
11058 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11059 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11060 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11061 } else {
11062 // __chkstk(MSVCRT): does not update stack pointer.
11063 // Clobbers R10, R11 and EFLAGS.
11064 // FIXME: RAX(allocated size) might be reused and not killed.
11065 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11066 .addExternalSymbol("__chkstk")
11067 .addReg(X86::RAX, RegState::Implicit)
11068 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11069 // RAX has the offset to subtracted from RSP.
11070 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11071 .addReg(X86::RSP)
11072 .addReg(X86::RAX);
11073 }
11074 } else {
11075 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011076 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11077
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011078 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11079 .addExternalSymbol(StackProbeSymbol)
11080 .addReg(X86::EAX, RegState::Implicit)
11081 .addReg(X86::ESP, RegState::Implicit)
11082 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11083 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11084 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11085 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011086
Dan Gohman14152b42010-07-06 20:24:04 +000011087 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011088 return BB;
11089}
Chris Lattner52600972009-09-02 05:57:00 +000011090
11091MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011092X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11093 MachineBasicBlock *BB) const {
11094 // This is pretty easy. We're taking the value that we received from
11095 // our load from the relocation, sticking it in either RDI (x86-64)
11096 // or EAX and doing an indirect call. The return value will then
11097 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011098 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011099 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011100 DebugLoc DL = MI->getDebugLoc();
11101 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011102
11103 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011104 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011105
Eric Christopher30ef0e52010-06-03 04:07:48 +000011106 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011107 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11108 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011109 .addReg(X86::RIP)
11110 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011111 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011112 MI->getOperand(3).getTargetFlags())
11113 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011114 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011115 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011116 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011117 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11118 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011119 .addReg(0)
11120 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011121 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011122 MI->getOperand(3).getTargetFlags())
11123 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011124 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011125 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011126 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011127 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11128 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011129 .addReg(TII->getGlobalBaseReg(F))
11130 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011131 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011132 MI->getOperand(3).getTargetFlags())
11133 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011134 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011135 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011136 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011137
Dan Gohman14152b42010-07-06 20:24:04 +000011138 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011139 return BB;
11140}
11141
11142MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011143X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011144 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011145 switch (MI->getOpcode()) {
11146 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011147 case X86::TAILJMPd64:
11148 case X86::TAILJMPr64:
11149 case X86::TAILJMPm64:
11150 assert(!"TAILJMP64 would not be touched here.");
11151 case X86::TCRETURNdi64:
11152 case X86::TCRETURNri64:
11153 case X86::TCRETURNmi64:
11154 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11155 // On AMD64, additional defs should be added before register allocation.
11156 if (!Subtarget->isTargetWin64()) {
11157 MI->addRegisterDefined(X86::RSI);
11158 MI->addRegisterDefined(X86::RDI);
11159 MI->addRegisterDefined(X86::XMM6);
11160 MI->addRegisterDefined(X86::XMM7);
11161 MI->addRegisterDefined(X86::XMM8);
11162 MI->addRegisterDefined(X86::XMM9);
11163 MI->addRegisterDefined(X86::XMM10);
11164 MI->addRegisterDefined(X86::XMM11);
11165 MI->addRegisterDefined(X86::XMM12);
11166 MI->addRegisterDefined(X86::XMM13);
11167 MI->addRegisterDefined(X86::XMM14);
11168 MI->addRegisterDefined(X86::XMM15);
11169 }
11170 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011171 case X86::WIN_ALLOCA:
11172 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011173 case X86::TLSCall_32:
11174 case X86::TLSCall_64:
11175 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011176 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011177 case X86::CMOV_FR32:
11178 case X86::CMOV_FR64:
11179 case X86::CMOV_V4F32:
11180 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011181 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000011182 case X86::CMOV_V8F32:
11183 case X86::CMOV_V4F64:
11184 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011185 case X86::CMOV_GR16:
11186 case X86::CMOV_GR32:
11187 case X86::CMOV_RFP32:
11188 case X86::CMOV_RFP64:
11189 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011190 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011191
Dale Johannesen849f2142007-07-03 00:53:03 +000011192 case X86::FP32_TO_INT16_IN_MEM:
11193 case X86::FP32_TO_INT32_IN_MEM:
11194 case X86::FP32_TO_INT64_IN_MEM:
11195 case X86::FP64_TO_INT16_IN_MEM:
11196 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011197 case X86::FP64_TO_INT64_IN_MEM:
11198 case X86::FP80_TO_INT16_IN_MEM:
11199 case X86::FP80_TO_INT32_IN_MEM:
11200 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011201 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11202 DebugLoc DL = MI->getDebugLoc();
11203
Evan Cheng60c07e12006-07-05 22:17:51 +000011204 // Change the floating point control register to use "round towards zero"
11205 // mode when truncating to an integer value.
11206 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011207 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011208 addFrameReference(BuildMI(*BB, MI, DL,
11209 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011210
11211 // Load the old value of the high byte of the control word...
11212 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011213 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011214 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011215 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011216
11217 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011218 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011219 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011220
11221 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011222 addFrameReference(BuildMI(*BB, MI, DL,
11223 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011224
11225 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011226 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011227 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011228
11229 // Get the X86 opcode to use.
11230 unsigned Opc;
11231 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011232 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011233 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11234 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11235 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11236 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11237 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11238 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011239 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11240 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11241 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011242 }
11243
11244 X86AddressMode AM;
11245 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011246 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011247 AM.BaseType = X86AddressMode::RegBase;
11248 AM.Base.Reg = Op.getReg();
11249 } else {
11250 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011251 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011252 }
11253 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011254 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011255 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011256 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011257 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011258 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011259 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011260 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011261 AM.GV = Op.getGlobal();
11262 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011263 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011264 }
Dan Gohman14152b42010-07-06 20:24:04 +000011265 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011266 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011267
11268 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011269 addFrameReference(BuildMI(*BB, MI, DL,
11270 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011271
Dan Gohman14152b42010-07-06 20:24:04 +000011272 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011273 return BB;
11274 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011275 // String/text processing lowering.
11276 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011277 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011278 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11279 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011280 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011281 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11282 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011283 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011284 return EmitPCMP(MI, BB, 5, false /* in mem */);
11285 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011286 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011287 return EmitPCMP(MI, BB, 5, true /* in mem */);
11288
Eric Christopher228232b2010-11-30 07:20:12 +000011289 // Thread synchronization.
11290 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011291 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011292 case X86::MWAIT:
11293 return EmitMwait(MI, BB);
11294
Eric Christopherb120ab42009-08-18 22:50:32 +000011295 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011296 case X86::ATOMAND32:
11297 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011298 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011299 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011300 X86::NOT32r, X86::EAX,
11301 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011302 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011303 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11304 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011305 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011306 X86::NOT32r, X86::EAX,
11307 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011308 case X86::ATOMXOR32:
11309 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011310 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011311 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011312 X86::NOT32r, X86::EAX,
11313 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011314 case X86::ATOMNAND32:
11315 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011316 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011317 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011318 X86::NOT32r, X86::EAX,
11319 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011320 case X86::ATOMMIN32:
11321 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11322 case X86::ATOMMAX32:
11323 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11324 case X86::ATOMUMIN32:
11325 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11326 case X86::ATOMUMAX32:
11327 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011328
11329 case X86::ATOMAND16:
11330 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11331 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011332 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011333 X86::NOT16r, X86::AX,
11334 X86::GR16RegisterClass);
11335 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011336 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011337 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011338 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011339 X86::NOT16r, X86::AX,
11340 X86::GR16RegisterClass);
11341 case X86::ATOMXOR16:
11342 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11343 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011344 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011345 X86::NOT16r, X86::AX,
11346 X86::GR16RegisterClass);
11347 case X86::ATOMNAND16:
11348 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11349 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011350 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011351 X86::NOT16r, X86::AX,
11352 X86::GR16RegisterClass, true);
11353 case X86::ATOMMIN16:
11354 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11355 case X86::ATOMMAX16:
11356 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11357 case X86::ATOMUMIN16:
11358 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11359 case X86::ATOMUMAX16:
11360 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11361
11362 case X86::ATOMAND8:
11363 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11364 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011365 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011366 X86::NOT8r, X86::AL,
11367 X86::GR8RegisterClass);
11368 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011369 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011370 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011371 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011372 X86::NOT8r, X86::AL,
11373 X86::GR8RegisterClass);
11374 case X86::ATOMXOR8:
11375 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11376 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011377 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011378 X86::NOT8r, X86::AL,
11379 X86::GR8RegisterClass);
11380 case X86::ATOMNAND8:
11381 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11382 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011383 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011384 X86::NOT8r, X86::AL,
11385 X86::GR8RegisterClass, true);
11386 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011387 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011388 case X86::ATOMAND64:
11389 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011390 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011391 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011392 X86::NOT64r, X86::RAX,
11393 X86::GR64RegisterClass);
11394 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011395 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11396 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011397 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011398 X86::NOT64r, X86::RAX,
11399 X86::GR64RegisterClass);
11400 case X86::ATOMXOR64:
11401 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011402 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011403 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011404 X86::NOT64r, X86::RAX,
11405 X86::GR64RegisterClass);
11406 case X86::ATOMNAND64:
11407 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11408 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011409 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011410 X86::NOT64r, X86::RAX,
11411 X86::GR64RegisterClass, true);
11412 case X86::ATOMMIN64:
11413 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11414 case X86::ATOMMAX64:
11415 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11416 case X86::ATOMUMIN64:
11417 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11418 case X86::ATOMUMAX64:
11419 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011420
11421 // This group does 64-bit operations on a 32-bit host.
11422 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011423 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011424 X86::AND32rr, X86::AND32rr,
11425 X86::AND32ri, X86::AND32ri,
11426 false);
11427 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011428 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011429 X86::OR32rr, X86::OR32rr,
11430 X86::OR32ri, X86::OR32ri,
11431 false);
11432 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011433 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011434 X86::XOR32rr, X86::XOR32rr,
11435 X86::XOR32ri, X86::XOR32ri,
11436 false);
11437 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011438 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011439 X86::AND32rr, X86::AND32rr,
11440 X86::AND32ri, X86::AND32ri,
11441 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011442 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011443 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011444 X86::ADD32rr, X86::ADC32rr,
11445 X86::ADD32ri, X86::ADC32ri,
11446 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011447 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011448 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011449 X86::SUB32rr, X86::SBB32rr,
11450 X86::SUB32ri, X86::SBB32ri,
11451 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011452 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011453 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011454 X86::MOV32rr, X86::MOV32rr,
11455 X86::MOV32ri, X86::MOV32ri,
11456 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011457 case X86::VASTART_SAVE_XMM_REGS:
11458 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011459
11460 case X86::VAARG_64:
11461 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011462 }
11463}
11464
11465//===----------------------------------------------------------------------===//
11466// X86 Optimization Hooks
11467//===----------------------------------------------------------------------===//
11468
Dan Gohman475871a2008-07-27 21:46:04 +000011469void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011470 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011471 APInt &KnownZero,
11472 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011473 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011474 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011475 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011476 assert((Opc >= ISD::BUILTIN_OP_END ||
11477 Opc == ISD::INTRINSIC_WO_CHAIN ||
11478 Opc == ISD::INTRINSIC_W_CHAIN ||
11479 Opc == ISD::INTRINSIC_VOID) &&
11480 "Should use MaskedValueIsZero if you don't know whether Op"
11481 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011482
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011483 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011484 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011485 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011486 case X86ISD::ADD:
11487 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011488 case X86ISD::ADC:
11489 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011490 case X86ISD::SMUL:
11491 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011492 case X86ISD::INC:
11493 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011494 case X86ISD::OR:
11495 case X86ISD::XOR:
11496 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011497 // These nodes' second result is a boolean.
11498 if (Op.getResNo() == 0)
11499 break;
11500 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011501 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011502 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11503 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011504 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011505 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011506}
Chris Lattner259e97c2006-01-31 19:43:35 +000011507
Owen Andersonbc146b02010-09-21 20:42:50 +000011508unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11509 unsigned Depth) const {
11510 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11511 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11512 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011513
Owen Andersonbc146b02010-09-21 20:42:50 +000011514 // Fallback case.
11515 return 1;
11516}
11517
Evan Cheng206ee9d2006-07-07 08:33:52 +000011518/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011519/// node is a GlobalAddress + offset.
11520bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011521 const GlobalValue* &GA,
11522 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011523 if (N->getOpcode() == X86ISD::Wrapper) {
11524 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011525 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011526 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011527 return true;
11528 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011529 }
Evan Chengad4196b2008-05-12 19:56:52 +000011530 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011531}
11532
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011533/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11534static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11535 TargetLowering::DAGCombinerInfo &DCI) {
11536 DebugLoc dl = N->getDebugLoc();
11537 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11538 SDValue V1 = SVOp->getOperand(0);
11539 SDValue V2 = SVOp->getOperand(1);
11540 EVT VT = SVOp->getValueType(0);
11541
11542 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11543 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11544 //
11545 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011546 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011547 // V UNDEF BUILD_VECTOR UNDEF
11548 // \ / \ /
11549 // CONCAT_VECTOR CONCAT_VECTOR
11550 // \ /
11551 // \ /
11552 // RESULT: V + zero extended
11553 //
11554 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11555 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11556 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11557 return SDValue();
11558
11559 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11560 return SDValue();
11561
11562 // To match the shuffle mask, the first half of the mask should
11563 // be exactly the first vector, and all the rest a splat with the
11564 // first element of the second one.
11565 int NumElems = VT.getVectorNumElements();
11566 for (int i = 0; i < NumElems/2; ++i)
11567 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11568 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11569 return SDValue();
11570
11571 // Emit a zeroed vector and insert the desired subvector on its
11572 // first half.
11573 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11574 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11575 DAG.getConstant(0, MVT::i32), DAG, dl);
11576 return DCI.CombineTo(N, InsV);
11577 }
11578
11579 return SDValue();
11580}
11581
11582/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011583static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011584 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011585 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011586 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011587
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011588 // Don't create instructions with illegal types after legalize types has run.
11589 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11590 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11591 return SDValue();
11592
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011593 // Only handle pure VECTOR_SHUFFLE nodes.
11594 if (VT.getSizeInBits() == 256 && N->getOpcode() == ISD::VECTOR_SHUFFLE)
11595 return PerformShuffleCombine256(N, DAG, DCI);
11596
11597 // Only handle 128 wide vector from here on.
11598 if (VT.getSizeInBits() != 128)
11599 return SDValue();
11600
11601 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11602 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11603 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011604 SmallVector<SDValue, 16> Elts;
11605 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011606 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011607
Nate Begemanfdea31a2010-03-24 20:49:50 +000011608 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011609}
Evan Chengd880b972008-05-09 21:53:03 +000011610
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011611/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11612/// generation and convert it from being a bunch of shuffles and extracts
11613/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011614static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11615 const TargetLowering &TLI) {
11616 SDValue InputVector = N->getOperand(0);
11617
11618 // Only operate on vectors of 4 elements, where the alternative shuffling
11619 // gets to be more expensive.
11620 if (InputVector.getValueType() != MVT::v4i32)
11621 return SDValue();
11622
11623 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11624 // single use which is a sign-extend or zero-extend, and all elements are
11625 // used.
11626 SmallVector<SDNode *, 4> Uses;
11627 unsigned ExtractedElements = 0;
11628 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11629 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11630 if (UI.getUse().getResNo() != InputVector.getResNo())
11631 return SDValue();
11632
11633 SDNode *Extract = *UI;
11634 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11635 return SDValue();
11636
11637 if (Extract->getValueType(0) != MVT::i32)
11638 return SDValue();
11639 if (!Extract->hasOneUse())
11640 return SDValue();
11641 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11642 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11643 return SDValue();
11644 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11645 return SDValue();
11646
11647 // Record which element was extracted.
11648 ExtractedElements |=
11649 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11650
11651 Uses.push_back(Extract);
11652 }
11653
11654 // If not all the elements were used, this may not be worthwhile.
11655 if (ExtractedElements != 15)
11656 return SDValue();
11657
11658 // Ok, we've now decided to do the transformation.
11659 DebugLoc dl = InputVector.getDebugLoc();
11660
11661 // Store the value to a temporary stack slot.
11662 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011663 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11664 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011665
11666 // Replace each use (extract) with a load of the appropriate element.
11667 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11668 UE = Uses.end(); UI != UE; ++UI) {
11669 SDNode *Extract = *UI;
11670
Nadav Rotem86694292011-05-17 08:31:57 +000011671 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011672 SDValue Idx = Extract->getOperand(1);
11673 unsigned EltSize =
11674 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11675 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11676 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11677
Nadav Rotem86694292011-05-17 08:31:57 +000011678 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011679 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011680
11681 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011682 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011683 ScalarAddr, MachinePointerInfo(),
11684 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011685
11686 // Replace the exact with the load.
11687 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11688 }
11689
11690 // The replacement was made in place; don't return anything.
11691 return SDValue();
11692}
11693
Chris Lattner83e6c992006-10-04 06:57:07 +000011694/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011695static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011696 const X86Subtarget *Subtarget) {
11697 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011698 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011699 // Get the LHS/RHS of the select.
11700 SDValue LHS = N->getOperand(1);
11701 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011702
Dan Gohman670e5392009-09-21 18:03:22 +000011703 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011704 // instructions match the semantics of the common C idiom x<y?x:y but not
11705 // x<=y?x:y, because of how they handle negative zero (which can be
11706 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011707 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011708 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011709 Cond.getOpcode() == ISD::SETCC) {
11710 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011711
Chris Lattner47b4ce82009-03-11 05:48:52 +000011712 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011713 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011714 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11715 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011716 switch (CC) {
11717 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011718 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011719 // Converting this to a min would handle NaNs incorrectly, and swapping
11720 // the operands would cause it to handle comparisons between positive
11721 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011722 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011723 if (!UnsafeFPMath &&
11724 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11725 break;
11726 std::swap(LHS, RHS);
11727 }
Dan Gohman670e5392009-09-21 18:03:22 +000011728 Opcode = X86ISD::FMIN;
11729 break;
11730 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011731 // Converting this to a min would handle comparisons between positive
11732 // and negative zero incorrectly.
11733 if (!UnsafeFPMath &&
11734 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11735 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011736 Opcode = X86ISD::FMIN;
11737 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011738 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011739 // Converting this to a min would handle both negative zeros and NaNs
11740 // incorrectly, but we can swap the operands to fix both.
11741 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011742 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011743 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011744 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011745 Opcode = X86ISD::FMIN;
11746 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011747
Dan Gohman670e5392009-09-21 18:03:22 +000011748 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011749 // Converting this to a max would handle comparisons between positive
11750 // and negative zero incorrectly.
11751 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000011752 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011753 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011754 Opcode = X86ISD::FMAX;
11755 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011756 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011757 // Converting this to a max would handle NaNs incorrectly, and swapping
11758 // the operands would cause it to handle comparisons between positive
11759 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011760 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011761 if (!UnsafeFPMath &&
11762 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11763 break;
11764 std::swap(LHS, RHS);
11765 }
Dan Gohman670e5392009-09-21 18:03:22 +000011766 Opcode = X86ISD::FMAX;
11767 break;
11768 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011769 // Converting this to a max would handle both negative zeros and NaNs
11770 // incorrectly, but we can swap the operands to fix both.
11771 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011772 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011773 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011774 case ISD::SETGE:
11775 Opcode = X86ISD::FMAX;
11776 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011777 }
Dan Gohman670e5392009-09-21 18:03:22 +000011778 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011779 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11780 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011781 switch (CC) {
11782 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011783 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011784 // Converting this to a min would handle comparisons between positive
11785 // and negative zero incorrectly, and swapping the operands would
11786 // cause it to handle NaNs incorrectly.
11787 if (!UnsafeFPMath &&
11788 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011789 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011790 break;
11791 std::swap(LHS, RHS);
11792 }
Dan Gohman670e5392009-09-21 18:03:22 +000011793 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011794 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011795 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011796 // Converting this to a min would handle NaNs incorrectly.
11797 if (!UnsafeFPMath &&
11798 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11799 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011800 Opcode = X86ISD::FMIN;
11801 break;
11802 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011803 // Converting this to a min would handle both negative zeros and NaNs
11804 // incorrectly, but we can swap the operands to fix both.
11805 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011806 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011807 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011808 case ISD::SETGE:
11809 Opcode = X86ISD::FMIN;
11810 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011811
Dan Gohman670e5392009-09-21 18:03:22 +000011812 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011813 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011814 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011815 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011816 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011817 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011818 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011819 // Converting this to a max would handle comparisons between positive
11820 // and negative zero incorrectly, and swapping the operands would
11821 // cause it to handle NaNs incorrectly.
11822 if (!UnsafeFPMath &&
11823 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011824 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011825 break;
11826 std::swap(LHS, RHS);
11827 }
Dan Gohman670e5392009-09-21 18:03:22 +000011828 Opcode = X86ISD::FMAX;
11829 break;
11830 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011831 // Converting this to a max would handle both negative zeros and NaNs
11832 // incorrectly, but we can swap the operands to fix both.
11833 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011834 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011835 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011836 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011837 Opcode = X86ISD::FMAX;
11838 break;
11839 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011840 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011841
Chris Lattner47b4ce82009-03-11 05:48:52 +000011842 if (Opcode)
11843 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011844 }
Eric Christopherfd179292009-08-27 18:07:15 +000011845
Chris Lattnerd1980a52009-03-12 06:52:53 +000011846 // If this is a select between two integer constants, try to do some
11847 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011848 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11849 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011850 // Don't do this for crazy integer types.
11851 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11852 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011853 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011854 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011855
Chris Lattnercee56e72009-03-13 05:53:31 +000011856 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011857 // Efficiently invertible.
11858 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11859 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11860 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11861 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011862 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011863 }
Eric Christopherfd179292009-08-27 18:07:15 +000011864
Chris Lattnerd1980a52009-03-12 06:52:53 +000011865 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011866 if (FalseC->getAPIntValue() == 0 &&
11867 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011868 if (NeedsCondInvert) // Invert the condition if needed.
11869 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11870 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011871
Chris Lattnerd1980a52009-03-12 06:52:53 +000011872 // Zero extend the condition if needed.
11873 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011874
Chris Lattnercee56e72009-03-13 05:53:31 +000011875 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011876 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011877 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011878 }
Eric Christopherfd179292009-08-27 18:07:15 +000011879
Chris Lattner97a29a52009-03-13 05:22:11 +000011880 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011881 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011882 if (NeedsCondInvert) // Invert the condition if needed.
11883 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11884 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011885
Chris Lattner97a29a52009-03-13 05:22:11 +000011886 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011887 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11888 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011889 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011890 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011891 }
Eric Christopherfd179292009-08-27 18:07:15 +000011892
Chris Lattnercee56e72009-03-13 05:53:31 +000011893 // Optimize cases that will turn into an LEA instruction. This requires
11894 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011895 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011896 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011897 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011898
Chris Lattnercee56e72009-03-13 05:53:31 +000011899 bool isFastMultiplier = false;
11900 if (Diff < 10) {
11901 switch ((unsigned char)Diff) {
11902 default: break;
11903 case 1: // result = add base, cond
11904 case 2: // result = lea base( , cond*2)
11905 case 3: // result = lea base(cond, cond*2)
11906 case 4: // result = lea base( , cond*4)
11907 case 5: // result = lea base(cond, cond*4)
11908 case 8: // result = lea base( , cond*8)
11909 case 9: // result = lea base(cond, cond*8)
11910 isFastMultiplier = true;
11911 break;
11912 }
11913 }
Eric Christopherfd179292009-08-27 18:07:15 +000011914
Chris Lattnercee56e72009-03-13 05:53:31 +000011915 if (isFastMultiplier) {
11916 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11917 if (NeedsCondInvert) // Invert the condition if needed.
11918 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11919 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011920
Chris Lattnercee56e72009-03-13 05:53:31 +000011921 // Zero extend the condition if needed.
11922 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11923 Cond);
11924 // Scale the condition by the difference.
11925 if (Diff != 1)
11926 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11927 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011928
Chris Lattnercee56e72009-03-13 05:53:31 +000011929 // Add the base if non-zero.
11930 if (FalseC->getAPIntValue() != 0)
11931 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11932 SDValue(FalseC, 0));
11933 return Cond;
11934 }
Eric Christopherfd179292009-08-27 18:07:15 +000011935 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011936 }
11937 }
Eric Christopherfd179292009-08-27 18:07:15 +000011938
Dan Gohman475871a2008-07-27 21:46:04 +000011939 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011940}
11941
Chris Lattnerd1980a52009-03-12 06:52:53 +000011942/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11943static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11944 TargetLowering::DAGCombinerInfo &DCI) {
11945 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011946
Chris Lattnerd1980a52009-03-12 06:52:53 +000011947 // If the flag operand isn't dead, don't touch this CMOV.
11948 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11949 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011950
Evan Chengb5a55d92011-05-24 01:48:22 +000011951 SDValue FalseOp = N->getOperand(0);
11952 SDValue TrueOp = N->getOperand(1);
11953 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11954 SDValue Cond = N->getOperand(3);
11955 if (CC == X86::COND_E || CC == X86::COND_NE) {
11956 switch (Cond.getOpcode()) {
11957 default: break;
11958 case X86ISD::BSR:
11959 case X86ISD::BSF:
11960 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11961 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11962 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11963 }
11964 }
11965
Chris Lattnerd1980a52009-03-12 06:52:53 +000011966 // If this is a select between two integer constants, try to do some
11967 // optimizations. Note that the operands are ordered the opposite of SELECT
11968 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011969 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11970 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011971 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11972 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011973 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11974 CC = X86::GetOppositeBranchCondition(CC);
11975 std::swap(TrueC, FalseC);
11976 }
Eric Christopherfd179292009-08-27 18:07:15 +000011977
Chris Lattnerd1980a52009-03-12 06:52:53 +000011978 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011979 // This is efficient for any integer data type (including i8/i16) and
11980 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011981 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011982 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11983 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011984
Chris Lattnerd1980a52009-03-12 06:52:53 +000011985 // Zero extend the condition if needed.
11986 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011987
Chris Lattnerd1980a52009-03-12 06:52:53 +000011988 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11989 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011990 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011991 if (N->getNumValues() == 2) // Dead flag value?
11992 return DCI.CombineTo(N, Cond, SDValue());
11993 return Cond;
11994 }
Eric Christopherfd179292009-08-27 18:07:15 +000011995
Chris Lattnercee56e72009-03-13 05:53:31 +000011996 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11997 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011998 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011999 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12000 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012001
Chris Lattner97a29a52009-03-13 05:22:11 +000012002 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012003 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12004 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012005 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12006 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012007
Chris Lattner97a29a52009-03-13 05:22:11 +000012008 if (N->getNumValues() == 2) // Dead flag value?
12009 return DCI.CombineTo(N, Cond, SDValue());
12010 return Cond;
12011 }
Eric Christopherfd179292009-08-27 18:07:15 +000012012
Chris Lattnercee56e72009-03-13 05:53:31 +000012013 // Optimize cases that will turn into an LEA instruction. This requires
12014 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012015 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012016 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012017 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012018
Chris Lattnercee56e72009-03-13 05:53:31 +000012019 bool isFastMultiplier = false;
12020 if (Diff < 10) {
12021 switch ((unsigned char)Diff) {
12022 default: break;
12023 case 1: // result = add base, cond
12024 case 2: // result = lea base( , cond*2)
12025 case 3: // result = lea base(cond, cond*2)
12026 case 4: // result = lea base( , cond*4)
12027 case 5: // result = lea base(cond, cond*4)
12028 case 8: // result = lea base( , cond*8)
12029 case 9: // result = lea base(cond, cond*8)
12030 isFastMultiplier = true;
12031 break;
12032 }
12033 }
Eric Christopherfd179292009-08-27 18:07:15 +000012034
Chris Lattnercee56e72009-03-13 05:53:31 +000012035 if (isFastMultiplier) {
12036 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012037 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12038 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012039 // Zero extend the condition if needed.
12040 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12041 Cond);
12042 // Scale the condition by the difference.
12043 if (Diff != 1)
12044 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12045 DAG.getConstant(Diff, Cond.getValueType()));
12046
12047 // Add the base if non-zero.
12048 if (FalseC->getAPIntValue() != 0)
12049 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12050 SDValue(FalseC, 0));
12051 if (N->getNumValues() == 2) // Dead flag value?
12052 return DCI.CombineTo(N, Cond, SDValue());
12053 return Cond;
12054 }
Eric Christopherfd179292009-08-27 18:07:15 +000012055 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012056 }
12057 }
12058 return SDValue();
12059}
12060
12061
Evan Cheng0b0cd912009-03-28 05:57:29 +000012062/// PerformMulCombine - Optimize a single multiply with constant into two
12063/// in order to implement it with two cheaper instructions, e.g.
12064/// LEA + SHL, LEA + LEA.
12065static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12066 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012067 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12068 return SDValue();
12069
Owen Andersone50ed302009-08-10 22:56:29 +000012070 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012071 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012072 return SDValue();
12073
12074 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12075 if (!C)
12076 return SDValue();
12077 uint64_t MulAmt = C->getZExtValue();
12078 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12079 return SDValue();
12080
12081 uint64_t MulAmt1 = 0;
12082 uint64_t MulAmt2 = 0;
12083 if ((MulAmt % 9) == 0) {
12084 MulAmt1 = 9;
12085 MulAmt2 = MulAmt / 9;
12086 } else if ((MulAmt % 5) == 0) {
12087 MulAmt1 = 5;
12088 MulAmt2 = MulAmt / 5;
12089 } else if ((MulAmt % 3) == 0) {
12090 MulAmt1 = 3;
12091 MulAmt2 = MulAmt / 3;
12092 }
12093 if (MulAmt2 &&
12094 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12095 DebugLoc DL = N->getDebugLoc();
12096
12097 if (isPowerOf2_64(MulAmt2) &&
12098 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12099 // If second multiplifer is pow2, issue it first. We want the multiply by
12100 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12101 // is an add.
12102 std::swap(MulAmt1, MulAmt2);
12103
12104 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012105 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012106 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012107 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012108 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012109 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012110 DAG.getConstant(MulAmt1, VT));
12111
Eric Christopherfd179292009-08-27 18:07:15 +000012112 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012113 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012114 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012115 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012116 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012117 DAG.getConstant(MulAmt2, VT));
12118
12119 // Do not add new nodes to DAG combiner worklist.
12120 DCI.CombineTo(N, NewMul, false);
12121 }
12122 return SDValue();
12123}
12124
Evan Chengad9c0a32009-12-15 00:53:42 +000012125static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12126 SDValue N0 = N->getOperand(0);
12127 SDValue N1 = N->getOperand(1);
12128 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12129 EVT VT = N0.getValueType();
12130
12131 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12132 // since the result of setcc_c is all zero's or all ones.
12133 if (N1C && N0.getOpcode() == ISD::AND &&
12134 N0.getOperand(1).getOpcode() == ISD::Constant) {
12135 SDValue N00 = N0.getOperand(0);
12136 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12137 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12138 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12139 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12140 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12141 APInt ShAmt = N1C->getAPIntValue();
12142 Mask = Mask.shl(ShAmt);
12143 if (Mask != 0)
12144 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12145 N00, DAG.getConstant(Mask, VT));
12146 }
12147 }
12148
12149 return SDValue();
12150}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012151
Nate Begeman740ab032009-01-26 00:52:55 +000012152/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12153/// when possible.
12154static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12155 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012156 EVT VT = N->getValueType(0);
12157 if (!VT.isVector() && VT.isInteger() &&
12158 N->getOpcode() == ISD::SHL)
12159 return PerformSHLCombine(N, DAG);
12160
Nate Begeman740ab032009-01-26 00:52:55 +000012161 // On X86 with SSE2 support, we can transform this to a vector shift if
12162 // all elements are shifted by the same amount. We can't do this in legalize
12163 // because the a constant vector is typically transformed to a constant pool
12164 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000012165 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012166 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012167
Owen Anderson825b72b2009-08-11 20:47:22 +000012168 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012169 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012170
Mon P Wang3becd092009-01-28 08:12:05 +000012171 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012172 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012173 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012174 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012175 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12176 unsigned NumElts = VT.getVectorNumElements();
12177 unsigned i = 0;
12178 for (; i != NumElts; ++i) {
12179 SDValue Arg = ShAmtOp.getOperand(i);
12180 if (Arg.getOpcode() == ISD::UNDEF) continue;
12181 BaseShAmt = Arg;
12182 break;
12183 }
12184 for (; i != NumElts; ++i) {
12185 SDValue Arg = ShAmtOp.getOperand(i);
12186 if (Arg.getOpcode() == ISD::UNDEF) continue;
12187 if (Arg != BaseShAmt) {
12188 return SDValue();
12189 }
12190 }
12191 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012192 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012193 SDValue InVec = ShAmtOp.getOperand(0);
12194 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12195 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12196 unsigned i = 0;
12197 for (; i != NumElts; ++i) {
12198 SDValue Arg = InVec.getOperand(i);
12199 if (Arg.getOpcode() == ISD::UNDEF) continue;
12200 BaseShAmt = Arg;
12201 break;
12202 }
12203 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12204 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012205 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012206 if (C->getZExtValue() == SplatIdx)
12207 BaseShAmt = InVec.getOperand(1);
12208 }
12209 }
12210 if (BaseShAmt.getNode() == 0)
12211 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12212 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012213 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012214 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012215
Mon P Wangefa42202009-09-03 19:56:25 +000012216 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012217 if (EltVT.bitsGT(MVT::i32))
12218 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12219 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012220 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012221
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012222 // The shift amount is identical so we can do a vector shift.
12223 SDValue ValOp = N->getOperand(0);
12224 switch (N->getOpcode()) {
12225 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012226 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012227 break;
12228 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012229 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012230 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012231 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012232 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012233 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012234 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012235 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012236 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012237 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012238 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012239 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012240 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012241 break;
12242 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012243 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012244 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012245 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012246 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012247 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012248 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012249 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012250 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012251 break;
12252 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012253 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012254 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012255 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012256 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012257 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012258 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012259 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012260 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012261 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012262 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012263 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012264 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012265 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012266 }
12267 return SDValue();
12268}
12269
Nate Begemanb65c1752010-12-17 22:55:37 +000012270
Stuart Hastings865f0932011-06-03 23:53:54 +000012271// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12272// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12273// and friends. Likewise for OR -> CMPNEQSS.
12274static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12275 TargetLowering::DAGCombinerInfo &DCI,
12276 const X86Subtarget *Subtarget) {
12277 unsigned opcode;
12278
12279 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12280 // we're requiring SSE2 for both.
12281 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12282 SDValue N0 = N->getOperand(0);
12283 SDValue N1 = N->getOperand(1);
12284 SDValue CMP0 = N0->getOperand(1);
12285 SDValue CMP1 = N1->getOperand(1);
12286 DebugLoc DL = N->getDebugLoc();
12287
12288 // The SETCCs should both refer to the same CMP.
12289 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12290 return SDValue();
12291
12292 SDValue CMP00 = CMP0->getOperand(0);
12293 SDValue CMP01 = CMP0->getOperand(1);
12294 EVT VT = CMP00.getValueType();
12295
12296 if (VT == MVT::f32 || VT == MVT::f64) {
12297 bool ExpectingFlags = false;
12298 // Check for any users that want flags:
12299 for (SDNode::use_iterator UI = N->use_begin(),
12300 UE = N->use_end();
12301 !ExpectingFlags && UI != UE; ++UI)
12302 switch (UI->getOpcode()) {
12303 default:
12304 case ISD::BR_CC:
12305 case ISD::BRCOND:
12306 case ISD::SELECT:
12307 ExpectingFlags = true;
12308 break;
12309 case ISD::CopyToReg:
12310 case ISD::SIGN_EXTEND:
12311 case ISD::ZERO_EXTEND:
12312 case ISD::ANY_EXTEND:
12313 break;
12314 }
12315
12316 if (!ExpectingFlags) {
12317 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12318 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12319
12320 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12321 X86::CondCode tmp = cc0;
12322 cc0 = cc1;
12323 cc1 = tmp;
12324 }
12325
12326 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12327 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12328 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12329 X86ISD::NodeType NTOperator = is64BitFP ?
12330 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12331 // FIXME: need symbolic constants for these magic numbers.
12332 // See X86ATTInstPrinter.cpp:printSSECC().
12333 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12334 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12335 DAG.getConstant(x86cc, MVT::i8));
12336 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12337 OnesOrZeroesF);
12338 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12339 DAG.getConstant(1, MVT::i32));
12340 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12341 return OneBitOfTruth;
12342 }
12343 }
12344 }
12345 }
12346 return SDValue();
12347}
12348
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012349/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12350/// so it can be folded inside ANDNP.
12351static bool CanFoldXORWithAllOnes(const SDNode *N) {
12352 EVT VT = N->getValueType(0);
12353
12354 // Match direct AllOnes for 128 and 256-bit vectors
12355 if (ISD::isBuildVectorAllOnes(N))
12356 return true;
12357
12358 // Look through a bit convert.
12359 if (N->getOpcode() == ISD::BITCAST)
12360 N = N->getOperand(0).getNode();
12361
12362 // Sometimes the operand may come from a insert_subvector building a 256-bit
12363 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012364 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000012365 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
12366 SDValue V1 = N->getOperand(0);
12367 SDValue V2 = N->getOperand(1);
12368
12369 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12370 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12371 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12372 ISD::isBuildVectorAllOnes(V2.getNode()))
12373 return true;
12374 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012375
12376 return false;
12377}
12378
Nate Begemanb65c1752010-12-17 22:55:37 +000012379static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12380 TargetLowering::DAGCombinerInfo &DCI,
12381 const X86Subtarget *Subtarget) {
12382 if (DCI.isBeforeLegalizeOps())
12383 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012384
Stuart Hastings865f0932011-06-03 23:53:54 +000012385 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12386 if (R.getNode())
12387 return R;
12388
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012389 // Want to form ANDNP nodes:
12390 // 1) In the hopes of then easily combining them with OR and AND nodes
12391 // to form PBLEND/PSIGN.
12392 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012393 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012394 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012395 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012396
Nate Begemanb65c1752010-12-17 22:55:37 +000012397 SDValue N0 = N->getOperand(0);
12398 SDValue N1 = N->getOperand(1);
12399 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012400
Nate Begemanb65c1752010-12-17 22:55:37 +000012401 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012402 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012403 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12404 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012405 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012406
12407 // Check RHS for vnot
12408 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012409 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12410 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012411 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012412
Nate Begemanb65c1752010-12-17 22:55:37 +000012413 return SDValue();
12414}
12415
Evan Cheng760d1942010-01-04 21:22:48 +000012416static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012417 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012418 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012419 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012420 return SDValue();
12421
Stuart Hastings865f0932011-06-03 23:53:54 +000012422 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12423 if (R.getNode())
12424 return R;
12425
Evan Cheng760d1942010-01-04 21:22:48 +000012426 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012427 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012428 return SDValue();
12429
Evan Cheng760d1942010-01-04 21:22:48 +000012430 SDValue N0 = N->getOperand(0);
12431 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012432
Nate Begemanb65c1752010-12-17 22:55:37 +000012433 // look for psign/blend
12434 if (Subtarget->hasSSSE3()) {
12435 if (VT == MVT::v2i64) {
12436 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012437 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012438 std::swap(N0, N1);
12439 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012440 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012441 SDValue Mask = N1.getOperand(0);
12442 SDValue X = N1.getOperand(1);
12443 SDValue Y;
12444 if (N0.getOperand(0) == Mask)
12445 Y = N0.getOperand(1);
12446 if (N0.getOperand(1) == Mask)
12447 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012448
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012449 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012450 if (!Y.getNode())
12451 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012452
Nate Begemanb65c1752010-12-17 22:55:37 +000012453 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12454 if (Mask.getOpcode() != ISD::BITCAST ||
12455 X.getOpcode() != ISD::BITCAST ||
12456 Y.getOpcode() != ISD::BITCAST)
12457 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012458
Nate Begemanb65c1752010-12-17 22:55:37 +000012459 // Look through mask bitcast.
12460 Mask = Mask.getOperand(0);
12461 EVT MaskVT = Mask.getValueType();
12462
12463 // Validate that the Mask operand is a vector sra node. The sra node
12464 // will be an intrinsic.
12465 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12466 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012467
Nate Begemanb65c1752010-12-17 22:55:37 +000012468 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12469 // there is no psrai.b
12470 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12471 case Intrinsic::x86_sse2_psrai_w:
12472 case Intrinsic::x86_sse2_psrai_d:
12473 break;
12474 default: return SDValue();
12475 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012476
Nate Begemanb65c1752010-12-17 22:55:37 +000012477 // Check that the SRA is all signbits.
12478 SDValue SraC = Mask.getOperand(2);
12479 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12480 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12481 if ((SraAmt + 1) != EltBits)
12482 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012483
Nate Begemanb65c1752010-12-17 22:55:37 +000012484 DebugLoc DL = N->getDebugLoc();
12485
12486 // Now we know we at least have a plendvb with the mask val. See if
12487 // we can form a psignb/w/d.
12488 // psign = x.type == y.type == mask.type && y = sub(0, x);
12489 X = X.getOperand(0);
12490 Y = Y.getOperand(0);
12491 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12492 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12493 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12494 unsigned Opc = 0;
12495 switch (EltBits) {
12496 case 8: Opc = X86ISD::PSIGNB; break;
12497 case 16: Opc = X86ISD::PSIGNW; break;
12498 case 32: Opc = X86ISD::PSIGND; break;
12499 default: break;
12500 }
12501 if (Opc) {
12502 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12503 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12504 }
12505 }
12506 // PBLENDVB only available on SSE 4.1
12507 if (!Subtarget->hasSSE41())
12508 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012509
Nate Begemanb65c1752010-12-17 22:55:37 +000012510 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12511 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12512 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012513 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012514 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12515 }
12516 }
12517 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012518
Nate Begemanb65c1752010-12-17 22:55:37 +000012519 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012520 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12521 std::swap(N0, N1);
12522 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12523 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012524 if (!N0.hasOneUse() || !N1.hasOneUse())
12525 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012526
12527 SDValue ShAmt0 = N0.getOperand(1);
12528 if (ShAmt0.getValueType() != MVT::i8)
12529 return SDValue();
12530 SDValue ShAmt1 = N1.getOperand(1);
12531 if (ShAmt1.getValueType() != MVT::i8)
12532 return SDValue();
12533 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12534 ShAmt0 = ShAmt0.getOperand(0);
12535 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12536 ShAmt1 = ShAmt1.getOperand(0);
12537
12538 DebugLoc DL = N->getDebugLoc();
12539 unsigned Opc = X86ISD::SHLD;
12540 SDValue Op0 = N0.getOperand(0);
12541 SDValue Op1 = N1.getOperand(0);
12542 if (ShAmt0.getOpcode() == ISD::SUB) {
12543 Opc = X86ISD::SHRD;
12544 std::swap(Op0, Op1);
12545 std::swap(ShAmt0, ShAmt1);
12546 }
12547
Evan Cheng8b1190a2010-04-28 01:18:01 +000012548 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012549 if (ShAmt1.getOpcode() == ISD::SUB) {
12550 SDValue Sum = ShAmt1.getOperand(0);
12551 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012552 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12553 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12554 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12555 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012556 return DAG.getNode(Opc, DL, VT,
12557 Op0, Op1,
12558 DAG.getNode(ISD::TRUNCATE, DL,
12559 MVT::i8, ShAmt0));
12560 }
12561 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12562 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12563 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012564 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012565 return DAG.getNode(Opc, DL, VT,
12566 N0.getOperand(0), N1.getOperand(0),
12567 DAG.getNode(ISD::TRUNCATE, DL,
12568 MVT::i8, ShAmt0));
12569 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012570
Evan Cheng760d1942010-01-04 21:22:48 +000012571 return SDValue();
12572}
12573
Chris Lattner149a4e52008-02-22 02:09:43 +000012574/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012575static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012576 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000012577 StoreSDNode *St = cast<StoreSDNode>(N);
12578 EVT VT = St->getValue().getValueType();
12579 EVT StVT = St->getMemoryVT();
12580 DebugLoc dl = St->getDebugLoc();
12581
12582 // Optimize trunc store (of multiple scalars) to shuffle and store.
12583 // First, pack all of the elements in one place. Next, store to memory
12584 // in fewer chunks.
12585 if (St->isTruncatingStore() && VT.isVector()) {
12586 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12587 unsigned NumElems = VT.getVectorNumElements();
12588 assert(StVT != VT && "Cannot truncate to the same type");
12589 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
12590 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
12591
12592 // From, To sizes and ElemCount must be pow of two
12593 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
12594 // We are going to use the original vector elt for storing.
12595 // accumulated smaller vector elements must be a multiple of bigger size.
12596 if (0 != (NumElems * ToSz) % FromSz) return SDValue();
12597 unsigned SizeRatio = FromSz / ToSz;
12598
12599 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
12600
12601 // Create a type on which we perform the shuffle
12602 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
12603 StVT.getScalarType(), NumElems*SizeRatio);
12604
12605 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
12606
12607 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
12608 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
12609 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
12610
12611 // Can't shuffle using an illegal type
12612 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
12613
12614 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
12615 DAG.getUNDEF(WideVec.getValueType()),
12616 ShuffleVec.data());
12617 // At this point all of the data is stored at the bottom of the
12618 // register. We now need to save it to mem.
12619
12620 // Find the largest store unit
12621 MVT StoreType = MVT::i8;
12622 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
12623 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
12624 MVT Tp = (MVT::SimpleValueType)tp;
12625 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
12626 StoreType = Tp;
12627 }
12628
12629 // Bitcast the original vector into a vector of store-size units
12630 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
12631 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
12632 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
12633 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
12634 SmallVector<SDValue, 8> Chains;
12635 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
12636 TLI.getPointerTy());
12637 SDValue Ptr = St->getBasePtr();
12638
12639 // Perform one or more big stores into memory.
12640 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
12641 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
12642 StoreType, ShuffWide,
12643 DAG.getIntPtrConstant(i));
12644 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
12645 St->getPointerInfo(), St->isVolatile(),
12646 St->isNonTemporal(), St->getAlignment());
12647 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
12648 Chains.push_back(Ch);
12649 }
12650
12651 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
12652 Chains.size());
12653 }
12654
12655
Chris Lattner149a4e52008-02-22 02:09:43 +000012656 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12657 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012658 // A preferable solution to the general problem is to figure out the right
12659 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012660
12661 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000012662 if (VT.getSizeInBits() != 64)
12663 return SDValue();
12664
Devang Patel578efa92009-06-05 21:57:13 +000012665 const Function *F = DAG.getMachineFunction().getFunction();
12666 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000012667 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000012668 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000012669 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000012670 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000012671 isa<LoadSDNode>(St->getValue()) &&
12672 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12673 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012674 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012675 LoadSDNode *Ld = 0;
12676 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000012677 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000012678 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012679 // Must be a store of a load. We currently handle two cases: the load
12680 // is a direct child, and it's under an intervening TokenFactor. It is
12681 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000012682 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000012683 Ld = cast<LoadSDNode>(St->getChain());
12684 else if (St->getValue().hasOneUse() &&
12685 ChainVal->getOpcode() == ISD::TokenFactor) {
12686 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012687 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000012688 TokenFactorIndex = i;
12689 Ld = cast<LoadSDNode>(St->getValue());
12690 } else
12691 Ops.push_back(ChainVal->getOperand(i));
12692 }
12693 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000012694
Evan Cheng536e6672009-03-12 05:59:15 +000012695 if (!Ld || !ISD::isNormalLoad(Ld))
12696 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012697
Evan Cheng536e6672009-03-12 05:59:15 +000012698 // If this is not the MMX case, i.e. we are just turning i64 load/store
12699 // into f64 load/store, avoid the transformation if there are multiple
12700 // uses of the loaded value.
12701 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12702 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012703
Evan Cheng536e6672009-03-12 05:59:15 +000012704 DebugLoc LdDL = Ld->getDebugLoc();
12705 DebugLoc StDL = N->getDebugLoc();
12706 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
12707 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
12708 // pair instead.
12709 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012710 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000012711 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
12712 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012713 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012714 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000012715 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000012716 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000012717 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000012718 Ops.size());
12719 }
Evan Cheng536e6672009-03-12 05:59:15 +000012720 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012721 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012722 St->isVolatile(), St->isNonTemporal(),
12723 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000012724 }
Evan Cheng536e6672009-03-12 05:59:15 +000012725
12726 // Otherwise, lower to two pairs of 32-bit loads / stores.
12727 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012728 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
12729 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012730
Owen Anderson825b72b2009-08-11 20:47:22 +000012731 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012732 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012733 Ld->isVolatile(), Ld->isNonTemporal(),
12734 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000012735 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012736 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000012737 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012738 MinAlign(Ld->getAlignment(), 4));
12739
12740 SDValue NewChain = LoLd.getValue(1);
12741 if (TokenFactorIndex != -1) {
12742 Ops.push_back(LoLd);
12743 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000012744 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000012745 Ops.size());
12746 }
12747
12748 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012749 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
12750 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012751
12752 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012753 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012754 St->isVolatile(), St->isNonTemporal(),
12755 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012756 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012757 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000012758 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012759 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012760 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000012761 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000012762 }
Dan Gohman475871a2008-07-27 21:46:04 +000012763 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000012764}
12765
Chris Lattner6cf73262008-01-25 06:14:17 +000012766/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12767/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012768static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000012769 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12770 // F[X]OR(0.0, x) -> x
12771 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000012772 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12773 if (C->getValueAPF().isPosZero())
12774 return N->getOperand(1);
12775 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12776 if (C->getValueAPF().isPosZero())
12777 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000012778 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012779}
12780
12781/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012782static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000012783 // FAND(0.0, x) -> 0.0
12784 // FAND(x, 0.0) -> 0.0
12785 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12786 if (C->getValueAPF().isPosZero())
12787 return N->getOperand(0);
12788 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12789 if (C->getValueAPF().isPosZero())
12790 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000012791 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012792}
12793
Dan Gohmane5af2d32009-01-29 01:59:02 +000012794static SDValue PerformBTCombine(SDNode *N,
12795 SelectionDAG &DAG,
12796 TargetLowering::DAGCombinerInfo &DCI) {
12797 // BT ignores high bits in the bit index operand.
12798 SDValue Op1 = N->getOperand(1);
12799 if (Op1.hasOneUse()) {
12800 unsigned BitWidth = Op1.getValueSizeInBits();
12801 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12802 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012803 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12804 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012805 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012806 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12807 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12808 DCI.CommitTargetLoweringOpt(TLO);
12809 }
12810 return SDValue();
12811}
Chris Lattner83e6c992006-10-04 06:57:07 +000012812
Eli Friedman7a5e5552009-06-07 06:52:44 +000012813static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12814 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012815 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012816 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012817 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012818 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012819 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012820 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012821 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012822 }
12823 return SDValue();
12824}
12825
Evan Cheng2e489c42009-12-16 00:53:11 +000012826static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12827 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12828 // (and (i32 x86isd::setcc_carry), 1)
12829 // This eliminates the zext. This transformation is necessary because
12830 // ISD::SETCC is always legalized to i8.
12831 DebugLoc dl = N->getDebugLoc();
12832 SDValue N0 = N->getOperand(0);
12833 EVT VT = N->getValueType(0);
12834 if (N0.getOpcode() == ISD::AND &&
12835 N0.hasOneUse() &&
12836 N0.getOperand(0).hasOneUse()) {
12837 SDValue N00 = N0.getOperand(0);
12838 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12839 return SDValue();
12840 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12841 if (!C || C->getZExtValue() != 1)
12842 return SDValue();
12843 return DAG.getNode(ISD::AND, dl, VT,
12844 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12845 N00.getOperand(0), N00.getOperand(1)),
12846 DAG.getConstant(1, VT));
12847 }
12848
12849 return SDValue();
12850}
12851
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012852// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12853static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12854 unsigned X86CC = N->getConstantOperandVal(0);
12855 SDValue EFLAG = N->getOperand(1);
12856 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012857
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012858 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12859 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12860 // cases.
12861 if (X86CC == X86::COND_B)
12862 return DAG.getNode(ISD::AND, DL, MVT::i8,
12863 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12864 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12865 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012866
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012867 return SDValue();
12868}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012869
Benjamin Kramer1396c402011-06-18 11:09:41 +000012870static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
12871 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012872 SDValue Op0 = N->getOperand(0);
12873 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
12874 // a 32-bit target where SSE doesn't support i64->FP operations.
12875 if (Op0.getOpcode() == ISD::LOAD) {
12876 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
12877 EVT VT = Ld->getValueType(0);
12878 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
12879 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
12880 !XTLI->getSubtarget()->is64Bit() &&
12881 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000012882 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
12883 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012884 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
12885 return FILDChain;
12886 }
12887 }
12888 return SDValue();
12889}
12890
Chris Lattner23a01992010-12-20 01:37:09 +000012891// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12892static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12893 X86TargetLowering::DAGCombinerInfo &DCI) {
12894 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12895 // the result is either zero or one (depending on the input carry bit).
12896 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12897 if (X86::isZeroNode(N->getOperand(0)) &&
12898 X86::isZeroNode(N->getOperand(1)) &&
12899 // We don't have a good way to replace an EFLAGS use, so only do this when
12900 // dead right now.
12901 SDValue(N, 1).use_empty()) {
12902 DebugLoc DL = N->getDebugLoc();
12903 EVT VT = N->getValueType(0);
12904 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12905 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12906 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12907 DAG.getConstant(X86::COND_B,MVT::i8),
12908 N->getOperand(2)),
12909 DAG.getConstant(1, VT));
12910 return DCI.CombineTo(N, Res1, CarryOut);
12911 }
12912
12913 return SDValue();
12914}
12915
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012916// fold (add Y, (sete X, 0)) -> adc 0, Y
12917// (add Y, (setne X, 0)) -> sbb -1, Y
12918// (sub (sete X, 0), Y) -> sbb 0, Y
12919// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012920static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012921 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012922
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012923 // Look through ZExts.
12924 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12925 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12926 return SDValue();
12927
12928 SDValue SetCC = Ext.getOperand(0);
12929 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12930 return SDValue();
12931
12932 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12933 if (CC != X86::COND_E && CC != X86::COND_NE)
12934 return SDValue();
12935
12936 SDValue Cmp = SetCC.getOperand(1);
12937 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012938 !X86::isZeroNode(Cmp.getOperand(1)) ||
12939 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012940 return SDValue();
12941
12942 SDValue CmpOp0 = Cmp.getOperand(0);
12943 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12944 DAG.getConstant(1, CmpOp0.getValueType()));
12945
12946 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12947 if (CC == X86::COND_NE)
12948 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12949 DL, OtherVal.getValueType(), OtherVal,
12950 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12951 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12952 DL, OtherVal.getValueType(), OtherVal,
12953 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12954}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012955
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012956static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
12957 SDValue Op0 = N->getOperand(0);
12958 SDValue Op1 = N->getOperand(1);
12959
12960 // X86 can't encode an immediate LHS of a sub. See if we can push the
12961 // negation into a preceding instruction.
12962 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
12963 uint64_t Op0C = C->getSExtValue();
12964
12965 // If the RHS of the sub is a XOR with one use and a constant, invert the
12966 // immediate. Then add one to the LHS of the sub so we can turn
12967 // X-Y -> X+~Y+1, saving one register.
12968 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
12969 isa<ConstantSDNode>(Op1.getOperand(1))) {
12970 uint64_t XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getSExtValue();
12971 EVT VT = Op0.getValueType();
12972 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
12973 Op1.getOperand(0),
12974 DAG.getConstant(~XorC, VT));
12975 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
12976 DAG.getConstant(Op0C+1, VT));
12977 }
12978 }
12979
12980 return OptimizeConditionalInDecrement(N, DAG);
12981}
12982
Dan Gohman475871a2008-07-27 21:46:04 +000012983SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012984 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012985 SelectionDAG &DAG = DCI.DAG;
12986 switch (N->getOpcode()) {
12987 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012988 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012989 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012990 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012991 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012992 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
12993 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012994 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012995 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012996 case ISD::SHL:
12997 case ISD::SRA:
12998 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012999 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000013000 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000013001 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013002 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000013003 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000013004 case X86ISD::FOR: return PerformFORCombine(N, DAG);
13005 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000013006 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013007 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000013008 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013009 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013010 case X86ISD::SHUFPS: // Handle all target specific shuffles
13011 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000013012 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013013 case X86ISD::PUNPCKHBW:
13014 case X86ISD::PUNPCKHWD:
13015 case X86ISD::PUNPCKHDQ:
13016 case X86ISD::PUNPCKHQDQ:
13017 case X86ISD::UNPCKHPS:
13018 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000013019 case X86ISD::VUNPCKHPSY:
13020 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013021 case X86ISD::PUNPCKLBW:
13022 case X86ISD::PUNPCKLWD:
13023 case X86ISD::PUNPCKLDQ:
13024 case X86ISD::PUNPCKLQDQ:
13025 case X86ISD::UNPCKLPS:
13026 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000013027 case X86ISD::VUNPCKLPSY:
13028 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013029 case X86ISD::MOVHLPS:
13030 case X86ISD::MOVLHPS:
13031 case X86ISD::PSHUFD:
13032 case X86ISD::PSHUFHW:
13033 case X86ISD::PSHUFLW:
13034 case X86ISD::MOVSS:
13035 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000013036 case X86ISD::VPERMILPS:
13037 case X86ISD::VPERMILPSY:
13038 case X86ISD::VPERMILPD:
13039 case X86ISD::VPERMILPDY:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000013040 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000013041 }
13042
Dan Gohman475871a2008-07-27 21:46:04 +000013043 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000013044}
13045
Evan Chenge5b51ac2010-04-17 06:13:15 +000013046/// isTypeDesirableForOp - Return true if the target has native support for
13047/// the specified value type and it is 'desirable' to use the type for the
13048/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
13049/// instruction encodings are longer and some i16 instructions are slow.
13050bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
13051 if (!isTypeLegal(VT))
13052 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013053 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000013054 return true;
13055
13056 switch (Opc) {
13057 default:
13058 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000013059 case ISD::LOAD:
13060 case ISD::SIGN_EXTEND:
13061 case ISD::ZERO_EXTEND:
13062 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013063 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013064 case ISD::SRL:
13065 case ISD::SUB:
13066 case ISD::ADD:
13067 case ISD::MUL:
13068 case ISD::AND:
13069 case ISD::OR:
13070 case ISD::XOR:
13071 return false;
13072 }
13073}
13074
13075/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013076/// beneficial for dag combiner to promote the specified node. If true, it
13077/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013078bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013079 EVT VT = Op.getValueType();
13080 if (VT != MVT::i16)
13081 return false;
13082
Evan Cheng4c26e932010-04-19 19:29:22 +000013083 bool Promote = false;
13084 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013085 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013086 default: break;
13087 case ISD::LOAD: {
13088 LoadSDNode *LD = cast<LoadSDNode>(Op);
13089 // If the non-extending load has a single use and it's not live out, then it
13090 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013091 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13092 Op.hasOneUse()*/) {
13093 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13094 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13095 // The only case where we'd want to promote LOAD (rather then it being
13096 // promoted as an operand is when it's only use is liveout.
13097 if (UI->getOpcode() != ISD::CopyToReg)
13098 return false;
13099 }
13100 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013101 Promote = true;
13102 break;
13103 }
13104 case ISD::SIGN_EXTEND:
13105 case ISD::ZERO_EXTEND:
13106 case ISD::ANY_EXTEND:
13107 Promote = true;
13108 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013109 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013110 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013111 SDValue N0 = Op.getOperand(0);
13112 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013113 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013114 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013115 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013116 break;
13117 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013118 case ISD::ADD:
13119 case ISD::MUL:
13120 case ISD::AND:
13121 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013122 case ISD::XOR:
13123 Commute = true;
13124 // fallthrough
13125 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013126 SDValue N0 = Op.getOperand(0);
13127 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000013128 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013129 return false;
13130 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000013131 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013132 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000013133 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013134 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013135 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013136 }
13137 }
13138
13139 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013140 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013141}
13142
Evan Cheng60c07e12006-07-05 22:17:51 +000013143//===----------------------------------------------------------------------===//
13144// X86 Inline Assembly Support
13145//===----------------------------------------------------------------------===//
13146
Chris Lattnerb8105652009-07-20 17:51:36 +000013147bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13148 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013149
13150 std::string AsmStr = IA->getAsmString();
13151
13152 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013153 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013154 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013155
13156 switch (AsmPieces.size()) {
13157 default: return false;
13158 case 1:
13159 AsmStr = AsmPieces[0];
13160 AsmPieces.clear();
13161 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13162
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013163 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013164 // we will turn this bswap into something that will be lowered to logical ops
13165 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13166 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013167 // bswap $0
13168 if (AsmPieces.size() == 2 &&
13169 (AsmPieces[0] == "bswap" ||
13170 AsmPieces[0] == "bswapq" ||
13171 AsmPieces[0] == "bswapl") &&
13172 (AsmPieces[1] == "$0" ||
13173 AsmPieces[1] == "${0:q}")) {
13174 // No need to check constraints, nothing other than the equivalent of
13175 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013176 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013177 if (!Ty || Ty->getBitWidth() % 16 != 0)
13178 return false;
13179 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013180 }
13181 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013182 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013183 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013184 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013185 AsmPieces[1] == "$$8," &&
13186 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013187 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13188 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013189 const std::string &ConstraintsStr = IA->getConstraintString();
13190 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013191 std::sort(AsmPieces.begin(), AsmPieces.end());
13192 if (AsmPieces.size() == 4 &&
13193 AsmPieces[0] == "~{cc}" &&
13194 AsmPieces[1] == "~{dirflag}" &&
13195 AsmPieces[2] == "~{flags}" &&
13196 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013197 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013198 if (!Ty || Ty->getBitWidth() % 16 != 0)
13199 return false;
13200 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013201 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013202 }
13203 break;
13204 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013205 if (CI->getType()->isIntegerTy(32) &&
13206 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13207 SmallVector<StringRef, 4> Words;
13208 SplitString(AsmPieces[0], Words, " \t,");
13209 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13210 Words[2] == "${0:w}") {
13211 Words.clear();
13212 SplitString(AsmPieces[1], Words, " \t,");
13213 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13214 Words[2] == "$0") {
13215 Words.clear();
13216 SplitString(AsmPieces[2], Words, " \t,");
13217 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13218 Words[2] == "${0:w}") {
13219 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013220 const std::string &ConstraintsStr = IA->getConstraintString();
13221 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013222 std::sort(AsmPieces.begin(), AsmPieces.end());
13223 if (AsmPieces.size() == 4 &&
13224 AsmPieces[0] == "~{cc}" &&
13225 AsmPieces[1] == "~{dirflag}" &&
13226 AsmPieces[2] == "~{flags}" &&
13227 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013228 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013229 if (!Ty || Ty->getBitWidth() % 16 != 0)
13230 return false;
13231 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013232 }
13233 }
13234 }
13235 }
13236 }
Evan Cheng55d42002011-01-08 01:24:27 +000013237
13238 if (CI->getType()->isIntegerTy(64)) {
13239 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13240 if (Constraints.size() >= 2 &&
13241 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13242 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13243 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13244 SmallVector<StringRef, 4> Words;
13245 SplitString(AsmPieces[0], Words, " \t");
13246 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013247 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013248 SplitString(AsmPieces[1], Words, " \t");
13249 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13250 Words.clear();
13251 SplitString(AsmPieces[2], Words, " \t,");
13252 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13253 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013254 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013255 if (!Ty || Ty->getBitWidth() % 16 != 0)
13256 return false;
13257 return IntrinsicLowering::LowerToByteSwap(CI);
13258 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013259 }
13260 }
13261 }
13262 }
13263 break;
13264 }
13265 return false;
13266}
13267
13268
13269
Chris Lattnerf4dff842006-07-11 02:54:03 +000013270/// getConstraintType - Given a constraint letter, return the type of
13271/// constraint it is for this target.
13272X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013273X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13274 if (Constraint.size() == 1) {
13275 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013276 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013277 case 'q':
13278 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013279 case 'f':
13280 case 't':
13281 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013282 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013283 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013284 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013285 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013286 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013287 case 'a':
13288 case 'b':
13289 case 'c':
13290 case 'd':
13291 case 'S':
13292 case 'D':
13293 case 'A':
13294 return C_Register;
13295 case 'I':
13296 case 'J':
13297 case 'K':
13298 case 'L':
13299 case 'M':
13300 case 'N':
13301 case 'G':
13302 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013303 case 'e':
13304 case 'Z':
13305 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013306 default:
13307 break;
13308 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013309 }
Chris Lattner4234f572007-03-25 02:14:49 +000013310 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013311}
13312
John Thompson44ab89e2010-10-29 17:29:13 +000013313/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013314/// This object must already have been set up with the operand type
13315/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013316TargetLowering::ConstraintWeight
13317 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013318 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013319 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013320 Value *CallOperandVal = info.CallOperandVal;
13321 // If we don't have a value, we can't do a match,
13322 // but allow it at the lowest weight.
13323 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013324 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013325 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013326 // Look at the constraint type.
13327 switch (*constraint) {
13328 default:
John Thompson44ab89e2010-10-29 17:29:13 +000013329 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13330 case 'R':
13331 case 'q':
13332 case 'Q':
13333 case 'a':
13334 case 'b':
13335 case 'c':
13336 case 'd':
13337 case 'S':
13338 case 'D':
13339 case 'A':
13340 if (CallOperandVal->getType()->isIntegerTy())
13341 weight = CW_SpecificReg;
13342 break;
13343 case 'f':
13344 case 't':
13345 case 'u':
13346 if (type->isFloatingPointTy())
13347 weight = CW_SpecificReg;
13348 break;
13349 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000013350 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000013351 weight = CW_SpecificReg;
13352 break;
13353 case 'x':
13354 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013355 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000013356 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013357 break;
13358 case 'I':
13359 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13360 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000013361 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013362 }
13363 break;
John Thompson44ab89e2010-10-29 17:29:13 +000013364 case 'J':
13365 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13366 if (C->getZExtValue() <= 63)
13367 weight = CW_Constant;
13368 }
13369 break;
13370 case 'K':
13371 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13372 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13373 weight = CW_Constant;
13374 }
13375 break;
13376 case 'L':
13377 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13378 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13379 weight = CW_Constant;
13380 }
13381 break;
13382 case 'M':
13383 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13384 if (C->getZExtValue() <= 3)
13385 weight = CW_Constant;
13386 }
13387 break;
13388 case 'N':
13389 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13390 if (C->getZExtValue() <= 0xff)
13391 weight = CW_Constant;
13392 }
13393 break;
13394 case 'G':
13395 case 'C':
13396 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13397 weight = CW_Constant;
13398 }
13399 break;
13400 case 'e':
13401 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13402 if ((C->getSExtValue() >= -0x80000000LL) &&
13403 (C->getSExtValue() <= 0x7fffffffLL))
13404 weight = CW_Constant;
13405 }
13406 break;
13407 case 'Z':
13408 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13409 if (C->getZExtValue() <= 0xffffffff)
13410 weight = CW_Constant;
13411 }
13412 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013413 }
13414 return weight;
13415}
13416
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013417/// LowerXConstraint - try to replace an X constraint, which matches anything,
13418/// with another that has more specific requirements based on the type of the
13419/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013420const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013421LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013422 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13423 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013424 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013425 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013426 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013427 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013428 return "x";
13429 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013430
Chris Lattner5e764232008-04-26 23:02:14 +000013431 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013432}
13433
Chris Lattner48884cd2007-08-25 00:47:38 +000013434/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13435/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013436void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013437 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013438 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013439 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013440 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013441
Eric Christopher100c8332011-06-02 23:16:42 +000013442 // Only support length 1 constraints for now.
13443 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013444
Eric Christopher100c8332011-06-02 23:16:42 +000013445 char ConstraintLetter = Constraint[0];
13446 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013447 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013448 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013449 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013450 if (C->getZExtValue() <= 31) {
13451 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013452 break;
13453 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013454 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013455 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013456 case 'J':
13457 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013458 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013459 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13460 break;
13461 }
13462 }
13463 return;
13464 case 'K':
13465 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013466 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013467 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13468 break;
13469 }
13470 }
13471 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013472 case 'N':
13473 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013474 if (C->getZExtValue() <= 255) {
13475 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013476 break;
13477 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013478 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013479 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013480 case 'e': {
13481 // 32-bit signed value
13482 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013483 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13484 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013485 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013486 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013487 break;
13488 }
13489 // FIXME gcc accepts some relocatable values here too, but only in certain
13490 // memory models; it's complicated.
13491 }
13492 return;
13493 }
13494 case 'Z': {
13495 // 32-bit unsigned value
13496 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013497 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13498 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013499 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13500 break;
13501 }
13502 }
13503 // FIXME gcc accepts some relocatable values here too, but only in certain
13504 // memory models; it's complicated.
13505 return;
13506 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013507 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013508 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013509 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013510 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013511 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013512 break;
13513 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013514
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013515 // In any sort of PIC mode addresses need to be computed at runtime by
13516 // adding in a register or some sort of table lookup. These can't
13517 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013518 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013519 return;
13520
Chris Lattnerdc43a882007-05-03 16:52:29 +000013521 // If we are in non-pic codegen mode, we allow the address of a global (with
13522 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013523 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013524 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013525
Chris Lattner49921962009-05-08 18:23:14 +000013526 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13527 while (1) {
13528 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13529 Offset += GA->getOffset();
13530 break;
13531 } else if (Op.getOpcode() == ISD::ADD) {
13532 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13533 Offset += C->getZExtValue();
13534 Op = Op.getOperand(0);
13535 continue;
13536 }
13537 } else if (Op.getOpcode() == ISD::SUB) {
13538 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13539 Offset += -C->getZExtValue();
13540 Op = Op.getOperand(0);
13541 continue;
13542 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013543 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013544
Chris Lattner49921962009-05-08 18:23:14 +000013545 // Otherwise, this isn't something we can handle, reject it.
13546 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013547 }
Eric Christopherfd179292009-08-27 18:07:15 +000013548
Dan Gohman46510a72010-04-15 01:51:59 +000013549 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013550 // If we require an extra load to get this address, as in PIC mode, we
13551 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013552 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13553 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013554 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013555
Devang Patel0d881da2010-07-06 22:08:15 +000013556 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13557 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013558 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013559 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013560 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013561
Gabor Greifba36cb52008-08-28 21:40:38 +000013562 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013563 Ops.push_back(Result);
13564 return;
13565 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013566 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013567}
13568
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013569std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013570X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013571 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013572 // First, see if this is a constraint that directly corresponds to an LLVM
13573 // register class.
13574 if (Constraint.size() == 1) {
13575 // GCC Constraint Letters
13576 switch (Constraint[0]) {
13577 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013578 // TODO: Slight differences here in allocation order and leaving
13579 // RIP in the class. Do they matter any more here than they do
13580 // in the normal allocation?
13581 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13582 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013583 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013584 return std::make_pair(0U, X86::GR32RegisterClass);
13585 else if (VT == MVT::i16)
13586 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013587 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013588 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013589 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013590 return std::make_pair(0U, X86::GR64RegisterClass);
13591 break;
13592 }
13593 // 32-bit fallthrough
13594 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013595 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013596 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13597 else if (VT == MVT::i16)
13598 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013599 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013600 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13601 else if (VT == MVT::i64)
13602 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13603 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013604 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013605 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013606 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013607 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013608 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013609 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013610 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013611 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013612 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013613 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013614 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013615 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13616 if (VT == MVT::i16)
13617 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13618 if (VT == MVT::i32 || !Subtarget->is64Bit())
13619 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13620 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013621 case 'f': // FP Stack registers.
13622 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13623 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013624 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013625 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013626 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013627 return std::make_pair(0U, X86::RFP64RegisterClass);
13628 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013629 case 'y': // MMX_REGS if MMX allowed.
13630 if (!Subtarget->hasMMX()) break;
13631 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013632 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013633 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013634 // FALL THROUGH.
13635 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013636 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013637
Owen Anderson825b72b2009-08-11 20:47:22 +000013638 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013639 default: break;
13640 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013641 case MVT::f32:
13642 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013643 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013644 case MVT::f64:
13645 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013646 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013647 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013648 case MVT::v16i8:
13649 case MVT::v8i16:
13650 case MVT::v4i32:
13651 case MVT::v2i64:
13652 case MVT::v4f32:
13653 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013654 return std::make_pair(0U, X86::VR128RegisterClass);
13655 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013656 break;
13657 }
13658 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013659
Chris Lattnerf76d1802006-07-31 23:26:50 +000013660 // Use the default implementation in TargetLowering to convert the register
13661 // constraint into a member of a register class.
13662 std::pair<unsigned, const TargetRegisterClass*> Res;
13663 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013664
13665 // Not found as a standard register?
13666 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013667 // Map st(0) -> st(7) -> ST0
13668 if (Constraint.size() == 7 && Constraint[0] == '{' &&
13669 tolower(Constraint[1]) == 's' &&
13670 tolower(Constraint[2]) == 't' &&
13671 Constraint[3] == '(' &&
13672 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13673 Constraint[5] == ')' &&
13674 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000013675
Chris Lattner56d77c72009-09-13 22:41:48 +000013676 Res.first = X86::ST0+Constraint[4]-'0';
13677 Res.second = X86::RFP80RegisterClass;
13678 return Res;
13679 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013680
Chris Lattner56d77c72009-09-13 22:41:48 +000013681 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013682 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000013683 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000013684 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013685 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000013686 }
Chris Lattner56d77c72009-09-13 22:41:48 +000013687
13688 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013689 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013690 Res.first = X86::EFLAGS;
13691 Res.second = X86::CCRRegisterClass;
13692 return Res;
13693 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013694
Dale Johannesen330169f2008-11-13 21:52:36 +000013695 // 'A' means EAX + EDX.
13696 if (Constraint == "A") {
13697 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000013698 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013699 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000013700 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000013701 return Res;
13702 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013703
Chris Lattnerf76d1802006-07-31 23:26:50 +000013704 // Otherwise, check to see if this is a register class of the wrong value
13705 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
13706 // turn into {ax},{dx}.
13707 if (Res.second->hasType(VT))
13708 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013709
Chris Lattnerf76d1802006-07-31 23:26:50 +000013710 // All of the single-register GCC register classes map their values onto
13711 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
13712 // really want an 8-bit or 32-bit register, map to the appropriate register
13713 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000013714 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013715 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013716 unsigned DestReg = 0;
13717 switch (Res.first) {
13718 default: break;
13719 case X86::AX: DestReg = X86::AL; break;
13720 case X86::DX: DestReg = X86::DL; break;
13721 case X86::CX: DestReg = X86::CL; break;
13722 case X86::BX: DestReg = X86::BL; break;
13723 }
13724 if (DestReg) {
13725 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013726 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013727 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013728 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013729 unsigned DestReg = 0;
13730 switch (Res.first) {
13731 default: break;
13732 case X86::AX: DestReg = X86::EAX; break;
13733 case X86::DX: DestReg = X86::EDX; break;
13734 case X86::CX: DestReg = X86::ECX; break;
13735 case X86::BX: DestReg = X86::EBX; break;
13736 case X86::SI: DestReg = X86::ESI; break;
13737 case X86::DI: DestReg = X86::EDI; break;
13738 case X86::BP: DestReg = X86::EBP; break;
13739 case X86::SP: DestReg = X86::ESP; break;
13740 }
13741 if (DestReg) {
13742 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013743 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013744 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013745 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013746 unsigned DestReg = 0;
13747 switch (Res.first) {
13748 default: break;
13749 case X86::AX: DestReg = X86::RAX; break;
13750 case X86::DX: DestReg = X86::RDX; break;
13751 case X86::CX: DestReg = X86::RCX; break;
13752 case X86::BX: DestReg = X86::RBX; break;
13753 case X86::SI: DestReg = X86::RSI; break;
13754 case X86::DI: DestReg = X86::RDI; break;
13755 case X86::BP: DestReg = X86::RBP; break;
13756 case X86::SP: DestReg = X86::RSP; break;
13757 }
13758 if (DestReg) {
13759 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013760 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013761 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000013762 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000013763 } else if (Res.second == X86::FR32RegisterClass ||
13764 Res.second == X86::FR64RegisterClass ||
13765 Res.second == X86::VR128RegisterClass) {
13766 // Handle references to XMM physical registers that got mapped into the
13767 // wrong class. This can happen with constraints like {xmm0} where the
13768 // target independent register mapper will just pick the first match it can
13769 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000013770 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013771 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000013772 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013773 Res.second = X86::FR64RegisterClass;
13774 else if (X86::VR128RegisterClass->hasType(VT))
13775 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000013776 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013777
Chris Lattnerf76d1802006-07-31 23:26:50 +000013778 return Res;
13779}